ETH Price: $2,408.13 (-0.47%)

Token

NFDADDY (NFD)
 

Overview

Max Total Supply

197 NFD

Holders

119

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
NFDADDY: Deployer
Balance
1 NFD
0x904b306dcc7aefcd89b2d55165894bea545f89f9
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Welcome to the NFDaddys family. We are 5 Dads with a shared “Y”; a passion to help others safely enjoy the NFT & Crypto Space just as we all have while celebrating being a daddy. This NFT project symbolizes how hard work and collaboration can achieve a dream. The NFDaddy te...

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
NFDADDY

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-10-18
*/

/**
 *Submitted for verification at Etherscan.io on 2021-09-02
 */

/**
 *Submitted for verification at Etherscan.io on 2021-08-23
 */

// Sources flattened with hardhat v2.4.3 https://hardhat.org

// File @openzeppelin/contracts/utils/[email protected]

// SPDX-License-Identifier: MIT

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/[email protected]

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() {
        _setOwner(_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 {
        _setOwner(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"
        );
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File @openzeppelin/contracts/utils/math/[email protected]

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 no longer needed starting with Solidity 0.8. 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/introspection/[email protected]

pragma solidity ^0.8.0;

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

// File @openzeppelin/contracts/token/ERC721/[email protected]

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/[email protected]

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/token/ERC721/extensions/[email protected]

pragma solidity ^0.8.0;

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

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

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

// File @openzeppelin/contracts/utils/[email protected]

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/utils/[email protected]

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/introspection/[email protected]

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/[email protected]

pragma solidity ^0.8.0;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId)
        public
        view
        virtual
        override
        returns (address)
    {
        address owner = _owners[tokenId];
        require(
            owner != address(0),
            "ERC721: owner query for nonexistent token"
        );
        return owner;
    }

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        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 virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved)
        public
        virtual
        override
    {
        require(operator != _msgSender(), "ERC721: 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 virtual override {
        //solhint-disable-next-line max-line-length
        require(
            _isApprovedOrOwner(_msgSender(), tokenId),
            "ERC721: transfer caller is not owner nor approved"
        );

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

        _balances[to] += 1;
        _owners[tokenId] = to;

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

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

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

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

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

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

// File @openzeppelin/contracts/security/[email protected]

pragma solidity ^0.8.0;

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]

pragma solidity ^0.8.0;

/**
 * @dev ERC721 token with pausable token transfers, minting and burning.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 */
abstract contract ERC721Pausable is ERC721, Pausable {
    /**
     * @dev See {ERC721-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        require(!paused(), "ERC721Pausable: token transfer while paused");
    }
}

// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]

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/[email protected]

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

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

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

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

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

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

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

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

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

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

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

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

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

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

// File @openzeppelin/contracts/utils/introspection/[email protected]

pragma solidity ^0.8.0;

/**
 * @dev Storage based implementation of the {IERC165} interface.
 *
 * Contracts may inherit from this and call {_registerInterface} to declare
 * their support of an interface.
 */
abstract contract ERC165Storage is ERC165 {
    /**
     * @dev Mapping of interface ids to whether or not it's supported.
     */
    mapping(bytes4 => bool) private _supportedInterfaces;

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override
        returns (bool)
    {
        return
            super.supportsInterface(interfaceId) ||
            _supportedInterfaces[interfaceId];
    }

    /**
     * @dev Registers the contract as an implementer of the interface defined by
     * `interfaceId`. Support of the actual ERC165 interface is automatic and
     * registering its interface id is not required.
     *
     * See {IERC165-supportsInterface}.
     *
     * Requirements:
     *
     * - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`).
     */
    function _registerInterface(bytes4 interfaceId) internal virtual {
        require(interfaceId != 0xffffffff, "ERC165: invalid interface id");
        _supportedInterfaces[interfaceId] = true;
    }
}

// File @openzeppelin/contracts/security/[email protected]

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 make 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;
    }
}

pragma solidity ^0.8.5;
pragma experimental ABIEncoderV2;

contract NFDADDY is Ownable, ERC721Enumerable, ReentrancyGuard {
    using SafeMath for uint256;
    string public NFDADDY_PROVENANCE = "";
    string public BASE_URI = "";
    uint256 public constant PRICE = 0.07 ether;
    uint256 public constant MAX_NFDADDY = 10000;
    uint256 public constant PURCHASE_LIMIT = 20;
    uint256 public NFDADDYReserve = 555;
    uint256 public totalPublicSupply;
    bool public saleIsActive = true;

    constructor() ERC721("NFDADDY", "NFD") {}

    function withdraw() public onlyOwner {
        address payable to = payable(msg.sender);
        (bool success, ) = to.call{value: address(this).balance}("");
        require(success, "Transfer failed.");
    }

    function flipSaleState() public onlyOwner {
        saleIsActive = !saleIsActive;
    }

    function _baseURI() internal view override returns (string memory) {
        return BASE_URI;
    }

    function setBaseURI(string memory baseURI_) public onlyOwner {
        BASE_URI = baseURI_;
    }

    function setProvenanceHash(string memory provenanceHash) public onlyOwner {
        NFDADDY_PROVENANCE = provenanceHash;
    }

    function purchase(uint256 numberOfTokens) public payable nonReentrant {
        require(saleIsActive, "Sale is not active");
        require(totalSupply().add(numberOfTokens) <= MAX_NFDADDY,"All tokens have been minted");
        require(numberOfTokens > 0 && numberOfTokens <= PURCHASE_LIMIT,"Would exceed PURCHASE_LIMIT");
        require(msg.value / numberOfTokens == PRICE, "Eth value is not good");

        for (uint256 i = 0; i < numberOfTokens; i++) {
            if (totalPublicSupply < MAX_NFDADDY) {
                uint256 tokenId = totalPublicSupply;
                totalPublicSupply += 1;
                _safeMint(msg.sender, tokenId);
            }
        }
    }

    function reserve(address _to, uint256 _reserveAmount) public onlyOwner {
        require(_reserveAmount > 0 && _reserveAmount <= NFDADDYReserve,"Not enough reserve left for team");
        require(totalSupply().add(_reserveAmount) <= MAX_NFDADDY,"All tokens have been minted");

        for (uint256 i = 0; i < _reserveAmount; i++) {
            uint256 tokenId = totalPublicSupply;
            totalPublicSupply += 1;
            _safeMint(_to, tokenId);
        }

        NFDADDYReserve = NFDADDYReserve.sub(_reserveAmount);
    }

    function tokensOfOwner(address _owner) external view returns (uint256[] memory)
    {
        uint256 tokenCount = balanceOf(_owner);
        if (tokenCount == 0) {
            return new uint256[](0);
        } else {
            uint256[] memory result = new uint256[](tokenCount);
            uint256 index;
            for (index = 0; index < tokenCount; index++) {
                result[index] = tokenOfOwnerByIndex(_owner, index);
            }
            return result;
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"BASE_URI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_NFDADDY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NFDADDYReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NFDADDY_PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PURCHASE_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"purchase","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_reserveAmount","type":"uint256"}],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenanceHash","type":"string"}],"name":"setProvenanceHash","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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalPublicSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250600c90805190602001906200002b9291906200021d565b5060405180602001604052806000815250600d9080519060200190620000539291906200021d565b5061022b600e556001601060006101000a81548160ff0219169083151502179055503480156200008257600080fd5b506040518060400160405280600781526020017f4e464441444459000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f4e464400000000000000000000000000000000000000000000000000000000008152506200010f620001036200015160201b60201c565b6200015960201b60201c565b8160019080519060200190620001279291906200021d565b508060029080519060200190620001409291906200021d565b5050506001600b8190555062000332565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200022b90620002cd565b90600052602060002090601f0160209004810192826200024f57600085556200029b565b82601f106200026a57805160ff19168380011785556200029b565b828001600101855582156200029b579182015b828111156200029a5782518255916020019190600101906200027d565b5b509050620002aa9190620002ae565b5090565b5b80821115620002c9576000816000905550600101620002af565b5090565b60006002820490506001821680620002e657607f821691505b60208210811415620002fd57620002fc62000303565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6145e280620003426000396000f3fe6080604052600436106101f95760003560e01c8063715018a61161010d578063cc47a40b116100a0578063e6a5931e1161006f578063e6a5931e14610721578063e985e9c51461074c578063eb8d244414610789578063efef39a1146107b4578063f2fde38b146107d0576101f9565b8063cc47a40b14610677578063d75e6110146106a0578063dbddb26a146106cb578063df21dc3c146106f6576101f9565b806395d89b41116100dc57806395d89b41146105bd578063a22cb465146105e8578063b88d4fde14610611578063c87b56dd1461063a576101f9565b8063715018a6146105135780638462151c1461052a5780638d859f3e146105675780638da5cb5b14610592576101f9565b8063341c57f5116101905780634f6ccce71161015f5780634f6ccce71461040857806355f804b3146104455780636352211e1461046e57806369e61fa3146104ab57806370a08231146104d6576101f9565b8063341c57f51461038657806334918dfd146103b15780633ccfd60b146103c857806342842e0e146103df576101f9565b806310969523116101cc57806310969523146102cc57806318160ddd146102f557806323b872dd146103205780632f745c5914610349576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063095ea7b3146102a3575b600080fd5b34801561020a57600080fd5b50610225600480360381019061022091906130b0565b6107f9565b6040516102329190613725565b60405180910390f35b34801561024757600080fd5b50610250610873565b60405161025d9190613740565b60405180910390f35b34801561027257600080fd5b5061028d60048036038101906102889190613153565b610905565b60405161029a919061369c565b60405180910390f35b3480156102af57600080fd5b506102ca60048036038101906102c59190613070565b61098a565b005b3480156102d857600080fd5b506102f360048036038101906102ee919061310a565b610aa2565b005b34801561030157600080fd5b5061030a610b38565b6040516103179190613a82565b60405180910390f35b34801561032c57600080fd5b5061034760048036038101906103429190612f5a565b610b45565b005b34801561035557600080fd5b50610370600480360381019061036b9190613070565b610ba5565b60405161037d9190613a82565b60405180910390f35b34801561039257600080fd5b5061039b610c4a565b6040516103a89190613a82565b60405180910390f35b3480156103bd57600080fd5b506103c6610c50565b005b3480156103d457600080fd5b506103dd610cf8565b005b3480156103eb57600080fd5b5061040660048036038101906104019190612f5a565b610e29565b005b34801561041457600080fd5b5061042f600480360381019061042a9190613153565b610e49565b60405161043c9190613a82565b60405180910390f35b34801561045157600080fd5b5061046c6004803603810190610467919061310a565b610eba565b005b34801561047a57600080fd5b5061049560048036038101906104909190613153565b610f50565b6040516104a2919061369c565b60405180910390f35b3480156104b757600080fd5b506104c0611002565b6040516104cd9190613740565b60405180910390f35b3480156104e257600080fd5b506104fd60048036038101906104f89190612eed565b611090565b60405161050a9190613a82565b60405180910390f35b34801561051f57600080fd5b50610528611148565b005b34801561053657600080fd5b50610551600480360381019061054c9190612eed565b6111d0565b60405161055e9190613703565b60405180910390f35b34801561057357600080fd5b5061057c6112da565b6040516105899190613a82565b60405180910390f35b34801561059e57600080fd5b506105a76112e5565b6040516105b4919061369c565b60405180910390f35b3480156105c957600080fd5b506105d261130e565b6040516105df9190613740565b60405180910390f35b3480156105f457600080fd5b5061060f600480360381019061060a9190613030565b6113a0565b005b34801561061d57600080fd5b5061063860048036038101906106339190612fad565b611521565b005b34801561064657600080fd5b50610661600480360381019061065c9190613153565b611583565b60405161066e9190613740565b60405180910390f35b34801561068357600080fd5b5061069e60048036038101906106999190613070565b61162a565b005b3480156106ac57600080fd5b506106b56117bf565b6040516106c29190613a82565b60405180910390f35b3480156106d757600080fd5b506106e06117c4565b6040516106ed9190613740565b60405180910390f35b34801561070257600080fd5b5061070b611852565b6040516107189190613a82565b60405180910390f35b34801561072d57600080fd5b50610736611858565b6040516107439190613a82565b60405180910390f35b34801561075857600080fd5b50610773600480360381019061076e9190612f1a565b61185e565b6040516107809190613725565b60405180910390f35b34801561079557600080fd5b5061079e6118f2565b6040516107ab9190613725565b60405180910390f35b6107ce60048036038101906107c99190613153565b611905565b005b3480156107dc57600080fd5b506107f760048036038101906107f29190612eed565b611b07565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061086c575061086b82611bff565b5b9050919050565b60606001805461088290613d1c565b80601f01602080910402602001604051908101604052809291908181526020018280546108ae90613d1c565b80156108fb5780601f106108d0576101008083540402835291602001916108fb565b820191906000526020600020905b8154815290600101906020018083116108de57829003601f168201915b5050505050905090565b600061091082611ce1565b61094f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094690613942565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061099582610f50565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a06576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109fd906139c2565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a25611d4d565b73ffffffffffffffffffffffffffffffffffffffff161480610a545750610a5381610a4e611d4d565b61185e565b5b610a93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8a906138c2565b60405180910390fd5b610a9d8383611d55565b505050565b610aaa611d4d565b73ffffffffffffffffffffffffffffffffffffffff16610ac86112e5565b73ffffffffffffffffffffffffffffffffffffffff1614610b1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1590613962565b60405180910390fd5b80600c9080519060200190610b34929190612d01565b5050565b6000600980549050905090565b610b56610b50611d4d565b82611e0e565b610b95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8c90613a02565b60405180910390fd5b610ba0838383611eec565b505050565b6000610bb083611090565b8210610bf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be890613762565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61271081565b610c58611d4d565b73ffffffffffffffffffffffffffffffffffffffff16610c766112e5565b73ffffffffffffffffffffffffffffffffffffffff1614610ccc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc390613962565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b610d00611d4d565b73ffffffffffffffffffffffffffffffffffffffff16610d1e6112e5565b73ffffffffffffffffffffffffffffffffffffffff1614610d74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6b90613962565b60405180910390fd5b600033905060008173ffffffffffffffffffffffffffffffffffffffff1647604051610d9f90613687565b60006040518083038185875af1925050503d8060008114610ddc576040519150601f19603f3d011682016040523d82523d6000602084013e610de1565b606091505b5050905080610e25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1c906139e2565b60405180910390fd5b5050565b610e4483838360405180602001604052806000815250611521565b505050565b6000610e53610b38565b8210610e94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8b90613a22565b60405180910390fd5b60098281548110610ea857610ea7613eb5565b5b90600052602060002001549050919050565b610ec2611d4d565b73ffffffffffffffffffffffffffffffffffffffff16610ee06112e5565b73ffffffffffffffffffffffffffffffffffffffff1614610f36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2d90613962565b60405180910390fd5b80600d9080519060200190610f4c929190612d01565b5050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ff9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff090613902565b60405180910390fd5b80915050919050565b600c805461100f90613d1c565b80601f016020809104026020016040519081016040528092919081815260200182805461103b90613d1c565b80156110885780601f1061105d57610100808354040283529160200191611088565b820191906000526020600020905b81548152906001019060200180831161106b57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611101576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f8906138e2565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611150611d4d565b73ffffffffffffffffffffffffffffffffffffffff1661116e6112e5565b73ffffffffffffffffffffffffffffffffffffffff16146111c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bb90613962565b60405180910390fd5b6111ce6000612148565b565b606060006111dd83611090565b9050600081141561123a57600067ffffffffffffffff81111561120357611202613ee4565b5b6040519080825280602002602001820160405280156112315781602001602082028036833780820191505090505b509150506112d5565b60008167ffffffffffffffff81111561125657611255613ee4565b5b6040519080825280602002602001820160405280156112845781602001602082028036833780820191505090505b50905060005b828110156112ce5761129c8582610ba5565b8282815181106112af576112ae613eb5565b5b60200260200101818152505080806112c690613d7f565b91505061128a565b8193505050505b919050565b66f8b0a10e47000081565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461131d90613d1c565b80601f016020809104026020016040519081016040528092919081815260200182805461134990613d1c565b80156113965780601f1061136b57610100808354040283529160200191611396565b820191906000526020600020905b81548152906001019060200180831161137957829003601f168201915b5050505050905090565b6113a8611d4d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611416576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140d90613842565b60405180910390fd5b8060066000611423611d4d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114d0611d4d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115159190613725565b60405180910390a35050565b61153261152c611d4d565b83611e0e565b611571576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156890613a02565b60405180910390fd5b61157d8484848461220c565b50505050565b606061158e82611ce1565b6115cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c4906139a2565b60405180910390fd5b60006115d7612268565b905060008151116115f75760405180602001604052806000815250611622565b80611601846122fa565b604051602001611612929190613663565b6040516020818303038152906040525b915050919050565b611632611d4d565b73ffffffffffffffffffffffffffffffffffffffff166116506112e5565b73ffffffffffffffffffffffffffffffffffffffff16146116a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169d90613962565b60405180910390fd5b6000811180156116b85750600e548111155b6116f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ee90613802565b60405180910390fd5b61271061171482611706610b38565b61245b90919063ffffffff16565b1115611755576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174c90613a62565b60405180910390fd5b60005b8181101561179f576000600f5490506001600f600082825461177a9190613bab565b9250508190555061178b8482612471565b50808061179790613d7f565b915050611758565b506117b581600e5461248f90919063ffffffff16565b600e819055505050565b601481565b600d80546117d190613d1c565b80601f01602080910402602001604051908101604052809291908181526020018280546117fd90613d1c565b801561184a5780601f1061181f5761010080835404028352916020019161184a565b820191906000526020600020905b81548152906001019060200180831161182d57829003601f168201915b505050505081565b600e5481565b600f5481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601060009054906101000a900460ff1681565b6002600b54141561194b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194290613a42565b60405180910390fd5b6002600b81905550601060009054906101000a900460ff166119a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199990613862565b60405180910390fd5b6127106119bf826119b1610b38565b61245b90919063ffffffff16565b1115611a00576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f790613a62565b60405180910390fd5b600081118015611a11575060148111155b611a50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a47906137e2565b60405180910390fd5b66f8b0a10e4700008134611a649190613c01565b14611aa4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9b906138a2565b60405180910390fd5b60005b81811015611afb57612710600f541015611ae8576000600f5490506001600f6000828254611ad59190613bab565b92505081905550611ae63382612471565b505b8080611af390613d7f565b915050611aa7565b506001600b8190555050565b611b0f611d4d565b73ffffffffffffffffffffffffffffffffffffffff16611b2d6112e5565b73ffffffffffffffffffffffffffffffffffffffff1614611b83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7a90613962565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611bf3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bea906137a2565b60405180910390fd5b611bfc81612148565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611cca57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611cda5750611cd9826124a5565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611dc883610f50565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611e1982611ce1565b611e58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4f90613882565b60405180910390fd5b6000611e6383610f50565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611ed257508373ffffffffffffffffffffffffffffffffffffffff16611eba84610905565b73ffffffffffffffffffffffffffffffffffffffff16145b80611ee35750611ee2818561185e565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611f0c82610f50565b73ffffffffffffffffffffffffffffffffffffffff1614611f62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5990613982565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc990613822565b60405180910390fd5b611fdd83838361250f565b611fe8600082611d55565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120389190613c32565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461208f9190613bab565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612217848484611eec565b61222384848484612623565b612262576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225990613782565b60405180910390fd5b50505050565b6060600d805461227790613d1c565b80601f01602080910402602001604051908101604052809291908181526020018280546122a390613d1c565b80156122f05780601f106122c5576101008083540402835291602001916122f0565b820191906000526020600020905b8154815290600101906020018083116122d357829003601f168201915b5050505050905090565b60606000821415612342576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612456565b600082905060005b6000821461237457808061235d90613d7f565b915050600a8261236d9190613c01565b915061234a565b60008167ffffffffffffffff8111156123905761238f613ee4565b5b6040519080825280601f01601f1916602001820160405280156123c25781602001600182028036833780820191505090505b5090505b6000851461244f576001826123db9190613c32565b9150600a856123ea9190613dc8565b60306123f69190613bab565b60f81b81838151811061240c5761240b613eb5565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856124489190613c01565b94506123c6565b8093505050505b919050565b600081836124699190613bab565b905092915050565b61248b8282604051806020016040528060008152506127ba565b5050565b6000818361249d9190613c32565b905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61251a838383612815565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561255d576125588161281a565b61259c565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461259b5761259a8382612863565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125df576125da816129d0565b61261e565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461261d5761261c8282612aa1565b5b5b505050565b60006126448473ffffffffffffffffffffffffffffffffffffffff16612b20565b156127ad578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261266d611d4d565b8786866040518563ffffffff1660e01b815260040161268f94939291906136b7565b602060405180830381600087803b1580156126a957600080fd5b505af19250505080156126da57506040513d601f19601f820116820180604052508101906126d791906130dd565b60015b61275d573d806000811461270a576040519150601f19603f3d011682016040523d82523d6000602084013e61270f565b606091505b50600081511415612755576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274c90613782565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506127b2565b600190505b949350505050565b6127c48383612b33565b6127d16000848484612623565b612810576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280790613782565b60405180910390fd5b505050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161287084611090565b61287a9190613c32565b905060006008600084815260200190815260200160002054905081811461295f576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016009805490506129e49190613c32565b90506000600a6000848152602001908152602001600020549050600060098381548110612a1457612a13613eb5565b5b906000526020600020015490508060098381548110612a3657612a35613eb5565b5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a6000858152602001908152602001600020600090556009805480612a8557612a84613e86565b5b6001900381819060005260206000200160009055905550505050565b6000612aac83611090565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ba3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9a90613922565b60405180910390fd5b612bac81611ce1565b15612bec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612be3906137c2565b60405180910390fd5b612bf86000838361250f565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c489190613bab565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612d0d90613d1c565b90600052602060002090601f016020900481019282612d2f5760008555612d76565b82601f10612d4857805160ff1916838001178555612d76565b82800160010185558215612d76579182015b82811115612d75578251825591602001919060010190612d5a565b5b509050612d839190612d87565b5090565b5b80821115612da0576000816000905550600101612d88565b5090565b6000612db7612db284613ac2565b613a9d565b905082815260208101848484011115612dd357612dd2613f18565b5b612dde848285613cda565b509392505050565b6000612df9612df484613af3565b613a9d565b905082815260208101848484011115612e1557612e14613f18565b5b612e20848285613cda565b509392505050565b600081359050612e3781614550565b92915050565b600081359050612e4c81614567565b92915050565b600081359050612e618161457e565b92915050565b600081519050612e768161457e565b92915050565b600082601f830112612e9157612e90613f13565b5b8135612ea1848260208601612da4565b91505092915050565b600082601f830112612ebf57612ebe613f13565b5b8135612ecf848260208601612de6565b91505092915050565b600081359050612ee781614595565b92915050565b600060208284031215612f0357612f02613f22565b5b6000612f1184828501612e28565b91505092915050565b60008060408385031215612f3157612f30613f22565b5b6000612f3f85828601612e28565b9250506020612f5085828601612e28565b9150509250929050565b600080600060608486031215612f7357612f72613f22565b5b6000612f8186828701612e28565b9350506020612f9286828701612e28565b9250506040612fa386828701612ed8565b9150509250925092565b60008060008060808587031215612fc757612fc6613f22565b5b6000612fd587828801612e28565b9450506020612fe687828801612e28565b9350506040612ff787828801612ed8565b925050606085013567ffffffffffffffff81111561301857613017613f1d565b5b61302487828801612e7c565b91505092959194509250565b6000806040838503121561304757613046613f22565b5b600061305585828601612e28565b925050602061306685828601612e3d565b9150509250929050565b6000806040838503121561308757613086613f22565b5b600061309585828601612e28565b92505060206130a685828601612ed8565b9150509250929050565b6000602082840312156130c6576130c5613f22565b5b60006130d484828501612e52565b91505092915050565b6000602082840312156130f3576130f2613f22565b5b600061310184828501612e67565b91505092915050565b6000602082840312156131205761311f613f22565b5b600082013567ffffffffffffffff81111561313e5761313d613f1d565b5b61314a84828501612eaa565b91505092915050565b60006020828403121561316957613168613f22565b5b600061317784828501612ed8565b91505092915050565b600061318c8383613645565b60208301905092915050565b6131a181613c66565b82525050565b60006131b282613b34565b6131bc8185613b62565b93506131c783613b24565b8060005b838110156131f85781516131df8882613180565b97506131ea83613b55565b9250506001810190506131cb565b5085935050505092915050565b61320e81613c78565b82525050565b600061321f82613b3f565b6132298185613b73565b9350613239818560208601613ce9565b61324281613f27565b840191505092915050565b600061325882613b4a565b6132628185613b8f565b9350613272818560208601613ce9565b61327b81613f27565b840191505092915050565b600061329182613b4a565b61329b8185613ba0565b93506132ab818560208601613ce9565b80840191505092915050565b60006132c4602b83613b8f565b91506132cf82613f38565b604082019050919050565b60006132e7603283613b8f565b91506132f282613f87565b604082019050919050565b600061330a602683613b8f565b915061331582613fd6565b604082019050919050565b600061332d601c83613b8f565b915061333882614025565b602082019050919050565b6000613350601b83613b8f565b915061335b8261404e565b602082019050919050565b6000613373602083613b8f565b915061337e82614077565b602082019050919050565b6000613396602483613b8f565b91506133a1826140a0565b604082019050919050565b60006133b9601983613b8f565b91506133c4826140ef565b602082019050919050565b60006133dc601283613b8f565b91506133e782614118565b602082019050919050565b60006133ff602c83613b8f565b915061340a82614141565b604082019050919050565b6000613422601583613b8f565b915061342d82614190565b602082019050919050565b6000613445603883613b8f565b9150613450826141b9565b604082019050919050565b6000613468602a83613b8f565b915061347382614208565b604082019050919050565b600061348b602983613b8f565b915061349682614257565b604082019050919050565b60006134ae602083613b8f565b91506134b9826142a6565b602082019050919050565b60006134d1602c83613b8f565b91506134dc826142cf565b604082019050919050565b60006134f4602083613b8f565b91506134ff8261431e565b602082019050919050565b6000613517602983613b8f565b915061352282614347565b604082019050919050565b600061353a602f83613b8f565b915061354582614396565b604082019050919050565b600061355d602183613b8f565b9150613568826143e5565b604082019050919050565b6000613580600083613b84565b915061358b82614434565b600082019050919050565b60006135a3601083613b8f565b91506135ae82614437565b602082019050919050565b60006135c6603183613b8f565b91506135d182614460565b604082019050919050565b60006135e9602c83613b8f565b91506135f4826144af565b604082019050919050565b600061360c601f83613b8f565b9150613617826144fe565b602082019050919050565b600061362f601b83613b8f565b915061363a82614527565b602082019050919050565b61364e81613cd0565b82525050565b61365d81613cd0565b82525050565b600061366f8285613286565b915061367b8284613286565b91508190509392505050565b600061369282613573565b9150819050919050565b60006020820190506136b16000830184613198565b92915050565b60006080820190506136cc6000830187613198565b6136d96020830186613198565b6136e66040830185613654565b81810360608301526136f88184613214565b905095945050505050565b6000602082019050818103600083015261371d81846131a7565b905092915050565b600060208201905061373a6000830184613205565b92915050565b6000602082019050818103600083015261375a818461324d565b905092915050565b6000602082019050818103600083015261377b816132b7565b9050919050565b6000602082019050818103600083015261379b816132da565b9050919050565b600060208201905081810360008301526137bb816132fd565b9050919050565b600060208201905081810360008301526137db81613320565b9050919050565b600060208201905081810360008301526137fb81613343565b9050919050565b6000602082019050818103600083015261381b81613366565b9050919050565b6000602082019050818103600083015261383b81613389565b9050919050565b6000602082019050818103600083015261385b816133ac565b9050919050565b6000602082019050818103600083015261387b816133cf565b9050919050565b6000602082019050818103600083015261389b816133f2565b9050919050565b600060208201905081810360008301526138bb81613415565b9050919050565b600060208201905081810360008301526138db81613438565b9050919050565b600060208201905081810360008301526138fb8161345b565b9050919050565b6000602082019050818103600083015261391b8161347e565b9050919050565b6000602082019050818103600083015261393b816134a1565b9050919050565b6000602082019050818103600083015261395b816134c4565b9050919050565b6000602082019050818103600083015261397b816134e7565b9050919050565b6000602082019050818103600083015261399b8161350a565b9050919050565b600060208201905081810360008301526139bb8161352d565b9050919050565b600060208201905081810360008301526139db81613550565b9050919050565b600060208201905081810360008301526139fb81613596565b9050919050565b60006020820190508181036000830152613a1b816135b9565b9050919050565b60006020820190508181036000830152613a3b816135dc565b9050919050565b60006020820190508181036000830152613a5b816135ff565b9050919050565b60006020820190508181036000830152613a7b81613622565b9050919050565b6000602082019050613a976000830184613654565b92915050565b6000613aa7613ab8565b9050613ab38282613d4e565b919050565b6000604051905090565b600067ffffffffffffffff821115613add57613adc613ee4565b5b613ae682613f27565b9050602081019050919050565b600067ffffffffffffffff821115613b0e57613b0d613ee4565b5b613b1782613f27565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613bb682613cd0565b9150613bc183613cd0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613bf657613bf5613df9565b5b828201905092915050565b6000613c0c82613cd0565b9150613c1783613cd0565b925082613c2757613c26613e28565b5b828204905092915050565b6000613c3d82613cd0565b9150613c4883613cd0565b925082821015613c5b57613c5a613df9565b5b828203905092915050565b6000613c7182613cb0565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613d07578082015181840152602081019050613cec565b83811115613d16576000848401525b50505050565b60006002820490506001821680613d3457607f821691505b60208210811415613d4857613d47613e57565b5b50919050565b613d5782613f27565b810181811067ffffffffffffffff82111715613d7657613d75613ee4565b5b80604052505050565b6000613d8a82613cd0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613dbd57613dbc613df9565b5b600182019050919050565b6000613dd382613cd0565b9150613dde83613cd0565b925082613dee57613ded613e28565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f576f756c64206578636565642050555243484153455f4c494d49540000000000600082015250565b7f4e6f7420656e6f7567682072657365727665206c65667420666f72207465616d600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f53616c65206973206e6f74206163746976650000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4574682076616c7565206973206e6f7420676f6f640000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f416c6c20746f6b656e732068617665206265656e206d696e7465640000000000600082015250565b61455981613c66565b811461456457600080fd5b50565b61457081613c78565b811461457b57600080fd5b50565b61458781613c84565b811461459257600080fd5b50565b61459e81613cd0565b81146145a957600080fd5b5056fea26469706673582212204215c6d87e6f310cc2ba685f0ea80644781791836402e5a5e396ea1cf05f9d4964736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101f95760003560e01c8063715018a61161010d578063cc47a40b116100a0578063e6a5931e1161006f578063e6a5931e14610721578063e985e9c51461074c578063eb8d244414610789578063efef39a1146107b4578063f2fde38b146107d0576101f9565b8063cc47a40b14610677578063d75e6110146106a0578063dbddb26a146106cb578063df21dc3c146106f6576101f9565b806395d89b41116100dc57806395d89b41146105bd578063a22cb465146105e8578063b88d4fde14610611578063c87b56dd1461063a576101f9565b8063715018a6146105135780638462151c1461052a5780638d859f3e146105675780638da5cb5b14610592576101f9565b8063341c57f5116101905780634f6ccce71161015f5780634f6ccce71461040857806355f804b3146104455780636352211e1461046e57806369e61fa3146104ab57806370a08231146104d6576101f9565b8063341c57f51461038657806334918dfd146103b15780633ccfd60b146103c857806342842e0e146103df576101f9565b806310969523116101cc57806310969523146102cc57806318160ddd146102f557806323b872dd146103205780632f745c5914610349576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063095ea7b3146102a3575b600080fd5b34801561020a57600080fd5b50610225600480360381019061022091906130b0565b6107f9565b6040516102329190613725565b60405180910390f35b34801561024757600080fd5b50610250610873565b60405161025d9190613740565b60405180910390f35b34801561027257600080fd5b5061028d60048036038101906102889190613153565b610905565b60405161029a919061369c565b60405180910390f35b3480156102af57600080fd5b506102ca60048036038101906102c59190613070565b61098a565b005b3480156102d857600080fd5b506102f360048036038101906102ee919061310a565b610aa2565b005b34801561030157600080fd5b5061030a610b38565b6040516103179190613a82565b60405180910390f35b34801561032c57600080fd5b5061034760048036038101906103429190612f5a565b610b45565b005b34801561035557600080fd5b50610370600480360381019061036b9190613070565b610ba5565b60405161037d9190613a82565b60405180910390f35b34801561039257600080fd5b5061039b610c4a565b6040516103a89190613a82565b60405180910390f35b3480156103bd57600080fd5b506103c6610c50565b005b3480156103d457600080fd5b506103dd610cf8565b005b3480156103eb57600080fd5b5061040660048036038101906104019190612f5a565b610e29565b005b34801561041457600080fd5b5061042f600480360381019061042a9190613153565b610e49565b60405161043c9190613a82565b60405180910390f35b34801561045157600080fd5b5061046c6004803603810190610467919061310a565b610eba565b005b34801561047a57600080fd5b5061049560048036038101906104909190613153565b610f50565b6040516104a2919061369c565b60405180910390f35b3480156104b757600080fd5b506104c0611002565b6040516104cd9190613740565b60405180910390f35b3480156104e257600080fd5b506104fd60048036038101906104f89190612eed565b611090565b60405161050a9190613a82565b60405180910390f35b34801561051f57600080fd5b50610528611148565b005b34801561053657600080fd5b50610551600480360381019061054c9190612eed565b6111d0565b60405161055e9190613703565b60405180910390f35b34801561057357600080fd5b5061057c6112da565b6040516105899190613a82565b60405180910390f35b34801561059e57600080fd5b506105a76112e5565b6040516105b4919061369c565b60405180910390f35b3480156105c957600080fd5b506105d261130e565b6040516105df9190613740565b60405180910390f35b3480156105f457600080fd5b5061060f600480360381019061060a9190613030565b6113a0565b005b34801561061d57600080fd5b5061063860048036038101906106339190612fad565b611521565b005b34801561064657600080fd5b50610661600480360381019061065c9190613153565b611583565b60405161066e9190613740565b60405180910390f35b34801561068357600080fd5b5061069e60048036038101906106999190613070565b61162a565b005b3480156106ac57600080fd5b506106b56117bf565b6040516106c29190613a82565b60405180910390f35b3480156106d757600080fd5b506106e06117c4565b6040516106ed9190613740565b60405180910390f35b34801561070257600080fd5b5061070b611852565b6040516107189190613a82565b60405180910390f35b34801561072d57600080fd5b50610736611858565b6040516107439190613a82565b60405180910390f35b34801561075857600080fd5b50610773600480360381019061076e9190612f1a565b61185e565b6040516107809190613725565b60405180910390f35b34801561079557600080fd5b5061079e6118f2565b6040516107ab9190613725565b60405180910390f35b6107ce60048036038101906107c99190613153565b611905565b005b3480156107dc57600080fd5b506107f760048036038101906107f29190612eed565b611b07565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061086c575061086b82611bff565b5b9050919050565b60606001805461088290613d1c565b80601f01602080910402602001604051908101604052809291908181526020018280546108ae90613d1c565b80156108fb5780601f106108d0576101008083540402835291602001916108fb565b820191906000526020600020905b8154815290600101906020018083116108de57829003601f168201915b5050505050905090565b600061091082611ce1565b61094f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094690613942565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061099582610f50565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a06576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109fd906139c2565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a25611d4d565b73ffffffffffffffffffffffffffffffffffffffff161480610a545750610a5381610a4e611d4d565b61185e565b5b610a93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8a906138c2565b60405180910390fd5b610a9d8383611d55565b505050565b610aaa611d4d565b73ffffffffffffffffffffffffffffffffffffffff16610ac86112e5565b73ffffffffffffffffffffffffffffffffffffffff1614610b1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1590613962565b60405180910390fd5b80600c9080519060200190610b34929190612d01565b5050565b6000600980549050905090565b610b56610b50611d4d565b82611e0e565b610b95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8c90613a02565b60405180910390fd5b610ba0838383611eec565b505050565b6000610bb083611090565b8210610bf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be890613762565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61271081565b610c58611d4d565b73ffffffffffffffffffffffffffffffffffffffff16610c766112e5565b73ffffffffffffffffffffffffffffffffffffffff1614610ccc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc390613962565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b610d00611d4d565b73ffffffffffffffffffffffffffffffffffffffff16610d1e6112e5565b73ffffffffffffffffffffffffffffffffffffffff1614610d74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6b90613962565b60405180910390fd5b600033905060008173ffffffffffffffffffffffffffffffffffffffff1647604051610d9f90613687565b60006040518083038185875af1925050503d8060008114610ddc576040519150601f19603f3d011682016040523d82523d6000602084013e610de1565b606091505b5050905080610e25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1c906139e2565b60405180910390fd5b5050565b610e4483838360405180602001604052806000815250611521565b505050565b6000610e53610b38565b8210610e94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8b90613a22565b60405180910390fd5b60098281548110610ea857610ea7613eb5565b5b90600052602060002001549050919050565b610ec2611d4d565b73ffffffffffffffffffffffffffffffffffffffff16610ee06112e5565b73ffffffffffffffffffffffffffffffffffffffff1614610f36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2d90613962565b60405180910390fd5b80600d9080519060200190610f4c929190612d01565b5050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ff9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff090613902565b60405180910390fd5b80915050919050565b600c805461100f90613d1c565b80601f016020809104026020016040519081016040528092919081815260200182805461103b90613d1c565b80156110885780601f1061105d57610100808354040283529160200191611088565b820191906000526020600020905b81548152906001019060200180831161106b57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611101576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f8906138e2565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611150611d4d565b73ffffffffffffffffffffffffffffffffffffffff1661116e6112e5565b73ffffffffffffffffffffffffffffffffffffffff16146111c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bb90613962565b60405180910390fd5b6111ce6000612148565b565b606060006111dd83611090565b9050600081141561123a57600067ffffffffffffffff81111561120357611202613ee4565b5b6040519080825280602002602001820160405280156112315781602001602082028036833780820191505090505b509150506112d5565b60008167ffffffffffffffff81111561125657611255613ee4565b5b6040519080825280602002602001820160405280156112845781602001602082028036833780820191505090505b50905060005b828110156112ce5761129c8582610ba5565b8282815181106112af576112ae613eb5565b5b60200260200101818152505080806112c690613d7f565b91505061128a565b8193505050505b919050565b66f8b0a10e47000081565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461131d90613d1c565b80601f016020809104026020016040519081016040528092919081815260200182805461134990613d1c565b80156113965780601f1061136b57610100808354040283529160200191611396565b820191906000526020600020905b81548152906001019060200180831161137957829003601f168201915b5050505050905090565b6113a8611d4d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611416576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140d90613842565b60405180910390fd5b8060066000611423611d4d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114d0611d4d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115159190613725565b60405180910390a35050565b61153261152c611d4d565b83611e0e565b611571576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156890613a02565b60405180910390fd5b61157d8484848461220c565b50505050565b606061158e82611ce1565b6115cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c4906139a2565b60405180910390fd5b60006115d7612268565b905060008151116115f75760405180602001604052806000815250611622565b80611601846122fa565b604051602001611612929190613663565b6040516020818303038152906040525b915050919050565b611632611d4d565b73ffffffffffffffffffffffffffffffffffffffff166116506112e5565b73ffffffffffffffffffffffffffffffffffffffff16146116a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169d90613962565b60405180910390fd5b6000811180156116b85750600e548111155b6116f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ee90613802565b60405180910390fd5b61271061171482611706610b38565b61245b90919063ffffffff16565b1115611755576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174c90613a62565b60405180910390fd5b60005b8181101561179f576000600f5490506001600f600082825461177a9190613bab565b9250508190555061178b8482612471565b50808061179790613d7f565b915050611758565b506117b581600e5461248f90919063ffffffff16565b600e819055505050565b601481565b600d80546117d190613d1c565b80601f01602080910402602001604051908101604052809291908181526020018280546117fd90613d1c565b801561184a5780601f1061181f5761010080835404028352916020019161184a565b820191906000526020600020905b81548152906001019060200180831161182d57829003601f168201915b505050505081565b600e5481565b600f5481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601060009054906101000a900460ff1681565b6002600b54141561194b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194290613a42565b60405180910390fd5b6002600b81905550601060009054906101000a900460ff166119a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199990613862565b60405180910390fd5b6127106119bf826119b1610b38565b61245b90919063ffffffff16565b1115611a00576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f790613a62565b60405180910390fd5b600081118015611a11575060148111155b611a50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a47906137e2565b60405180910390fd5b66f8b0a10e4700008134611a649190613c01565b14611aa4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9b906138a2565b60405180910390fd5b60005b81811015611afb57612710600f541015611ae8576000600f5490506001600f6000828254611ad59190613bab565b92505081905550611ae63382612471565b505b8080611af390613d7f565b915050611aa7565b506001600b8190555050565b611b0f611d4d565b73ffffffffffffffffffffffffffffffffffffffff16611b2d6112e5565b73ffffffffffffffffffffffffffffffffffffffff1614611b83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7a90613962565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611bf3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bea906137a2565b60405180910390fd5b611bfc81612148565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611cca57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611cda5750611cd9826124a5565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611dc883610f50565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611e1982611ce1565b611e58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4f90613882565b60405180910390fd5b6000611e6383610f50565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611ed257508373ffffffffffffffffffffffffffffffffffffffff16611eba84610905565b73ffffffffffffffffffffffffffffffffffffffff16145b80611ee35750611ee2818561185e565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611f0c82610f50565b73ffffffffffffffffffffffffffffffffffffffff1614611f62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5990613982565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc990613822565b60405180910390fd5b611fdd83838361250f565b611fe8600082611d55565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120389190613c32565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461208f9190613bab565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612217848484611eec565b61222384848484612623565b612262576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225990613782565b60405180910390fd5b50505050565b6060600d805461227790613d1c565b80601f01602080910402602001604051908101604052809291908181526020018280546122a390613d1c565b80156122f05780601f106122c5576101008083540402835291602001916122f0565b820191906000526020600020905b8154815290600101906020018083116122d357829003601f168201915b5050505050905090565b60606000821415612342576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612456565b600082905060005b6000821461237457808061235d90613d7f565b915050600a8261236d9190613c01565b915061234a565b60008167ffffffffffffffff8111156123905761238f613ee4565b5b6040519080825280601f01601f1916602001820160405280156123c25781602001600182028036833780820191505090505b5090505b6000851461244f576001826123db9190613c32565b9150600a856123ea9190613dc8565b60306123f69190613bab565b60f81b81838151811061240c5761240b613eb5565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856124489190613c01565b94506123c6565b8093505050505b919050565b600081836124699190613bab565b905092915050565b61248b8282604051806020016040528060008152506127ba565b5050565b6000818361249d9190613c32565b905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61251a838383612815565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561255d576125588161281a565b61259c565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461259b5761259a8382612863565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125df576125da816129d0565b61261e565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461261d5761261c8282612aa1565b5b5b505050565b60006126448473ffffffffffffffffffffffffffffffffffffffff16612b20565b156127ad578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261266d611d4d565b8786866040518563ffffffff1660e01b815260040161268f94939291906136b7565b602060405180830381600087803b1580156126a957600080fd5b505af19250505080156126da57506040513d601f19601f820116820180604052508101906126d791906130dd565b60015b61275d573d806000811461270a576040519150601f19603f3d011682016040523d82523d6000602084013e61270f565b606091505b50600081511415612755576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274c90613782565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506127b2565b600190505b949350505050565b6127c48383612b33565b6127d16000848484612623565b612810576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280790613782565b60405180910390fd5b505050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161287084611090565b61287a9190613c32565b905060006008600084815260200190815260200160002054905081811461295f576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016009805490506129e49190613c32565b90506000600a6000848152602001908152602001600020549050600060098381548110612a1457612a13613eb5565b5b906000526020600020015490508060098381548110612a3657612a35613eb5565b5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a6000858152602001908152602001600020600090556009805480612a8557612a84613e86565b5b6001900381819060005260206000200160009055905550505050565b6000612aac83611090565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ba3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9a90613922565b60405180910390fd5b612bac81611ce1565b15612bec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612be3906137c2565b60405180910390fd5b612bf86000838361250f565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c489190613bab565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612d0d90613d1c565b90600052602060002090601f016020900481019282612d2f5760008555612d76565b82601f10612d4857805160ff1916838001178555612d76565b82800160010185558215612d76579182015b82811115612d75578251825591602001919060010190612d5a565b5b509050612d839190612d87565b5090565b5b80821115612da0576000816000905550600101612d88565b5090565b6000612db7612db284613ac2565b613a9d565b905082815260208101848484011115612dd357612dd2613f18565b5b612dde848285613cda565b509392505050565b6000612df9612df484613af3565b613a9d565b905082815260208101848484011115612e1557612e14613f18565b5b612e20848285613cda565b509392505050565b600081359050612e3781614550565b92915050565b600081359050612e4c81614567565b92915050565b600081359050612e618161457e565b92915050565b600081519050612e768161457e565b92915050565b600082601f830112612e9157612e90613f13565b5b8135612ea1848260208601612da4565b91505092915050565b600082601f830112612ebf57612ebe613f13565b5b8135612ecf848260208601612de6565b91505092915050565b600081359050612ee781614595565b92915050565b600060208284031215612f0357612f02613f22565b5b6000612f1184828501612e28565b91505092915050565b60008060408385031215612f3157612f30613f22565b5b6000612f3f85828601612e28565b9250506020612f5085828601612e28565b9150509250929050565b600080600060608486031215612f7357612f72613f22565b5b6000612f8186828701612e28565b9350506020612f9286828701612e28565b9250506040612fa386828701612ed8565b9150509250925092565b60008060008060808587031215612fc757612fc6613f22565b5b6000612fd587828801612e28565b9450506020612fe687828801612e28565b9350506040612ff787828801612ed8565b925050606085013567ffffffffffffffff81111561301857613017613f1d565b5b61302487828801612e7c565b91505092959194509250565b6000806040838503121561304757613046613f22565b5b600061305585828601612e28565b925050602061306685828601612e3d565b9150509250929050565b6000806040838503121561308757613086613f22565b5b600061309585828601612e28565b92505060206130a685828601612ed8565b9150509250929050565b6000602082840312156130c6576130c5613f22565b5b60006130d484828501612e52565b91505092915050565b6000602082840312156130f3576130f2613f22565b5b600061310184828501612e67565b91505092915050565b6000602082840312156131205761311f613f22565b5b600082013567ffffffffffffffff81111561313e5761313d613f1d565b5b61314a84828501612eaa565b91505092915050565b60006020828403121561316957613168613f22565b5b600061317784828501612ed8565b91505092915050565b600061318c8383613645565b60208301905092915050565b6131a181613c66565b82525050565b60006131b282613b34565b6131bc8185613b62565b93506131c783613b24565b8060005b838110156131f85781516131df8882613180565b97506131ea83613b55565b9250506001810190506131cb565b5085935050505092915050565b61320e81613c78565b82525050565b600061321f82613b3f565b6132298185613b73565b9350613239818560208601613ce9565b61324281613f27565b840191505092915050565b600061325882613b4a565b6132628185613b8f565b9350613272818560208601613ce9565b61327b81613f27565b840191505092915050565b600061329182613b4a565b61329b8185613ba0565b93506132ab818560208601613ce9565b80840191505092915050565b60006132c4602b83613b8f565b91506132cf82613f38565b604082019050919050565b60006132e7603283613b8f565b91506132f282613f87565b604082019050919050565b600061330a602683613b8f565b915061331582613fd6565b604082019050919050565b600061332d601c83613b8f565b915061333882614025565b602082019050919050565b6000613350601b83613b8f565b915061335b8261404e565b602082019050919050565b6000613373602083613b8f565b915061337e82614077565b602082019050919050565b6000613396602483613b8f565b91506133a1826140a0565b604082019050919050565b60006133b9601983613b8f565b91506133c4826140ef565b602082019050919050565b60006133dc601283613b8f565b91506133e782614118565b602082019050919050565b60006133ff602c83613b8f565b915061340a82614141565b604082019050919050565b6000613422601583613b8f565b915061342d82614190565b602082019050919050565b6000613445603883613b8f565b9150613450826141b9565b604082019050919050565b6000613468602a83613b8f565b915061347382614208565b604082019050919050565b600061348b602983613b8f565b915061349682614257565b604082019050919050565b60006134ae602083613b8f565b91506134b9826142a6565b602082019050919050565b60006134d1602c83613b8f565b91506134dc826142cf565b604082019050919050565b60006134f4602083613b8f565b91506134ff8261431e565b602082019050919050565b6000613517602983613b8f565b915061352282614347565b604082019050919050565b600061353a602f83613b8f565b915061354582614396565b604082019050919050565b600061355d602183613b8f565b9150613568826143e5565b604082019050919050565b6000613580600083613b84565b915061358b82614434565b600082019050919050565b60006135a3601083613b8f565b91506135ae82614437565b602082019050919050565b60006135c6603183613b8f565b91506135d182614460565b604082019050919050565b60006135e9602c83613b8f565b91506135f4826144af565b604082019050919050565b600061360c601f83613b8f565b9150613617826144fe565b602082019050919050565b600061362f601b83613b8f565b915061363a82614527565b602082019050919050565b61364e81613cd0565b82525050565b61365d81613cd0565b82525050565b600061366f8285613286565b915061367b8284613286565b91508190509392505050565b600061369282613573565b9150819050919050565b60006020820190506136b16000830184613198565b92915050565b60006080820190506136cc6000830187613198565b6136d96020830186613198565b6136e66040830185613654565b81810360608301526136f88184613214565b905095945050505050565b6000602082019050818103600083015261371d81846131a7565b905092915050565b600060208201905061373a6000830184613205565b92915050565b6000602082019050818103600083015261375a818461324d565b905092915050565b6000602082019050818103600083015261377b816132b7565b9050919050565b6000602082019050818103600083015261379b816132da565b9050919050565b600060208201905081810360008301526137bb816132fd565b9050919050565b600060208201905081810360008301526137db81613320565b9050919050565b600060208201905081810360008301526137fb81613343565b9050919050565b6000602082019050818103600083015261381b81613366565b9050919050565b6000602082019050818103600083015261383b81613389565b9050919050565b6000602082019050818103600083015261385b816133ac565b9050919050565b6000602082019050818103600083015261387b816133cf565b9050919050565b6000602082019050818103600083015261389b816133f2565b9050919050565b600060208201905081810360008301526138bb81613415565b9050919050565b600060208201905081810360008301526138db81613438565b9050919050565b600060208201905081810360008301526138fb8161345b565b9050919050565b6000602082019050818103600083015261391b8161347e565b9050919050565b6000602082019050818103600083015261393b816134a1565b9050919050565b6000602082019050818103600083015261395b816134c4565b9050919050565b6000602082019050818103600083015261397b816134e7565b9050919050565b6000602082019050818103600083015261399b8161350a565b9050919050565b600060208201905081810360008301526139bb8161352d565b9050919050565b600060208201905081810360008301526139db81613550565b9050919050565b600060208201905081810360008301526139fb81613596565b9050919050565b60006020820190508181036000830152613a1b816135b9565b9050919050565b60006020820190508181036000830152613a3b816135dc565b9050919050565b60006020820190508181036000830152613a5b816135ff565b9050919050565b60006020820190508181036000830152613a7b81613622565b9050919050565b6000602082019050613a976000830184613654565b92915050565b6000613aa7613ab8565b9050613ab38282613d4e565b919050565b6000604051905090565b600067ffffffffffffffff821115613add57613adc613ee4565b5b613ae682613f27565b9050602081019050919050565b600067ffffffffffffffff821115613b0e57613b0d613ee4565b5b613b1782613f27565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613bb682613cd0565b9150613bc183613cd0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613bf657613bf5613df9565b5b828201905092915050565b6000613c0c82613cd0565b9150613c1783613cd0565b925082613c2757613c26613e28565b5b828204905092915050565b6000613c3d82613cd0565b9150613c4883613cd0565b925082821015613c5b57613c5a613df9565b5b828203905092915050565b6000613c7182613cb0565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613d07578082015181840152602081019050613cec565b83811115613d16576000848401525b50505050565b60006002820490506001821680613d3457607f821691505b60208210811415613d4857613d47613e57565b5b50919050565b613d5782613f27565b810181811067ffffffffffffffff82111715613d7657613d75613ee4565b5b80604052505050565b6000613d8a82613cd0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613dbd57613dbc613df9565b5b600182019050919050565b6000613dd382613cd0565b9150613dde83613cd0565b925082613dee57613ded613e28565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f576f756c64206578636565642050555243484153455f4c494d49540000000000600082015250565b7f4e6f7420656e6f7567682072657365727665206c65667420666f72207465616d600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f53616c65206973206e6f74206163746976650000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4574682076616c7565206973206e6f7420676f6f640000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f416c6c20746f6b656e732068617665206265656e206d696e7465640000000000600082015250565b61455981613c66565b811461456457600080fd5b50565b61457081613c78565b811461457b57600080fd5b50565b61458781613c84565b811461459257600080fd5b50565b61459e81613cd0565b81146145a957600080fd5b5056fea26469706673582212204215c6d87e6f310cc2ba685f0ea80644781791836402e5a5e396ea1cf05f9d4964736f6c63430008070033

Deployed Bytecode Sourcemap

59830:2935:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49218:300;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32219:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33912:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33435:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60865:128;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50021:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34971:376;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49602:343;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60060:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60552:89;;;;;;;;;;;;;:::i;:::-;;60330:214;;;;;;;;;;;;;:::i;:::-;;35418:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50211:320;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60758:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31826:326;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59933:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31469:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2758:94;;;;;;;;;;;;;:::i;:::-;;62255:507;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60011:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2107:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32388:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34292:327;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35674:365;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32563:468;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61703:544;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60110:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59977:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60160:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60202:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34690:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60241:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61001:694;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3007:229;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49218:300;49365:4;49422:35;49407:50;;;:11;:50;;;;:103;;;;49474:36;49498:11;49474:23;:36::i;:::-;49407:103;49387:123;;49218:300;;;:::o;32219:100::-;32273:13;32306:5;32299:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32219:100;:::o;33912:308::-;34033:7;34080:16;34088:7;34080;:16::i;:::-;34058:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;34188:15;:24;34204:7;34188:24;;;;;;;;;;;;;;;;;;;;;34181:31;;33912:308;;;:::o;33435:411::-;33516:13;33532:23;33547:7;33532:14;:23::i;:::-;33516:39;;33580:5;33574:11;;:2;:11;;;;33566:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;33674:5;33658:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;33683:37;33700:5;33707:12;:10;:12::i;:::-;33683:16;:37::i;:::-;33658:62;33636:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;33817:21;33826:2;33830:7;33817:8;:21::i;:::-;33505:341;33435:411;;:::o;60865:128::-;2338:12;:10;:12::i;:::-;2327:23;;:7;:5;:7::i;:::-;:23;;;2319:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;60971:14:::1;60950:18;:35;;;;;;;;;;;;:::i;:::-;;60865:128:::0;:::o;50021:113::-;50082:7;50109:10;:17;;;;50102:24;;50021:113;:::o;34971:376::-;35180:41;35199:12;:10;:12::i;:::-;35213:7;35180:18;:41::i;:::-;35158:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;35311:28;35321:4;35327:2;35331:7;35311:9;:28::i;:::-;34971:376;;;:::o;49602:343::-;49744:7;49799:23;49816:5;49799:16;:23::i;:::-;49791:5;:31;49769:124;;;;;;;;;;;;:::i;:::-;;;;;;;;;49911:12;:19;49924:5;49911:19;;;;;;;;;;;;;;;:26;49931:5;49911:26;;;;;;;;;;;;49904:33;;49602:343;;;;:::o;60060:43::-;60098:5;60060:43;:::o;60552:89::-;2338:12;:10;:12::i;:::-;2327:23;;:7;:5;:7::i;:::-;:23;;;2319:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;60621:12:::1;;;;;;;;;;;60620:13;60605:12;;:28;;;;;;;;;;;;;;;;;;60552:89::o:0;60330:214::-;2338:12;:10;:12::i;:::-;2327:23;;:7;:5;:7::i;:::-;:23;;;2319:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;60378:18:::1;60407:10;60378:40;;60430:12;60448:2;:7;;60463:21;60448:41;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60429:60;;;60508:7;60500:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;60367:177;;60330:214::o:0;35418:185::-;35556:39;35573:4;35579:2;35583:7;35556:39;;;;;;;;;;;;:16;:39::i;:::-;35418:185;;;:::o;50211:320::-;50331:7;50386:30;:28;:30::i;:::-;50378:5;:38;50356:132;;;;;;;;;;;;:::i;:::-;;;;;;;;;50506:10;50517:5;50506:17;;;;;;;;:::i;:::-;;;;;;;;;;50499:24;;50211:320;;;:::o;60758:99::-;2338:12;:10;:12::i;:::-;2327:23;;:7;:5;:7::i;:::-;:23;;;2319:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;60841:8:::1;60830;:19;;;;;;;;;;;;:::i;:::-;;60758:99:::0;:::o;31826:326::-;31943:7;31968:13;31984:7;:16;31992:7;31984:16;;;;;;;;;;;;;;;;;;;;;31968:32;;32050:1;32033:19;;:5;:19;;;;32011:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;32139:5;32132:12;;;31826:326;;;:::o;59933:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;31469:295::-;31586:7;31650:1;31633:19;;:5;:19;;;;31611:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;31740:9;:16;31750:5;31740:16;;;;;;;;;;;;;;;;31733:23;;31469:295;;;:::o;2758:94::-;2338:12;:10;:12::i;:::-;2327:23;;:7;:5;:7::i;:::-;:23;;;2319:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2823:21:::1;2841:1;2823:9;:21::i;:::-;2758:94::o:0;62255:507::-;62317:16;62351:18;62372:17;62382:6;62372:9;:17::i;:::-;62351:38;;62418:1;62404:10;:15;62400:355;;;62457:1;62443:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62436:23;;;;;62400:355;62492:23;62532:10;62518:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62492:51;;62558:13;62586:130;62610:10;62602:5;:18;62586:130;;;62666:34;62686:6;62694:5;62666:19;:34::i;:::-;62650:6;62657:5;62650:13;;;;;;;;:::i;:::-;;;;;;;:50;;;;;62622:7;;;;;:::i;:::-;;;;62586:130;;;62737:6;62730:13;;;;;62255:507;;;;:::o;60011:42::-;60043:10;60011:42;:::o;2107:87::-;2153:7;2180:6;;;;;;;;;;;2173:13;;2107:87;:::o;32388:104::-;32444:13;32477:7;32470:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32388:104;:::o;34292:327::-;34439:12;:10;:12::i;:::-;34427:24;;:8;:24;;;;34419:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;34539:8;34494:18;:32;34513:12;:10;:12::i;:::-;34494:32;;;;;;;;;;;;;;;:42;34527:8;34494:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;34592:8;34563:48;;34578:12;:10;:12::i;:::-;34563:48;;;34602:8;34563:48;;;;;;:::i;:::-;;;;;;;;34292:327;;:::o;35674:365::-;35863:41;35882:12;:10;:12::i;:::-;35896:7;35863:18;:41::i;:::-;35841:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;35992:39;36006:4;36012:2;36016:7;36025:5;35992:13;:39::i;:::-;35674:365;;;;:::o;32563:468::-;32681:13;32734:16;32742:7;32734;:16::i;:::-;32712:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;32838:21;32862:10;:8;:10::i;:::-;32838:34;;32927:1;32909:7;32903:21;:25;:120;;;;;;;;;;;;;;;;;32972:7;32981:18;:7;:16;:18::i;:::-;32955:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;32903:120;32883:140;;;32563:468;;;:::o;61703:544::-;2338:12;:10;:12::i;:::-;2327:23;;:7;:5;:7::i;:::-;:23;;;2319:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;61810:1:::1;61793:14;:18;:54;;;;;61833:14;;61815;:32;;61793:54;61785:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;60098:5;61902:33;61920:14;61902:13;:11;:13::i;:::-;:17;;:33;;;;:::i;:::-;:48;;61894:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;61999:9;61994:182;62018:14;62014:1;:18;61994:182;;;62054:15;62072:17;;62054:35;;62125:1;62104:17;;:22;;;;;;;:::i;:::-;;;;;;;;62141:23;62151:3;62156:7;62141:9;:23::i;:::-;62039:137;62034:3;;;;;:::i;:::-;;;;61994:182;;;;62205:34;62224:14;62205;;:18;;:34;;;;:::i;:::-;62188:14;:51;;;;61703:544:::0;;:::o;60110:43::-;60151:2;60110:43;:::o;59977:27::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;60160:35::-;;;;:::o;60202:32::-;;;;:::o;34690:214::-;34832:4;34861:18;:25;34880:5;34861:25;;;;;;;;;;;;;;;:35;34887:8;34861:35;;;;;;;;;;;;;;;;;;;;;;;;;34854:42;;34690:214;;;;:::o;60241:31::-;;;;;;;;;;;;;:::o;61001:694::-;58823:1;59419:7;;:19;;59411:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;58823:1;59552:7;:18;;;;61090:12:::1;;;;;;;;;;;61082:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;60098:5;61144:33;61162:14;61144:13;:11;:13::i;:::-;:17;;:33;;;;:::i;:::-;:48;;61136:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;61259:1;61242:14;:18;:54;;;;;60151:2;61264:14;:32;;61242:54;61234:93;;;;;;;;;;;;:::i;:::-;;;;;;;;;60043:10;61358:14;61346:9;:26;;;;:::i;:::-;:35;61338:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;61425:9;61420:268;61444:14;61440:1;:18;61420:268;;;60098:5;61484:17;;:31;61480:197;;;61536:15;61554:17;;61536:35;;61611:1;61590:17;;:22;;;;;;;:::i;:::-;;;;;;;;61631:30;61641:10;61653:7;61631:9;:30::i;:::-;61517:160;61480:197;61460:3;;;;;:::i;:::-;;;;61420:268;;;;58779:1:::0;59731:7;:22;;;;61001:694;:::o;3007:229::-;2338:12;:10;:12::i;:::-;2327:23;;:7;:5;:7::i;:::-;:23;;;2319:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3130:1:::1;3110:22;;:8;:22;;;;3088:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;3209:19;3219:8;3209:9;:19::i;:::-;3007:229:::0;:::o;31050:355::-;31197:4;31254:25;31239:40;;;:11;:40;;;;:105;;;;31311:33;31296:48;;;:11;:48;;;;31239:105;:158;;;;31361:36;31385:11;31361:23;:36::i;:::-;31239:158;31219:178;;31050:355;;;:::o;37586:127::-;37651:4;37703:1;37675:30;;:7;:16;37683:7;37675:16;;;;;;;;;;;;;;;;;;;;;:30;;;;37668:37;;37586:127;;;:::o;870:98::-;923:7;950:10;943:17;;870:98;:::o;41709:174::-;41811:2;41784:15;:24;41800:7;41784:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;41867:7;41863:2;41829:46;;41838:23;41853:7;41838:14;:23::i;:::-;41829:46;;;;;;;;;;;;41709:174;;:::o;37880:452::-;38009:4;38053:16;38061:7;38053;:16::i;:::-;38031:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;38152:13;38168:23;38183:7;38168:14;:23::i;:::-;38152:39;;38221:5;38210:16;;:7;:16;;;:64;;;;38267:7;38243:31;;:20;38255:7;38243:11;:20::i;:::-;:31;;;38210:64;:113;;;;38291:32;38308:5;38315:7;38291:16;:32::i;:::-;38210:113;38202:122;;;37880:452;;;;:::o;40976:615::-;41149:4;41122:31;;:23;41137:7;41122:14;:23::i;:::-;:31;;;41100:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;41255:1;41241:16;;:2;:16;;;;41233:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;41311:39;41332:4;41338:2;41342:7;41311:20;:39::i;:::-;41415:29;41432:1;41436:7;41415:8;:29::i;:::-;41476:1;41457:9;:15;41467:4;41457:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;41505:1;41488:9;:13;41498:2;41488:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;41536:2;41517:7;:16;41525:7;41517:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;41575:7;41571:2;41556:27;;41565:4;41556:27;;;;;;;;;;;;40976:615;;;:::o;3244:173::-;3300:16;3319:6;;;;;;;;;;;3300:25;;3345:8;3336:6;;:17;;;;;;;;;;;;;;;;;;3400:8;3369:40;;3390:8;3369:40;;;;;;;;;;;;3289:128;3244:173;:::o;36921:352::-;37078:28;37088:4;37094:2;37098:7;37078:9;:28::i;:::-;37139:48;37162:4;37168:2;37172:7;37181:5;37139:22;:48::i;:::-;37117:148;;;;;;;;;;;;:::i;:::-;;;;;;;;;36921:352;;;;:::o;60649:101::-;60701:13;60734:8;60727:15;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60649:101;:::o;26927:723::-;26983:13;27213:1;27204:5;:10;27200:53;;;27231:10;;;;;;;;;;;;;;;;;;;;;27200:53;27263:12;27278:5;27263:20;;27294:14;27319:78;27334:1;27326:4;:9;27319:78;;27352:8;;;;;:::i;:::-;;;;27383:2;27375:10;;;;;:::i;:::-;;;27319:78;;;27407:19;27439:6;27429:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27407:39;;27457:154;27473:1;27464:5;:10;27457:154;;27501:1;27491:11;;;;;:::i;:::-;;;27568:2;27560:5;:10;;;;:::i;:::-;27547:2;:24;;;;:::i;:::-;27534:39;;27517:6;27524;27517:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;27597:2;27588:11;;;;;:::i;:::-;;;27457:154;;;27635:6;27621:21;;;;;26927:723;;;;:::o;6378:98::-;6436:7;6467:1;6463;:5;;;;:::i;:::-;6456:12;;6378:98;;;;:::o;38674:110::-;38750:26;38760:2;38764:7;38750:26;;;;;;;;;;;;:9;:26::i;:::-;38674:110;;:::o;6759:98::-;6817:7;6848:1;6844;:5;;;;:::i;:::-;6837:12;;6759:98;;;;:::o;29516:207::-;29646:4;29690:25;29675:40;;;:11;:40;;;;29668:47;;29516:207;;;:::o;51144:589::-;51288:45;51315:4;51321:2;51325:7;51288:26;:45::i;:::-;51366:1;51350:18;;:4;:18;;;51346:187;;;51385:40;51417:7;51385:31;:40::i;:::-;51346:187;;;51455:2;51447:10;;:4;:10;;;51443:90;;51474:47;51507:4;51513:7;51474:32;:47::i;:::-;51443:90;51346:187;51561:1;51547:16;;:2;:16;;;51543:183;;;51580:45;51617:7;51580:36;:45::i;:::-;51543:183;;;51653:4;51647:10;;:2;:10;;;51643:83;;51674:40;51702:2;51706:7;51674:27;:40::i;:::-;51643:83;51543:183;51144:589;;;:::o;42448:980::-;42603:4;42624:15;:2;:13;;;:15::i;:::-;42620:801;;;42693:2;42677:36;;;42736:12;:10;:12::i;:::-;42771:4;42798:7;42828:5;42677:175;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;42656:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43052:1;43035:6;:13;:18;43031:320;;;43078:108;;;;;;;;;;:::i;:::-;;;;;;;;43031:320;43301:6;43295:13;43286:6;43282:2;43278:15;43271:38;42656:710;42926:41;;;42916:51;;;:6;:51;;;;42909:58;;;;;42620:801;43405:4;43398:11;;42448:980;;;;;;;:::o;39011:321::-;39141:18;39147:2;39151:7;39141:5;:18::i;:::-;39192:54;39223:1;39227:2;39231:7;39240:5;39192:22;:54::i;:::-;39170:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;39011:321;;;:::o;44000:126::-;;;;:::o;52456:164::-;52560:10;:17;;;;52533:15;:24;52549:7;52533:24;;;;;;;;;;;:44;;;;52588:10;52604:7;52588:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52456:164;:::o;53247:1002::-;53527:22;53577:1;53552:22;53569:4;53552:16;:22::i;:::-;:26;;;;:::i;:::-;53527:51;;53589:18;53610:17;:26;53628:7;53610:26;;;;;;;;;;;;53589:47;;53757:14;53743:10;:28;53739:328;;53788:19;53810:12;:18;53823:4;53810:18;;;;;;;;;;;;;;;:34;53829:14;53810:34;;;;;;;;;;;;53788:56;;53894:11;53861:12;:18;53874:4;53861:18;;;;;;;;;;;;;;;:30;53880:10;53861:30;;;;;;;;;;;:44;;;;54011:10;53978:17;:30;53996:11;53978:30;;;;;;;;;;;:43;;;;53773:294;53739:328;54163:17;:26;54181:7;54163:26;;;;;;;;;;;54156:33;;;54207:12;:18;54220:4;54207:18;;;;;;;;;;;;;;;:34;54226:14;54207:34;;;;;;;;;;;54200:41;;;53342:907;;53247:1002;;:::o;54544:1079::-;54797:22;54842:1;54822:10;:17;;;;:21;;;;:::i;:::-;54797:46;;54854:18;54875:15;:24;54891:7;54875:24;;;;;;;;;;;;54854:45;;55226:19;55248:10;55259:14;55248:26;;;;;;;;:::i;:::-;;;;;;;;;;55226:48;;55312:11;55287:10;55298;55287:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;55423:10;55392:15;:28;55408:11;55392:28;;;;;;;;;;;:41;;;;55564:15;:24;55580:7;55564:24;;;;;;;;;;;55557:31;;;55599:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;54615:1008;;;54544:1079;:::o;52034:221::-;52119:14;52136:20;52153:2;52136:16;:20::i;:::-;52119:37;;52194:7;52167:12;:16;52180:2;52167:16;;;;;;;;;;;;;;;:24;52184:6;52167:24;;;;;;;;;;;:34;;;;52241:6;52212:17;:26;52230:7;52212:26;;;;;;;;;;;:35;;;;52108:147;52034:221;;:::o;18816:387::-;18876:4;19084:12;19151:7;19139:20;19131:28;;19194:1;19187:4;:8;19180:15;;;18816:387;;;:::o;39668:382::-;39762:1;39748:16;;:2;:16;;;;39740:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;39821:16;39829:7;39821;:16::i;:::-;39820:17;39812:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;39883:45;39912:1;39916:2;39920:7;39883:20;:45::i;:::-;39958:1;39941:9;:13;39951:2;39941:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;39989:2;39970:7;:16;39978:7;39970:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;40034:7;40030:2;40009:33;;40026:1;40009:33;;;;;;;;;;;;39668:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:179::-;7227:10;7248:46;7290:3;7282:6;7248:46;:::i;:::-;7326:4;7321:3;7317:14;7303:28;;7158:179;;;;:::o;7343:118::-;7430:24;7448:5;7430:24;:::i;:::-;7425:3;7418:37;7343:118;;:::o;7497:732::-;7616:3;7645:54;7693:5;7645:54;:::i;:::-;7715:86;7794:6;7789:3;7715:86;:::i;:::-;7708:93;;7825:56;7875:5;7825:56;:::i;:::-;7904:7;7935:1;7920:284;7945:6;7942:1;7939:13;7920:284;;;8021:6;8015:13;8048:63;8107:3;8092:13;8048:63;:::i;:::-;8041:70;;8134:60;8187:6;8134:60;:::i;:::-;8124:70;;7980:224;7967:1;7964;7960:9;7955:14;;7920:284;;;7924:14;8220:3;8213:10;;7621:608;;;7497:732;;;;:::o;8235:109::-;8316:21;8331:5;8316:21;:::i;:::-;8311:3;8304:34;8235:109;;:::o;8350:360::-;8436:3;8464:38;8496:5;8464:38;:::i;:::-;8518:70;8581:6;8576:3;8518:70;:::i;:::-;8511:77;;8597:52;8642:6;8637:3;8630:4;8623:5;8619:16;8597:52;:::i;:::-;8674:29;8696:6;8674:29;:::i;:::-;8669:3;8665:39;8658:46;;8440:270;8350:360;;;;:::o;8716:364::-;8804:3;8832:39;8865:5;8832:39;:::i;:::-;8887:71;8951:6;8946:3;8887:71;:::i;:::-;8880:78;;8967:52;9012:6;9007:3;9000:4;8993:5;8989:16;8967:52;:::i;:::-;9044:29;9066:6;9044:29;:::i;:::-;9039:3;9035:39;9028:46;;8808:272;8716:364;;;;:::o;9086:377::-;9192:3;9220:39;9253:5;9220:39;:::i;:::-;9275:89;9357:6;9352:3;9275:89;:::i;:::-;9268:96;;9373:52;9418:6;9413:3;9406:4;9399:5;9395:16;9373:52;:::i;:::-;9450:6;9445:3;9441:16;9434:23;;9196:267;9086:377;;;;:::o;9469:366::-;9611:3;9632:67;9696:2;9691:3;9632:67;:::i;:::-;9625:74;;9708:93;9797:3;9708:93;:::i;:::-;9826:2;9821:3;9817:12;9810:19;;9469:366;;;:::o;9841:::-;9983:3;10004:67;10068:2;10063:3;10004:67;:::i;:::-;9997:74;;10080:93;10169:3;10080:93;:::i;:::-;10198:2;10193:3;10189:12;10182:19;;9841:366;;;:::o;10213:::-;10355:3;10376:67;10440:2;10435:3;10376:67;:::i;:::-;10369:74;;10452:93;10541:3;10452:93;:::i;:::-;10570:2;10565:3;10561:12;10554:19;;10213:366;;;:::o;10585:::-;10727:3;10748:67;10812:2;10807:3;10748:67;:::i;:::-;10741:74;;10824:93;10913:3;10824:93;:::i;:::-;10942:2;10937:3;10933:12;10926:19;;10585:366;;;:::o;10957:::-;11099:3;11120:67;11184:2;11179:3;11120:67;:::i;:::-;11113:74;;11196:93;11285:3;11196:93;:::i;:::-;11314:2;11309:3;11305:12;11298:19;;10957:366;;;:::o;11329:::-;11471:3;11492:67;11556:2;11551:3;11492:67;:::i;:::-;11485:74;;11568:93;11657:3;11568:93;:::i;:::-;11686:2;11681:3;11677:12;11670:19;;11329:366;;;:::o;11701:::-;11843:3;11864:67;11928:2;11923:3;11864:67;:::i;:::-;11857:74;;11940:93;12029:3;11940:93;:::i;:::-;12058:2;12053:3;12049:12;12042:19;;11701:366;;;:::o;12073:::-;12215:3;12236:67;12300:2;12295:3;12236:67;:::i;:::-;12229:74;;12312:93;12401:3;12312:93;:::i;:::-;12430:2;12425:3;12421:12;12414:19;;12073:366;;;:::o;12445:::-;12587:3;12608:67;12672:2;12667:3;12608:67;:::i;:::-;12601:74;;12684:93;12773:3;12684:93;:::i;:::-;12802:2;12797:3;12793:12;12786:19;;12445:366;;;:::o;12817:::-;12959:3;12980:67;13044:2;13039:3;12980:67;:::i;:::-;12973:74;;13056:93;13145:3;13056:93;:::i;:::-;13174:2;13169:3;13165:12;13158:19;;12817:366;;;:::o;13189:::-;13331:3;13352:67;13416:2;13411:3;13352:67;:::i;:::-;13345:74;;13428:93;13517:3;13428:93;:::i;:::-;13546:2;13541:3;13537:12;13530:19;;13189:366;;;:::o;13561:::-;13703:3;13724:67;13788:2;13783:3;13724:67;:::i;:::-;13717:74;;13800:93;13889:3;13800:93;:::i;:::-;13918:2;13913:3;13909:12;13902:19;;13561:366;;;:::o;13933:::-;14075:3;14096:67;14160:2;14155:3;14096:67;:::i;:::-;14089:74;;14172:93;14261:3;14172:93;:::i;:::-;14290:2;14285:3;14281:12;14274:19;;13933:366;;;:::o;14305:::-;14447:3;14468:67;14532:2;14527:3;14468:67;:::i;:::-;14461:74;;14544:93;14633:3;14544:93;:::i;:::-;14662:2;14657:3;14653:12;14646:19;;14305:366;;;:::o;14677:::-;14819:3;14840:67;14904:2;14899:3;14840:67;:::i;:::-;14833:74;;14916:93;15005:3;14916:93;:::i;:::-;15034:2;15029:3;15025:12;15018:19;;14677:366;;;:::o;15049:::-;15191:3;15212:67;15276:2;15271:3;15212:67;:::i;:::-;15205:74;;15288:93;15377:3;15288:93;:::i;:::-;15406:2;15401:3;15397:12;15390:19;;15049:366;;;:::o;15421:::-;15563:3;15584:67;15648:2;15643:3;15584:67;:::i;:::-;15577:74;;15660:93;15749:3;15660:93;:::i;:::-;15778:2;15773:3;15769:12;15762:19;;15421:366;;;:::o;15793:::-;15935:3;15956:67;16020:2;16015:3;15956:67;:::i;:::-;15949:74;;16032:93;16121:3;16032:93;:::i;:::-;16150:2;16145:3;16141:12;16134:19;;15793:366;;;:::o;16165:::-;16307:3;16328:67;16392:2;16387:3;16328:67;:::i;:::-;16321:74;;16404:93;16493:3;16404:93;:::i;:::-;16522:2;16517:3;16513:12;16506:19;;16165:366;;;:::o;16537:::-;16679:3;16700:67;16764:2;16759:3;16700:67;:::i;:::-;16693:74;;16776:93;16865:3;16776:93;:::i;:::-;16894:2;16889:3;16885:12;16878:19;;16537:366;;;:::o;16909:398::-;17068:3;17089:83;17170:1;17165:3;17089:83;:::i;:::-;17082:90;;17181:93;17270:3;17181:93;:::i;:::-;17299:1;17294:3;17290:11;17283:18;;16909:398;;;:::o;17313:366::-;17455:3;17476:67;17540:2;17535:3;17476:67;:::i;:::-;17469:74;;17552:93;17641:3;17552:93;:::i;:::-;17670:2;17665:3;17661:12;17654:19;;17313:366;;;:::o;17685:::-;17827:3;17848:67;17912:2;17907:3;17848:67;:::i;:::-;17841:74;;17924:93;18013:3;17924:93;:::i;:::-;18042:2;18037:3;18033:12;18026:19;;17685:366;;;:::o;18057:::-;18199:3;18220:67;18284:2;18279:3;18220:67;:::i;:::-;18213:74;;18296:93;18385:3;18296:93;:::i;:::-;18414:2;18409:3;18405:12;18398:19;;18057:366;;;:::o;18429:::-;18571:3;18592:67;18656:2;18651:3;18592:67;:::i;:::-;18585:74;;18668:93;18757:3;18668:93;:::i;:::-;18786:2;18781:3;18777:12;18770:19;;18429:366;;;:::o;18801:::-;18943:3;18964:67;19028:2;19023:3;18964:67;:::i;:::-;18957:74;;19040:93;19129:3;19040:93;:::i;:::-;19158:2;19153:3;19149:12;19142:19;;18801:366;;;:::o;19173:108::-;19250:24;19268:5;19250:24;:::i;:::-;19245:3;19238:37;19173:108;;:::o;19287:118::-;19374:24;19392:5;19374:24;:::i;:::-;19369:3;19362:37;19287:118;;:::o;19411:435::-;19591:3;19613:95;19704:3;19695:6;19613:95;:::i;:::-;19606:102;;19725:95;19816:3;19807:6;19725:95;:::i;:::-;19718:102;;19837:3;19830:10;;19411:435;;;;;:::o;19852:379::-;20036:3;20058:147;20201:3;20058:147;:::i;:::-;20051:154;;20222:3;20215:10;;19852:379;;;:::o;20237:222::-;20330:4;20368:2;20357:9;20353:18;20345:26;;20381:71;20449:1;20438:9;20434:17;20425:6;20381:71;:::i;:::-;20237:222;;;;:::o;20465:640::-;20660:4;20698:3;20687:9;20683:19;20675:27;;20712:71;20780:1;20769:9;20765:17;20756:6;20712:71;:::i;:::-;20793:72;20861:2;20850:9;20846:18;20837:6;20793:72;:::i;:::-;20875;20943:2;20932:9;20928:18;20919:6;20875:72;:::i;:::-;20994:9;20988:4;20984:20;20979:2;20968:9;20964:18;20957:48;21022:76;21093:4;21084:6;21022:76;:::i;:::-;21014:84;;20465:640;;;;;;;:::o;21111:373::-;21254:4;21292:2;21281:9;21277:18;21269:26;;21341:9;21335:4;21331:20;21327:1;21316:9;21312:17;21305:47;21369:108;21472:4;21463:6;21369:108;:::i;:::-;21361:116;;21111:373;;;;:::o;21490:210::-;21577:4;21615:2;21604:9;21600:18;21592:26;;21628:65;21690:1;21679:9;21675:17;21666:6;21628:65;:::i;:::-;21490:210;;;;:::o;21706:313::-;21819:4;21857:2;21846:9;21842:18;21834:26;;21906:9;21900:4;21896:20;21892:1;21881:9;21877:17;21870:47;21934:78;22007:4;21998:6;21934:78;:::i;:::-;21926:86;;21706:313;;;;:::o;22025:419::-;22191:4;22229:2;22218:9;22214:18;22206:26;;22278:9;22272:4;22268:20;22264:1;22253:9;22249:17;22242:47;22306:131;22432:4;22306:131;:::i;:::-;22298:139;;22025:419;;;:::o;22450:::-;22616:4;22654:2;22643:9;22639:18;22631:26;;22703:9;22697:4;22693:20;22689:1;22678:9;22674:17;22667:47;22731:131;22857:4;22731:131;:::i;:::-;22723:139;;22450:419;;;:::o;22875:::-;23041:4;23079:2;23068:9;23064:18;23056:26;;23128:9;23122:4;23118:20;23114:1;23103:9;23099:17;23092:47;23156:131;23282:4;23156:131;:::i;:::-;23148:139;;22875:419;;;:::o;23300:::-;23466:4;23504:2;23493:9;23489:18;23481:26;;23553:9;23547:4;23543:20;23539:1;23528:9;23524:17;23517:47;23581:131;23707:4;23581:131;:::i;:::-;23573:139;;23300:419;;;:::o;23725:::-;23891:4;23929:2;23918:9;23914:18;23906:26;;23978:9;23972:4;23968:20;23964:1;23953:9;23949:17;23942:47;24006:131;24132:4;24006:131;:::i;:::-;23998:139;;23725:419;;;:::o;24150:::-;24316:4;24354:2;24343:9;24339:18;24331:26;;24403:9;24397:4;24393:20;24389:1;24378:9;24374:17;24367:47;24431:131;24557:4;24431:131;:::i;:::-;24423:139;;24150:419;;;:::o;24575:::-;24741:4;24779:2;24768:9;24764:18;24756:26;;24828:9;24822:4;24818:20;24814:1;24803:9;24799:17;24792:47;24856:131;24982:4;24856:131;:::i;:::-;24848:139;;24575:419;;;:::o;25000:::-;25166:4;25204:2;25193:9;25189:18;25181:26;;25253:9;25247:4;25243:20;25239:1;25228:9;25224:17;25217:47;25281:131;25407:4;25281:131;:::i;:::-;25273:139;;25000:419;;;:::o;25425:::-;25591:4;25629:2;25618:9;25614:18;25606:26;;25678:9;25672:4;25668:20;25664:1;25653:9;25649:17;25642:47;25706:131;25832:4;25706:131;:::i;:::-;25698:139;;25425:419;;;:::o;25850:::-;26016:4;26054:2;26043:9;26039:18;26031:26;;26103:9;26097:4;26093:20;26089:1;26078:9;26074:17;26067:47;26131:131;26257:4;26131:131;:::i;:::-;26123:139;;25850:419;;;:::o;26275:::-;26441:4;26479:2;26468:9;26464:18;26456:26;;26528:9;26522:4;26518:20;26514:1;26503:9;26499:17;26492:47;26556:131;26682:4;26556:131;:::i;:::-;26548:139;;26275:419;;;:::o;26700:::-;26866:4;26904:2;26893:9;26889:18;26881:26;;26953:9;26947:4;26943:20;26939:1;26928:9;26924:17;26917:47;26981:131;27107:4;26981:131;:::i;:::-;26973:139;;26700:419;;;:::o;27125:::-;27291:4;27329:2;27318:9;27314:18;27306:26;;27378:9;27372:4;27368:20;27364:1;27353:9;27349:17;27342:47;27406:131;27532:4;27406:131;:::i;:::-;27398:139;;27125:419;;;:::o;27550:::-;27716:4;27754:2;27743:9;27739:18;27731:26;;27803:9;27797:4;27793:20;27789:1;27778:9;27774:17;27767:47;27831:131;27957:4;27831:131;:::i;:::-;27823:139;;27550:419;;;:::o;27975:::-;28141:4;28179:2;28168:9;28164:18;28156:26;;28228:9;28222:4;28218:20;28214:1;28203:9;28199:17;28192:47;28256:131;28382:4;28256:131;:::i;:::-;28248:139;;27975:419;;;:::o;28400:::-;28566:4;28604:2;28593:9;28589:18;28581:26;;28653:9;28647:4;28643:20;28639:1;28628:9;28624:17;28617:47;28681:131;28807:4;28681:131;:::i;:::-;28673:139;;28400:419;;;:::o;28825:::-;28991:4;29029:2;29018:9;29014:18;29006:26;;29078:9;29072:4;29068:20;29064:1;29053:9;29049:17;29042:47;29106:131;29232:4;29106:131;:::i;:::-;29098:139;;28825:419;;;:::o;29250:::-;29416:4;29454:2;29443:9;29439:18;29431:26;;29503:9;29497:4;29493:20;29489:1;29478:9;29474:17;29467:47;29531:131;29657:4;29531:131;:::i;:::-;29523:139;;29250:419;;;:::o;29675:::-;29841:4;29879:2;29868:9;29864:18;29856:26;;29928:9;29922:4;29918:20;29914:1;29903:9;29899:17;29892:47;29956:131;30082:4;29956:131;:::i;:::-;29948:139;;29675:419;;;:::o;30100:::-;30266:4;30304:2;30293:9;30289:18;30281:26;;30353:9;30347:4;30343:20;30339:1;30328:9;30324:17;30317:47;30381:131;30507:4;30381:131;:::i;:::-;30373:139;;30100:419;;;:::o;30525:::-;30691:4;30729:2;30718:9;30714:18;30706:26;;30778:9;30772:4;30768:20;30764:1;30753:9;30749:17;30742:47;30806:131;30932:4;30806:131;:::i;:::-;30798:139;;30525:419;;;:::o;30950:::-;31116:4;31154:2;31143:9;31139:18;31131:26;;31203:9;31197:4;31193:20;31189:1;31178:9;31174:17;31167:47;31231:131;31357:4;31231:131;:::i;:::-;31223:139;;30950:419;;;:::o;31375:::-;31541:4;31579:2;31568:9;31564:18;31556:26;;31628:9;31622:4;31618:20;31614:1;31603:9;31599:17;31592:47;31656:131;31782:4;31656:131;:::i;:::-;31648:139;;31375:419;;;:::o;31800:::-;31966:4;32004:2;31993:9;31989:18;31981:26;;32053:9;32047:4;32043:20;32039:1;32028:9;32024:17;32017:47;32081:131;32207:4;32081:131;:::i;:::-;32073:139;;31800:419;;;:::o;32225:::-;32391:4;32429:2;32418:9;32414:18;32406:26;;32478:9;32472:4;32468:20;32464:1;32453:9;32449:17;32442:47;32506:131;32632:4;32506:131;:::i;:::-;32498:139;;32225:419;;;:::o;32650:222::-;32743:4;32781:2;32770:9;32766:18;32758:26;;32794:71;32862:1;32851:9;32847:17;32838:6;32794:71;:::i;:::-;32650:222;;;;:::o;32878:129::-;32912:6;32939:20;;:::i;:::-;32929:30;;32968:33;32996:4;32988:6;32968:33;:::i;:::-;32878:129;;;:::o;33013:75::-;33046:6;33079:2;33073:9;33063:19;;33013:75;:::o;33094:307::-;33155:4;33245:18;33237:6;33234:30;33231:56;;;33267:18;;:::i;:::-;33231:56;33305:29;33327:6;33305:29;:::i;:::-;33297:37;;33389:4;33383;33379:15;33371:23;;33094:307;;;:::o;33407:308::-;33469:4;33559:18;33551:6;33548:30;33545:56;;;33581:18;;:::i;:::-;33545:56;33619:29;33641:6;33619:29;:::i;:::-;33611:37;;33703:4;33697;33693:15;33685:23;;33407:308;;;:::o;33721:132::-;33788:4;33811:3;33803:11;;33841:4;33836:3;33832:14;33824:22;;33721:132;;;:::o;33859:114::-;33926:6;33960:5;33954:12;33944:22;;33859:114;;;:::o;33979:98::-;34030:6;34064:5;34058:12;34048:22;;33979:98;;;:::o;34083:99::-;34135:6;34169:5;34163:12;34153:22;;34083:99;;;:::o;34188:113::-;34258:4;34290;34285:3;34281:14;34273:22;;34188:113;;;:::o;34307:184::-;34406:11;34440:6;34435:3;34428:19;34480:4;34475:3;34471:14;34456:29;;34307:184;;;;:::o;34497:168::-;34580:11;34614:6;34609:3;34602:19;34654:4;34649:3;34645:14;34630:29;;34497:168;;;;:::o;34671:147::-;34772:11;34809:3;34794:18;;34671:147;;;;:::o;34824:169::-;34908:11;34942:6;34937:3;34930:19;34982:4;34977:3;34973:14;34958:29;;34824:169;;;;:::o;34999:148::-;35101:11;35138:3;35123:18;;34999:148;;;;:::o;35153:305::-;35193:3;35212:20;35230:1;35212:20;:::i;:::-;35207:25;;35246:20;35264:1;35246:20;:::i;:::-;35241:25;;35400:1;35332:66;35328:74;35325:1;35322:81;35319:107;;;35406:18;;:::i;:::-;35319:107;35450:1;35447;35443:9;35436:16;;35153:305;;;;:::o;35464:185::-;35504:1;35521:20;35539:1;35521:20;:::i;:::-;35516:25;;35555:20;35573:1;35555:20;:::i;:::-;35550:25;;35594:1;35584:35;;35599:18;;:::i;:::-;35584:35;35641:1;35638;35634:9;35629:14;;35464:185;;;;:::o;35655:191::-;35695:4;35715:20;35733:1;35715:20;:::i;:::-;35710:25;;35749:20;35767:1;35749:20;:::i;:::-;35744:25;;35788:1;35785;35782:8;35779:34;;;35793:18;;:::i;:::-;35779:34;35838:1;35835;35831:9;35823:17;;35655:191;;;;:::o;35852:96::-;35889:7;35918:24;35936:5;35918:24;:::i;:::-;35907:35;;35852:96;;;:::o;35954:90::-;35988:7;36031:5;36024:13;36017:21;36006:32;;35954:90;;;:::o;36050:149::-;36086:7;36126:66;36119:5;36115:78;36104:89;;36050:149;;;:::o;36205:126::-;36242:7;36282:42;36275:5;36271:54;36260:65;;36205:126;;;:::o;36337:77::-;36374:7;36403:5;36392:16;;36337:77;;;:::o;36420:154::-;36504:6;36499:3;36494;36481:30;36566:1;36557:6;36552:3;36548:16;36541:27;36420:154;;;:::o;36580:307::-;36648:1;36658:113;36672:6;36669:1;36666:13;36658:113;;;36757:1;36752:3;36748:11;36742:18;36738:1;36733:3;36729:11;36722:39;36694:2;36691:1;36687:10;36682:15;;36658:113;;;36789:6;36786:1;36783:13;36780:101;;;36869:1;36860:6;36855:3;36851:16;36844:27;36780:101;36629:258;36580:307;;;:::o;36893:320::-;36937:6;36974:1;36968:4;36964:12;36954:22;;37021:1;37015:4;37011:12;37042:18;37032:81;;37098:4;37090:6;37086:17;37076:27;;37032:81;37160:2;37152:6;37149:14;37129:18;37126:38;37123:84;;;37179:18;;:::i;:::-;37123:84;36944:269;36893:320;;;:::o;37219:281::-;37302:27;37324:4;37302:27;:::i;:::-;37294:6;37290:40;37432:6;37420:10;37417:22;37396:18;37384:10;37381:34;37378:62;37375:88;;;37443:18;;:::i;:::-;37375:88;37483:10;37479:2;37472:22;37262:238;37219:281;;:::o;37506:233::-;37545:3;37568:24;37586:5;37568:24;:::i;:::-;37559:33;;37614:66;37607:5;37604:77;37601:103;;;37684:18;;:::i;:::-;37601:103;37731:1;37724:5;37720:13;37713:20;;37506:233;;;:::o;37745:176::-;37777:1;37794:20;37812:1;37794:20;:::i;:::-;37789:25;;37828:20;37846:1;37828:20;:::i;:::-;37823:25;;37867:1;37857:35;;37872:18;;:::i;:::-;37857:35;37913:1;37910;37906:9;37901:14;;37745:176;;;;:::o;37927:180::-;37975:77;37972:1;37965:88;38072:4;38069:1;38062:15;38096:4;38093:1;38086:15;38113:180;38161:77;38158:1;38151:88;38258:4;38255:1;38248:15;38282:4;38279:1;38272:15;38299:180;38347:77;38344:1;38337:88;38444:4;38441:1;38434:15;38468:4;38465:1;38458:15;38485:180;38533:77;38530:1;38523:88;38630:4;38627:1;38620:15;38654:4;38651:1;38644:15;38671:180;38719:77;38716:1;38709:88;38816:4;38813:1;38806:15;38840:4;38837:1;38830:15;38857:180;38905:77;38902:1;38895:88;39002:4;38999:1;38992:15;39026:4;39023:1;39016:15;39043:117;39152:1;39149;39142:12;39166:117;39275:1;39272;39265:12;39289:117;39398:1;39395;39388:12;39412:117;39521:1;39518;39511:12;39535:102;39576:6;39627:2;39623:7;39618:2;39611:5;39607:14;39603:28;39593:38;;39535:102;;;:::o;39643:230::-;39783:34;39779:1;39771:6;39767:14;39760:58;39852:13;39847:2;39839:6;39835:15;39828:38;39643:230;:::o;39879:237::-;40019:34;40015:1;40007:6;40003:14;39996:58;40088:20;40083:2;40075:6;40071:15;40064:45;39879:237;:::o;40122:225::-;40262:34;40258:1;40250:6;40246:14;40239:58;40331:8;40326:2;40318:6;40314:15;40307:33;40122:225;:::o;40353:178::-;40493:30;40489:1;40481:6;40477:14;40470:54;40353:178;:::o;40537:177::-;40677:29;40673:1;40665:6;40661:14;40654:53;40537:177;:::o;40720:182::-;40860:34;40856:1;40848:6;40844:14;40837:58;40720:182;:::o;40908:223::-;41048:34;41044:1;41036:6;41032:14;41025:58;41117:6;41112:2;41104:6;41100:15;41093:31;40908:223;:::o;41137:175::-;41277:27;41273:1;41265:6;41261:14;41254:51;41137:175;:::o;41318:168::-;41458:20;41454:1;41446:6;41442:14;41435:44;41318:168;:::o;41492:231::-;41632:34;41628:1;41620:6;41616:14;41609:58;41701:14;41696:2;41688:6;41684:15;41677:39;41492:231;:::o;41729:171::-;41869:23;41865:1;41857:6;41853:14;41846:47;41729:171;:::o;41906:243::-;42046:34;42042:1;42034:6;42030:14;42023:58;42115:26;42110:2;42102:6;42098:15;42091:51;41906:243;:::o;42155:229::-;42295:34;42291:1;42283:6;42279:14;42272:58;42364:12;42359:2;42351:6;42347:15;42340:37;42155:229;:::o;42390:228::-;42530:34;42526:1;42518:6;42514:14;42507:58;42599:11;42594:2;42586:6;42582:15;42575:36;42390:228;:::o;42624:182::-;42764:34;42760:1;42752:6;42748:14;42741:58;42624:182;:::o;42812:231::-;42952:34;42948:1;42940:6;42936:14;42929:58;43021:14;43016:2;43008:6;43004:15;42997:39;42812:231;:::o;43049:182::-;43189:34;43185:1;43177:6;43173:14;43166:58;43049:182;:::o;43237:228::-;43377:34;43373:1;43365:6;43361:14;43354:58;43446:11;43441:2;43433:6;43429:15;43422:36;43237:228;:::o;43471:234::-;43611:34;43607:1;43599:6;43595:14;43588:58;43680:17;43675:2;43667:6;43663:15;43656:42;43471:234;:::o;43711:220::-;43851:34;43847:1;43839:6;43835:14;43828:58;43920:3;43915:2;43907:6;43903:15;43896:28;43711:220;:::o;43937:114::-;;:::o;44057:166::-;44197:18;44193:1;44185:6;44181:14;44174:42;44057:166;:::o;44229:236::-;44369:34;44365:1;44357:6;44353:14;44346:58;44438:19;44433:2;44425:6;44421:15;44414:44;44229:236;:::o;44471:231::-;44611:34;44607:1;44599:6;44595:14;44588:58;44680:14;44675:2;44667:6;44663:15;44656:39;44471:231;:::o;44708:181::-;44848:33;44844:1;44836:6;44832:14;44825:57;44708:181;:::o;44895:177::-;45035:29;45031:1;45023:6;45019:14;45012:53;44895:177;:::o;45078:122::-;45151:24;45169:5;45151:24;:::i;:::-;45144:5;45141:35;45131:63;;45190:1;45187;45180:12;45131:63;45078:122;:::o;45206:116::-;45276:21;45291:5;45276:21;:::i;:::-;45269:5;45266:32;45256:60;;45312:1;45309;45302:12;45256:60;45206:116;:::o;45328:120::-;45400:23;45417:5;45400:23;:::i;:::-;45393:5;45390:34;45380:62;;45438:1;45435;45428:12;45380:62;45328:120;:::o;45454:122::-;45527:24;45545:5;45527:24;:::i;:::-;45520:5;45517:35;45507:63;;45566:1;45563;45556:12;45507:63;45454:122;:::o

Swarm Source

ipfs://4215c6d87e6f310cc2ba685f0ea80644781791836402e5a5e396ea1cf05f9d49
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.