ETH Price: $2,413.32 (+2.51%)

Token

Polygon Name Service (.polygon)

Overview

Max Total Supply

12,206 .polygon

Holders

11,387

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
Polygon_Name_Service

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at zkevm.polygonscan.com on 2023-06-19
*/

// SPDX-License-Identifier: MIT

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol
// OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/MerkleProof.sol)

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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

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

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

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

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

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


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must 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 Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);
}

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


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

pragma solidity ^0.8.0;


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

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

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

// File: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.0;



/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A is IERC721, IERC721Metadata {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     * 
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);
}

// File: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.0;







/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721A {
    using Address for address;
    using Strings for uint256;

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;
    mapping(uint => string) public tokenIDandAddress;
    mapping(string => uint) public tokenAddressandID;
    // The number of tokens burned.
    uint256 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 1;
    }

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @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 override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        _addressData[owner].aux = aux;
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr) if (curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

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

        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenIDandAddress[tokenId])) : '';
    }

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner) if(!isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

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

        _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 {
        _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 {
        _transfer(from, to, tokenId);
        if (to.isContract()) if(!_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

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

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement
     *   {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex < end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex < end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

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

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

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.startTimestamp = uint64(block.timestamp);

            
            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            AddressData storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
            return retval == IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

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

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


pragma solidity ^0.8.0;


contract Polygon_Name_Service is ERC721A, Ownable, ReentrancyGuard {
    using Strings for uint256;
    uint256 public Cost2Character = 30000000000000000;
    uint256 public Cost3Character = 10000000000000000;
    uint256 public Cost4mCharacter = 3000000000000000;
    uint256 public royaltyBps = 500;
    uint8 private ref = 10;
    string private domain='.polygon';
    string private BASE_URI = 'https://data.polygon.name/metadata/';
    string private CONTRACT_URI = 'https://data.polygon.name/contract.json';
    mapping(string => address) public resolveAddress;
    mapping(address => string) public primaryAddress;
    mapping(string => mapping(string => string)) public dataAddress;
    bytes _allowChars = "0123456789-_abcdefghijklmnopqrstuvwxyz";

    constructor() ERC721A("Polygon Name Service", ".polygon") {
        tokenIDandAddress[_currentIndex]="polygon";
        tokenAddressandID["polygon"]=_currentIndex;
        resolveAddress["polygon"]=msg.sender;
        _safeMint(msg.sender,1);
    }
   



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

    function contractURI() public view returns (string memory) {
        return CONTRACT_URI;
    }

    function royaltyInfo(uint256 _tokenId, uint256 _salePrice) external view
    returns (address receiver, uint256 royaltyAmount) {
            TokenOwnership memory Ownership = _ownershipOf(_tokenId);
            return (Ownership.addr, _salePrice*royaltyBps/10000);
    }

    

    
    function setAddress(string calldata NAME, address newresolve) external {
         TokenOwnership memory Ownership = _ownershipOf(tokenAddressandID[NAME]);
        if (Ownership.addr != msg.sender) revert("Error");
        

    bytes memory result = bytes(primaryAddress[resolveAddress[NAME]]);
        if (keccak256(result) == keccak256(bytes(NAME))) {
            primaryAddress[resolveAddress[NAME]]="";
        }
        resolveAddress[NAME]=newresolve;
    }

    function setPrimaryAddress(string calldata NAME) external {
        TokenOwnership memory Ownership = _ownershipOf(tokenAddressandID[NAME]);
        if (Ownership.addr != msg.sender) revert("Error");
        primaryAddress[msg.sender]=NAME;
    }


    function setDataAddress(string calldata NAME,string calldata setArea, string  memory newDatas) external {
        TokenOwnership memory Ownership = _ownershipOf(tokenAddressandID[NAME]);
        if (Ownership.addr != msg.sender) revert("Error");
        dataAddress[NAME][setArea]=newDatas;
    }

    function getDataAddress(string memory NAME, string calldata Area) public view returns(string memory) {
        return dataAddress[NAME][Area];
    }


    function setBaseURI(string memory customBaseURI_) external onlyOwner {
        BASE_URI = customBaseURI_;
    }

    function setRefRewards(uint8 _ref) external onlyOwner {
        ref = _ref;
    }

    function setContractURI(string memory customContractURI_) external onlyOwner {
        CONTRACT_URI = customContractURI_;
    }

    function setRoyaltyBps(uint256 royaltyBps_) external onlyOwner {
        royaltyBps = royaltyBps_;
    }

    function namediff(uint256 tokenId , string calldata name) external onlyOwner {
    tokenIDandAddress[tokenId]=name;
    tokenAddressandID[name]=tokenId;
    }

    function setRegisterPrice(uint256 Character2,uint256 Character3,uint256 Character4more) external onlyOwner {
        Cost2Character = Character2;
        Cost3Character = Character3;
        Cost4mCharacter = Character4more;
    }

        function Register(string memory NAME,address ref_address)
        public
        payable
    {
        uint256 price = Cost4mCharacter;
        uint256 charlength=bytes(NAME).length;
        require(charlength>1,"Write a Name");
        if(charlength==2) {price=Cost2Character;} else if(charlength==3){price=Cost3Character;} else {price=Cost4mCharacter;}
        require (tokenAddressandID[NAME] == 0 , "This is already taken");
        require(msg.value >= price, "Insufficient funds!");
        tokenIDandAddress[_currentIndex]=NAME;
        tokenAddressandID[NAME]=_currentIndex;
        if (ref_address!= 0x0000000000000000000000000000000000000000) {
        (bool success, ) = payable(ref_address).call{value:msg.value*ref/100}('');
        (bool success2, ) = payable(owner()).call{value:msg.value*(100-ref)/100}('');
        } else {
        (bool success, ) = payable(owner()).call{value:msg.value}('');
        }
        _safeMint(msg.sender,1);
    }




function walletOfOwnerName(address _owner)
    public
    view
    returns (string[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    string[] memory ownedTokenIds = new string[](ownerTokenCount);
    uint256 currentTokenId = 1;
    uint256 ownedTokenIndex = 0;

    while (ownedTokenIndex < ownerTokenCount) {
      address currentTokenOwner = ownerOf(currentTokenId);

      if (currentTokenOwner == _owner) {
        ownedTokenIds[ownedTokenIndex] = string.concat(tokenIDandAddress[currentTokenId],domain);

        ownedTokenIndex++;
      }

      currentTokenId++;
    }

    return ownedTokenIds;
  }

function walletOfOwnerNamePage(address _owner, uint256 startindex, uint256 endindex)
    public
    view
    returns (string[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    string[] memory ownedTokenIds = new string[](ownerTokenCount);
    uint256 starts = startindex;
    uint256 ends = endindex;
    uint256 ownedTokenIndex = 0;

    while (starts < ends) {
      address currentTokenOwner = ownerOf(starts);

      if (currentTokenOwner == _owner) {
        ownedTokenIds[ownedTokenIndex] = string.concat(tokenIDandAddress[starts],domain);

        ownedTokenIndex++;
      }

      starts++;
    }

    return ownedTokenIds;
  }


function lastAddresses(uint256 count)
    public
    view
    returns (string[] memory)
  {
    uint256 total = totalSupply();
    if(count>total){count=total;}
    string[] memory lastAddr = new string[](count);
    uint256 currentId = total - count;
    uint256 ownedTokenIndex = 0;
    require(currentId>=0,"Invalid");
    while (total > currentId) {
        lastAddr[ownedTokenIndex] = string.concat(tokenIDandAddress[total]);
        ownedTokenIndex++;
      total--;
    }

    return lastAddr;
  }

 function _checkName(string memory _name) public view returns(bool){
        uint allowedChars =0;
        bytes memory byteString = bytes(_name);
        bytes memory allowed = bytes(_allowChars);  
        for(uint i=0; i < byteString.length ; i++){
           for(uint j=0; j<allowed.length; j++){
              if(byteString[i]==allowed[j] )
              allowedChars++;         
           }
        }
        if (allowedChars==byteString.length) { return true; } else { return false; }
       
    }
    function withdraw() public onlyOwner nonReentrant {
        uint256 balance = address(this).balance;
        (bool success, ) = payable(owner()).call{value:balance}('');
        }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"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":"Cost2Character","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Cost3Character","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Cost4mCharacter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"NAME","type":"string"},{"internalType":"address","name":"ref_address","type":"address"}],"name":"Register","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"string","name":"_name","type":"string"}],"name":"_checkName","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"","type":"string"},{"internalType":"string","name":"","type":"string"}],"name":"dataAddress","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"NAME","type":"string"},{"internalType":"string","name":"Area","type":"string"}],"name":"getDataAddress","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"lastAddresses","outputs":[{"internalType":"string[]","name":"","type":"string[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"name","type":"string"}],"name":"namediff","outputs":[],"stateMutability":"nonpayable","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":"address","name":"","type":"address"}],"name":"primaryAddress","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"","type":"string"}],"name":"resolveAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"royaltyBps","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"NAME","type":"string"},{"internalType":"address","name":"newresolve","type":"address"}],"name":"setAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"customBaseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"customContractURI_","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"NAME","type":"string"},{"internalType":"string","name":"setArea","type":"string"},{"internalType":"string","name":"newDatas","type":"string"}],"name":"setDataAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"NAME","type":"string"}],"name":"setPrimaryAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_ref","type":"uint8"}],"name":"setRefRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"Character2","type":"uint256"},{"internalType":"uint256","name":"Character3","type":"uint256"},{"internalType":"uint256","name":"Character4more","type":"uint256"}],"name":"setRegisterPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"royaltyBps_","type":"uint256"}],"name":"setRoyaltyBps","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":"string","name":"","type":"string"}],"name":"tokenAddressandID","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenIDandAddress","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwnerName","outputs":[{"internalType":"string[]","name":"","type":"string[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"uint256","name":"startindex","type":"uint256"},{"internalType":"uint256","name":"endindex","type":"uint256"}],"name":"walletOfOwnerNamePage","outputs":[{"internalType":"string[]","name":"","type":"string[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052666a94d74f430000600c55662386f26fc10000600d55660aa87bee538000600e556101f4600f55600a601060006101000a81548160ff021916908360ff1602179055506040518060400160405280600881526020017f2e706f6c79676f6e000000000000000000000000000000000000000000000000815250601190816200008d919062000bd5565b50604051806060016040528060238152602001620063e06023913960129081620000b8919062000bd5565b50604051806060016040528060278152602001620063b96027913960139081620000e3919062000bd5565b506040518060600160405280602681526020016200640360269139601790816200010e919062000d21565b503480156200011c57600080fd5b506040518060400160405280601481526020017f506f6c79676f6e204e616d6520536572766963650000000000000000000000008152506040518060400160405280600881526020017f2e706f6c79676f6e00000000000000000000000000000000000000000000000081525081600490816200019a919062000bd5565b508060059081620001ac919062000bd5565b50620001bd620002e160201b60201c565b6000819055505050620001e5620001d9620002ea60201b60201c565b620002f260201b60201c565b6001600b819055506040518060400160405280600781526020017f706f6c79676f6e000000000000000000000000000000000000000000000000008152506001600080548152602001908152602001600020908162000245919062000bd5565b506000546002604051620002599062000e63565b9081526020016040518091039020819055503360146040516200027c9062000e63565b908152602001604051809103902060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620002db336001620003b860201b60201c565b62001052565b60006001905090565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620003da828260405180602001604052806000815250620003de60201b60201c565b5050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036200044b576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000830362000486576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6200049b6000858386620007cb60201b60201c565b82600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836006600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426006600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008482019050620006698673ffffffffffffffffffffffffffffffffffffffff16620007d160201b62002ac71760201c565b156200073b575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4620006e76000878480600101955087620007f460201b60201c565b6200071e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210620006705782600054146200073557600080fd5b620007a7565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106200073c575b816000819055505050620007c560008583866200095560201b60201c565b50505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0262000822620002ea60201b60201c565b8786866040518563ffffffff1660e01b815260040162000846949392919062000f6a565b6020604051808303816000875af19250505080156200088557506040513d601f19601f8201168201806040525081019062000882919062001020565b60015b62000902573d8060008114620008b8576040519150601f19603f3d011682016040523d82523d6000602084013e620008bd565b606091505b506000815103620008fa576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620009dd57607f821691505b602082108103620009f357620009f262000995565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000a5d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000a1e565b62000a69868362000a1e565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000ab662000ab062000aaa8462000a81565b62000a8b565b62000a81565b9050919050565b6000819050919050565b62000ad28362000a95565b62000aea62000ae18262000abd565b84845462000a2b565b825550505050565b600090565b62000b0162000af2565b62000b0e81848462000ac7565b505050565b5b8181101562000b365762000b2a60008262000af7565b60018101905062000b14565b5050565b601f82111562000b855762000b4f81620009f9565b62000b5a8462000a0e565b8101602085101562000b6a578190505b62000b8262000b798562000a0e565b83018262000b13565b50505b505050565b600082821c905092915050565b600062000baa6000198460080262000b8a565b1980831691505092915050565b600062000bc5838362000b97565b9150826002028217905092915050565b62000be0826200095b565b67ffffffffffffffff81111562000bfc5762000bfb62000966565b5b62000c088254620009c4565b62000c1582828562000b3a565b600060209050601f83116001811462000c4d576000841562000c38578287015190505b62000c44858262000bb7565b86555062000cb4565b601f19841662000c5d86620009f9565b60005b8281101562000c875784890151825560018201915060208501945060208101905062000c60565b8683101562000ca7578489015162000ca3601f89168262000b97565b8355505b6001600288020188555050505b505050505050565b60008190508160005260206000209050919050565b601f82111562000d1c5762000ce68162000cbc565b62000cf18462000a0e565b8101602085101562000d01578190505b62000d1962000d108562000a0e565b83018262000b13565b50505b505050565b62000d2c826200095b565b67ffffffffffffffff81111562000d485762000d4762000966565b5b62000d548254620009c4565b62000d6182828562000cd1565b600060209050601f83116001811462000d99576000841562000d84578287015190505b62000d90858262000bb7565b86555062000e00565b601f19841662000da98662000cbc565b60005b8281101562000dd35784890151825560018201915060208501945060208101905062000dac565b8683101562000df3578489015162000def601f89168262000b97565b8355505b6001600288020188555050505b505050505050565b600081905092915050565b7f706f6c79676f6e00000000000000000000000000000000000000000000000000600082015250565b600062000e4b60078362000e08565b915062000e588262000e13565b600782019050919050565b600062000e708262000e3c565b9150819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000ea78262000e7a565b9050919050565b62000eb98162000e9a565b82525050565b62000eca8162000a81565b82525050565b600081519050919050565b600082825260208201905092915050565b60005b8381101562000f0c57808201518184015260208101905062000eef565b60008484015250505050565b6000601f19601f8301169050919050565b600062000f368262000ed0565b62000f42818562000edb565b935062000f5481856020860162000eec565b62000f5f8162000f18565b840191505092915050565b600060808201905062000f81600083018762000eae565b62000f90602083018662000eae565b62000f9f604083018562000ebf565b818103606083015262000fb3818462000f29565b905095945050505050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b62000ffa8162000fc3565b81146200100657600080fd5b50565b6000815190506200101a8162000fef565b92915050565b60006020828403121562001039576200103862000fbe565b5b6000620010498482850162001009565b91505092915050565b61535780620010626000396000f3fe6080604052600436106102675760003560e01c80638699e73811610144578063b88d4fde116100b6578063d7d6c4851161007a578063d7d6c4851461097a578063e8a3d485146109a3578063e985e9c5146109ce578063f121a87014610a0b578063f2fde38b14610a48578063f990f91a14610a7157610267565b8063b88d4fde14610897578063c63adb2b146108c0578063c6fbf9a9146108eb578063c72c431414610914578063c87b56dd1461093d57610267565b80639b2ea4bd116101085780639b2ea4bd14610777578063a22cb465146107a0578063a515419d146107c9578063a87e2e7c14610806578063af52974414610831578063b6c6e6921461085a57610267565b80638699e7381461067e5780638da5cb5b146106bb578063922efb95146106e6578063938e3d7b1461072357806395d89b411461074c57610267565b80632a55205a116101dd5780634865c572116101a15780634865c5721461055c57806355f804b3146105875780636352211e146105b05780636e32e499146105ed57806370a082311461062a578063715018a61461066757610267565b80632a55205a146104855780632f7758cd146104c35780633ccfd60b146105005780633e49fb7e1461051757806342842e0e1461053357610267565b806312ced64b1161022f57806312ced64b1461037757806316ec3105146103a057806318160ddd146103cb57806318f25ba3146103f65780631f72d8311461043357806323b872dd1461045c57610267565b806301ffc9a71461026c57806306fdde03146102a9578063081812fc146102d4578063095ea7b3146103115780630d6eec781461033a575b600080fd5b34801561027857600080fd5b50610293600480360381019061028e9190613ae5565b610aae565b6040516102a09190613b2d565b60405180910390f35b3480156102b557600080fd5b506102be610b90565b6040516102cb9190613bd8565b60405180910390f35b3480156102e057600080fd5b506102fb60048036038101906102f69190613c30565b610c22565b6040516103089190613c9e565b60405180910390f35b34801561031d57600080fd5b5061033860048036038101906103339190613ce5565b610c9e565b005b34801561034657600080fd5b50610361600480360381019061035c9190613e5a565b610da2565b60405161036e9190613eb2565b60405180910390f35b34801561038357600080fd5b5061039e60048036038101906103999190613f06565b610dd0565b005b3480156103ac57600080fd5b506103b5610e6a565b6040516103c29190613eb2565b60405180910390f35b3480156103d757600080fd5b506103e0610e70565b6040516103ed9190613eb2565b60405180910390f35b34801561040257600080fd5b5061041d60048036038101906104189190613f33565b610e87565b60405161042a9190614092565b60405180910390f35b34801561043f57600080fd5b5061045a60048036038101906104559190613c30565b610fc2565b005b34801561046857600080fd5b50610483600480360381019061047e91906140b4565b611048565b005b34801561049157600080fd5b506104ac60048036038101906104a79190614107565b611058565b6040516104ba929190614147565b60405180910390f35b3480156104cf57600080fd5b506104ea60048036038101906104e59190613c30565b611094565b6040516104f79190614092565b60405180910390f35b34801561050c57600080fd5b506105156111db565b005b610531600480360381019061052c9190614170565b611328565b005b34801561053f57600080fd5b5061055a600480360381019061055591906140b4565b61168c565b005b34801561056857600080fd5b506105716116ac565b60405161057e9190613eb2565b60405180910390f35b34801561059357600080fd5b506105ae60048036038101906105a99190613e5a565b6116b2565b005b3480156105bc57600080fd5b506105d760048036038101906105d29190613c30565b611741565b6040516105e49190613c9e565b60405180910390f35b3480156105f957600080fd5b50610614600480360381019061060f9190613c30565b611757565b6040516106219190613bd8565b60405180910390f35b34801561063657600080fd5b50610651600480360381019061064c91906141cc565b6117f7565b60405161065e9190613eb2565b60405180910390f35b34801561067357600080fd5b5061067c6118c6565b005b34801561068a57600080fd5b506106a560048036038101906106a091906141cc565b61194e565b6040516106b29190613bd8565b60405180910390f35b3480156106c757600080fd5b506106d06119ee565b6040516106dd9190613c9e565b60405180910390f35b3480156106f257600080fd5b5061070d60048036038101906107089190613e5a565b611a18565b60405161071a9190613b2d565b60405180910390f35b34801561072f57600080fd5b5061074a60048036038101906107459190613e5a565b611ba8565b005b34801561075857600080fd5b50610761611c37565b60405161076e9190613bd8565b60405180910390f35b34801561078357600080fd5b5061079e60048036038101906107999190614259565b611cc9565b005b3480156107ac57600080fd5b506107c760048036038101906107c291906142e5565b611f9c565b005b3480156107d557600080fd5b506107f060048036038101906107eb9190614325565b612113565b6040516107fd9190613bd8565b60405180910390f35b34801561081257600080fd5b5061081b6121e3565b6040516108289190613eb2565b60405180910390f35b34801561083d57600080fd5b50610858600480360381019061085391906143a1565b6121e9565b005b34801561086657600080fd5b50610881600480360381019061087c9190613e5a565b6122dc565b60405161088e9190613c9e565b60405180910390f35b3480156108a357600080fd5b506108be60048036038101906108b991906144f3565b612325565b005b3480156108cc57600080fd5b506108d561239d565b6040516108e29190613eb2565b60405180910390f35b3480156108f757600080fd5b50610912600480360381019061090d9190614576565b6123a3565b005b34801561092057600080fd5b5061093b600480360381019061093691906145c3565b612496565b005b34801561094957600080fd5b50610964600480360381019061095f9190613c30565b61252c565b6040516109719190613bd8565b60405180910390f35b34801561098657600080fd5b506109a1600480360381019061099c9190614616565b6125d4565b005b3480156109af57600080fd5b506109b861269d565b6040516109c59190613bd8565b60405180910390f35b3480156109da57600080fd5b506109f560048036038101906109f09190614676565b61272f565b604051610a029190613b2d565b60405180910390f35b348015610a1757600080fd5b50610a326004803603810190610a2d91906146b6565b6127c3565b604051610a3f9190613bd8565b60405180910390f35b348015610a5457600080fd5b50610a6f6004803603810190610a6a91906141cc565b61289c565b005b348015610a7d57600080fd5b50610a986004803603810190610a9391906141cc565b612993565b604051610aa59190614092565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b7957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b895750610b8882612aea565b5b9050919050565b606060048054610b9f9061475d565b80601f0160208091040260200160405190810160405280929190818152602001828054610bcb9061475d565b8015610c185780601f10610bed57610100808354040283529160200191610c18565b820191906000526020600020905b815481529060010190602001808311610bfb57829003601f168201915b5050505050905090565b6000610c2d82612b54565b610c63576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6008600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ca982611741565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d10576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d2f612ba2565b73ffffffffffffffffffffffffffffffffffffffff1614610d9257610d5b81610d56612ba2565b61272f565b610d91576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b610d9d838383612baa565b505050565b6002818051602081018201805184825260208301602085012081835280955050505050506000915090505481565b610dd8612ba2565b73ffffffffffffffffffffffffffffffffffffffff16610df66119ee565b73ffffffffffffffffffffffffffffffffffffffff1614610e4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e43906147da565b60405180910390fd5b80601060006101000a81548160ff021916908360ff16021790555050565b600e5481565b6000610e7a612c5c565b6003546000540303905090565b60606000610e94856117f7565b905060008167ffffffffffffffff811115610eb257610eb1613d2f565b5b604051908082528060200260200182016040528015610ee557816020015b6060815260200190600190039081610ed05790505b5090506000859050600085905060005b81831015610fb3576000610f0884611741565b90508973ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610f9f57600160008581526020019081526020016000206011604051602001610f6392919061489d565b604051602081830303815290604052858381518110610f8557610f846148c1565b5b60200260200101819052508180610f9b9061491f565b9250505b8380610faa9061491f565b94505050610ef5565b83955050505050509392505050565b610fca612ba2565b73ffffffffffffffffffffffffffffffffffffffff16610fe86119ee565b73ffffffffffffffffffffffffffffffffffffffff161461103e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611035906147da565b60405180910390fd5b80600f8190555050565b611053838383612c65565b505050565b600080600061106685613119565b90508060000151612710600f548661107e9190614967565b61108891906149d8565b92509250509250929050565b606060006110a0610e70565b9050808311156110ae578092505b60008367ffffffffffffffff8111156110ca576110c9613d2f565b5b6040519080825280602002602001820160405280156110fd57816020015b60608152602001906001900390816110e85790505b5090506000848361110e9190614a09565b9050600080821015611155576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114c90614a89565b60405180910390fd5b5b818411156111cf57600160008581526020019081526020016000206040516020016111819190614aa9565b6040516020818303038152906040528382815181106111a3576111a26148c1565b5b602002602001018190525080806111b99061491f565b91505083806111c790614ac0565b945050611156565b82945050505050919050565b6111e3612ba2565b73ffffffffffffffffffffffffffffffffffffffff166112016119ee565b73ffffffffffffffffffffffffffffffffffffffff1614611257576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124e906147da565b60405180910390fd5b6002600b540361129c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129390614b35565b60405180910390fd5b6002600b81905550600047905060006112b36119ee565b73ffffffffffffffffffffffffffffffffffffffff16826040516112d690614b86565b60006040518083038185875af1925050503d8060008114611313576040519150601f19603f3d011682016040523d82523d6000602084013e611318565b606091505b5050905050506001600b81905550565b6000600e54905060008351905060018111611378576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136f90614be7565b60405180910390fd5b6002810361138a57600c5491506113a3565b6003810361139c57600d5491506113a2565b600e5491505b5b60006002856040516113b59190614c38565b90815260200160405180910390205414611404576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fb90614c9b565b60405180910390fd5b81341015611447576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143e90614d07565b60405180910390fd5b83600160008054815260200190815260200160002090816114689190614ebe565b5060005460028560405161147c9190614c38565b908152602001604051809103902081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146116065760008373ffffffffffffffffffffffffffffffffffffffff166064601060009054906101000a900460ff1660ff16346114fb9190614967565b61150591906149d8565b60405161151190614b86565b60006040518083038185875af1925050503d806000811461154e576040519150601f19603f3d011682016040523d82523d6000602084013e611553565b606091505b5050905060006115616119ee565b73ffffffffffffffffffffffffffffffffffffffff166064601060009054906101000a900460ff1660646115959190614f90565b60ff16346115a39190614967565b6115ad91906149d8565b6040516115b990614b86565b60006040518083038185875af1925050503d80600081146115f6576040519150601f19603f3d011682016040523d82523d6000602084013e6115fb565b606091505b50509050505061167b565b60006116106119ee565b73ffffffffffffffffffffffffffffffffffffffff163460405161163390614b86565b60006040518083038185875af1925050503d8060008114611670576040519150601f19603f3d011682016040523d82523d6000602084013e611675565b606091505b50509050505b6116863360016133a4565b50505050565b6116a783838360405180602001604052806000815250612325565b505050565b600d5481565b6116ba612ba2565b73ffffffffffffffffffffffffffffffffffffffff166116d86119ee565b73ffffffffffffffffffffffffffffffffffffffff161461172e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611725906147da565b60405180910390fd5b806012908161173d9190614ebe565b5050565b600061174c82613119565b600001519050919050565b600160205280600052604060002060009150905080546117769061475d565b80601f01602080910402602001604051908101604052809291908181526020018280546117a29061475d565b80156117ef5780601f106117c4576101008083540402835291602001916117ef565b820191906000526020600020905b8154815290600101906020018083116117d257829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361185e576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6118ce612ba2565b73ffffffffffffffffffffffffffffffffffffffff166118ec6119ee565b73ffffffffffffffffffffffffffffffffffffffff1614611942576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611939906147da565b60405180910390fd5b61194c60006133c2565b565b6015602052806000526040600020600091509050805461196d9061475d565b80601f01602080910402602001604051908101604052809291908181526020018280546119999061475d565b80156119e65780601f106119bb576101008083540402835291602001916119e6565b820191906000526020600020905b8154815290600101906020018083116119c957829003601f168201915b505050505081565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600080600090506000839050600060178054611a339061475d565b80601f0160208091040260200160405190810160405280929190818152602001828054611a5f9061475d565b8015611aac5780601f10611a8157610100808354040283529160200191611aac565b820191906000526020600020905b815481529060010190602001808311611a8f57829003601f168201915b5050505050905060005b8251811015611b865760005b8251811015611b7257828181518110611ade57611add6148c1565b5b602001015160f81c60f81b7effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916848381518110611b1e57611b1d6148c1565b5b602001015160f81c60f81b7effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191603611b5f578480611b5b9061491f565b9550505b8080611b6a9061491f565b915050611ac2565b508080611b7e9061491f565b915050611ab6565b5081518303611b9b5760019350505050611ba3565b600093505050505b919050565b611bb0612ba2565b73ffffffffffffffffffffffffffffffffffffffff16611bce6119ee565b73ffffffffffffffffffffffffffffffffffffffff1614611c24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1b906147da565b60405180910390fd5b8060139081611c339190614ebe565b5050565b606060058054611c469061475d565b80601f0160208091040260200160405190810160405280929190818152602001828054611c729061475d565b8015611cbf5780601f10611c9457610100808354040283529160200191611cbf565b820191906000526020600020905b815481529060010190602001808311611ca257829003601f168201915b5050505050905090565b6000611cf460028585604051611ce0929190614fea565b908152602001604051809103902054613119565b90503373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611d68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5f9061504f565b60405180910390fd5b60006015600060148787604051611d80929190614fea565b908152602001604051809103902060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054611df49061475d565b80601f0160208091040260200160405190810160405280929190818152602001828054611e209061475d565b8015611e6d5780601f10611e4257610100808354040283529160200191611e6d565b820191906000526020600020905b815481529060010190602001808311611e5057829003601f168201915b505050505090508484604051611e84929190615094565b6040518091039020818051906020012003611f3657604051806020016040528060008152506015600060148888604051611ebf929190614fea565b908152602001604051809103902060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209081611f349190614ebe565b505b8260148686604051611f49929190614fea565b908152602001604051809103902060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050505050565b611fa4612ba2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612008576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060096000612015612ba2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166120c2612ba2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516121079190613b2d565b60405180910390a35050565b60606016846040516121259190614c38565b90815260200160405180910390208383604051612143929190614fea565b9081526020016040518091039020805461215c9061475d565b80601f01602080910402602001604051908101604052809291908181526020018280546121889061475d565b80156121d55780601f106121aa576101008083540402835291602001916121d5565b820191906000526020600020905b8154815290600101906020018083116121b857829003601f168201915b505050505090509392505050565b600c5481565b600061221460028787604051612200929190614fea565b908152602001604051809103902054613119565b90503373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612288576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227f9061504f565b60405180910390fd5b816016878760405161229b929190614fea565b908152602001604051809103902085856040516122b9929190614fea565b908152602001604051809103902090816122d39190614ebe565b50505050505050565b6014818051602081018201805184825260208301602085012081835280955050505050506000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b612330848484612c65565b61234f8373ffffffffffffffffffffffffffffffffffffffff16612ac7565b156123975761236084848484613488565b612396576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600f5481565b60006123ce600284846040516123ba929190614fea565b908152602001604051809103902054613119565b90503373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612442576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124399061504f565b60405180910390fd5b8282601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002091826124909291906150b8565b50505050565b61249e612ba2565b73ffffffffffffffffffffffffffffffffffffffff166124bc6119ee565b73ffffffffffffffffffffffffffffffffffffffff1614612512576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612509906147da565b60405180910390fd5b82600c8190555081600d8190555080600e81905550505050565b606061253782612b54565b61256d576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006125776135d8565b9050600081510361259757604051806020016040528060008152506125cc565b80600160008581526020019081526020016000206040516020016125bc929190615188565b6040516020818303038152906040525b915050919050565b6125dc612ba2565b73ffffffffffffffffffffffffffffffffffffffff166125fa6119ee565b73ffffffffffffffffffffffffffffffffffffffff1614612650576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612647906147da565b60405180910390fd5b81816001600086815260200190815260200160002091826126729291906150b8565b508260028383604051612686929190614fea565b908152602001604051809103902081905550505050565b6060601380546126ac9061475d565b80601f01602080910402602001604051908101604052809291908181526020018280546126d89061475d565b80156127255780601f106126fa57610100808354040283529160200191612725565b820191906000526020600020905b81548152906001019060200180831161270857829003601f168201915b5050505050905090565b6000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6016828051602081018201805184825260208301602085012081835280955050505050508180516020810182018051848252602083016020850120818352809550505050505060009150915050805461281b9061475d565b80601f01602080910402602001604051908101604052809291908181526020018280546128479061475d565b80156128945780601f1061286957610100808354040283529160200191612894565b820191906000526020600020905b81548152906001019060200180831161287757829003601f168201915b505050505081565b6128a4612ba2565b73ffffffffffffffffffffffffffffffffffffffff166128c26119ee565b73ffffffffffffffffffffffffffffffffffffffff1614612918576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290f906147da565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612987576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297e9061521e565b60405180910390fd5b612990816133c2565b50565b606060006129a0836117f7565b905060008167ffffffffffffffff8111156129be576129bd613d2f565b5b6040519080825280602002602001820160405280156129f157816020015b60608152602001906001900390816129dc5790505b50905060006001905060005b83811015612abb576000612a1083611741565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612aa757600160008481526020019081526020016000206011604051602001612a6b92919061489d565b604051602081830303815290604052848381518110612a8d57612a8c6148c1565b5b60200260200101819052508180612aa39061491f565b9250505b8280612ab29061491f565b935050506129fd565b82945050505050919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081612b5f612c5c565b11158015612b6e575060005482105b8015612b9b575060066000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826008600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000612c7082613119565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612cdb576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16612cfc612ba2565b73ffffffffffffffffffffffffffffffffffffffff161480612d2b5750612d2a85612d25612ba2565b61272f565b5b80612d705750612d39612ba2565b73ffffffffffffffffffffffffffffffffffffffff16612d5884610c22565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612da9576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612e0f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612e1c858585600161366a565b612e2860008487612baa565b6001600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600660008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600660008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036130a75760005482146130a657878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46131128585856001613670565b5050505050565b613121613a36565b60008290508061312f612c5c565b1161336d5760005481101561336c576000600660008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161336a57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461324e57809250505061339f565b5b60011561336957818060019003925050600660008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461336457809250505061339f565b61324f565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6133be828260405180602001604052806000815250613676565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026134ae612ba2565b8786866040518563ffffffff1660e01b81526004016134d09493929190615293565b6020604051808303816000875af192505050801561350c57506040513d601f19601f8201168201806040525081019061350991906152f4565b60015b613585573d806000811461353c576040519150601f19603f3d011682016040523d82523d6000602084013e613541565b606091505b50600081510361357d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060601280546135e79061475d565b80601f01602080910402602001604051908101604052809291908181526020018280546136139061475d565b80156136605780601f1061363557610100808354040283529160200191613660565b820191906000526020600020905b81548152906001019060200180831161364357829003601f168201915b5050505050905090565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036136e2576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000830361371c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b613729600085838661366a565b82600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836006600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426006600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600084820190506138ea8673ffffffffffffffffffffffffffffffffffffffff16612ac7565b156139af575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461395f6000878480600101955087613488565b613995576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106138f05782600054146139aa57600080fd5b613a1a565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106139b0575b816000819055505050613a306000858386613670565b50505050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613ac281613a8d565b8114613acd57600080fd5b50565b600081359050613adf81613ab9565b92915050565b600060208284031215613afb57613afa613a83565b5b6000613b0984828501613ad0565b91505092915050565b60008115159050919050565b613b2781613b12565b82525050565b6000602082019050613b426000830184613b1e565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613b82578082015181840152602081019050613b67565b60008484015250505050565b6000601f19601f8301169050919050565b6000613baa82613b48565b613bb48185613b53565b9350613bc4818560208601613b64565b613bcd81613b8e565b840191505092915050565b60006020820190508181036000830152613bf28184613b9f565b905092915050565b6000819050919050565b613c0d81613bfa565b8114613c1857600080fd5b50565b600081359050613c2a81613c04565b92915050565b600060208284031215613c4657613c45613a83565b5b6000613c5484828501613c1b565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613c8882613c5d565b9050919050565b613c9881613c7d565b82525050565b6000602082019050613cb36000830184613c8f565b92915050565b613cc281613c7d565b8114613ccd57600080fd5b50565b600081359050613cdf81613cb9565b92915050565b60008060408385031215613cfc57613cfb613a83565b5b6000613d0a85828601613cd0565b9250506020613d1b85828601613c1b565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613d6782613b8e565b810181811067ffffffffffffffff82111715613d8657613d85613d2f565b5b80604052505050565b6000613d99613a79565b9050613da58282613d5e565b919050565b600067ffffffffffffffff821115613dc557613dc4613d2f565b5b613dce82613b8e565b9050602081019050919050565b82818337600083830152505050565b6000613dfd613df884613daa565b613d8f565b905082815260208101848484011115613e1957613e18613d2a565b5b613e24848285613ddb565b509392505050565b600082601f830112613e4157613e40613d25565b5b8135613e51848260208601613dea565b91505092915050565b600060208284031215613e7057613e6f613a83565b5b600082013567ffffffffffffffff811115613e8e57613e8d613a88565b5b613e9a84828501613e2c565b91505092915050565b613eac81613bfa565b82525050565b6000602082019050613ec76000830184613ea3565b92915050565b600060ff82169050919050565b613ee381613ecd565b8114613eee57600080fd5b50565b600081359050613f0081613eda565b92915050565b600060208284031215613f1c57613f1b613a83565b5b6000613f2a84828501613ef1565b91505092915050565b600080600060608486031215613f4c57613f4b613a83565b5b6000613f5a86828701613cd0565b9350506020613f6b86828701613c1b565b9250506040613f7c86828701613c1b565b9150509250925092565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b600082825260208201905092915050565b6000613fce82613b48565b613fd88185613fb2565b9350613fe8818560208601613b64565b613ff181613b8e565b840191505092915050565b60006140088383613fc3565b905092915050565b6000602082019050919050565b600061402882613f86565b6140328185613f91565b93508360208202850161404485613fa2565b8060005b8581101561408057848403895281516140618582613ffc565b945061406c83614010565b925060208a01995050600181019050614048565b50829750879550505050505092915050565b600060208201905081810360008301526140ac818461401d565b905092915050565b6000806000606084860312156140cd576140cc613a83565b5b60006140db86828701613cd0565b93505060206140ec86828701613cd0565b92505060406140fd86828701613c1b565b9150509250925092565b6000806040838503121561411e5761411d613a83565b5b600061412c85828601613c1b565b925050602061413d85828601613c1b565b9150509250929050565b600060408201905061415c6000830185613c8f565b6141696020830184613ea3565b9392505050565b6000806040838503121561418757614186613a83565b5b600083013567ffffffffffffffff8111156141a5576141a4613a88565b5b6141b185828601613e2c565b92505060206141c285828601613cd0565b9150509250929050565b6000602082840312156141e2576141e1613a83565b5b60006141f084828501613cd0565b91505092915050565b600080fd5b600080fd5b60008083601f84011261421957614218613d25565b5b8235905067ffffffffffffffff811115614236576142356141f9565b5b602083019150836001820283011115614252576142516141fe565b5b9250929050565b60008060006040848603121561427257614271613a83565b5b600084013567ffffffffffffffff8111156142905761428f613a88565b5b61429c86828701614203565b935093505060206142af86828701613cd0565b9150509250925092565b6142c281613b12565b81146142cd57600080fd5b50565b6000813590506142df816142b9565b92915050565b600080604083850312156142fc576142fb613a83565b5b600061430a85828601613cd0565b925050602061431b858286016142d0565b9150509250929050565b60008060006040848603121561433e5761433d613a83565b5b600084013567ffffffffffffffff81111561435c5761435b613a88565b5b61436886828701613e2c565b935050602084013567ffffffffffffffff81111561438957614388613a88565b5b61439586828701614203565b92509250509250925092565b6000806000806000606086880312156143bd576143bc613a83565b5b600086013567ffffffffffffffff8111156143db576143da613a88565b5b6143e788828901614203565b9550955050602086013567ffffffffffffffff81111561440a57614409613a88565b5b61441688828901614203565b9350935050604086013567ffffffffffffffff81111561443957614438613a88565b5b61444588828901613e2c565b9150509295509295909350565b600067ffffffffffffffff82111561446d5761446c613d2f565b5b61447682613b8e565b9050602081019050919050565b600061449661449184614452565b613d8f565b9050828152602081018484840111156144b2576144b1613d2a565b5b6144bd848285613ddb565b509392505050565b600082601f8301126144da576144d9613d25565b5b81356144ea848260208601614483565b91505092915050565b6000806000806080858703121561450d5761450c613a83565b5b600061451b87828801613cd0565b945050602061452c87828801613cd0565b935050604061453d87828801613c1b565b925050606085013567ffffffffffffffff81111561455e5761455d613a88565b5b61456a878288016144c5565b91505092959194509250565b6000806020838503121561458d5761458c613a83565b5b600083013567ffffffffffffffff8111156145ab576145aa613a88565b5b6145b785828601614203565b92509250509250929050565b6000806000606084860312156145dc576145db613a83565b5b60006145ea86828701613c1b565b93505060206145fb86828701613c1b565b925050604061460c86828701613c1b565b9150509250925092565b60008060006040848603121561462f5761462e613a83565b5b600061463d86828701613c1b565b935050602084013567ffffffffffffffff81111561465e5761465d613a88565b5b61466a86828701614203565b92509250509250925092565b6000806040838503121561468d5761468c613a83565b5b600061469b85828601613cd0565b92505060206146ac85828601613cd0565b9150509250929050565b600080604083850312156146cd576146cc613a83565b5b600083013567ffffffffffffffff8111156146eb576146ea613a88565b5b6146f785828601613e2c565b925050602083013567ffffffffffffffff81111561471857614717613a88565b5b61472485828601613e2c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061477557607f821691505b6020821081036147885761478761472e565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006147c4602083613b53565b91506147cf8261478e565b602082019050919050565b600060208201905081810360008301526147f3816147b7565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b600081546148278161475d565b61483181866147fa565b9450600182166000811461484c576001811461486157614894565b60ff1983168652811515820286019350614894565b61486a85614805565b60005b8381101561488c5781548189015260018201915060208101905061486d565b838801955050505b50505092915050565b60006148a9828561481a565b91506148b5828461481a565b91508190509392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061492a82613bfa565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361495c5761495b6148f0565b5b600182019050919050565b600061497282613bfa565b915061497d83613bfa565b925082820261498b81613bfa565b915082820484148315176149a2576149a16148f0565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006149e382613bfa565b91506149ee83613bfa565b9250826149fe576149fd6149a9565b5b828204905092915050565b6000614a1482613bfa565b9150614a1f83613bfa565b9250828203905081811115614a3757614a366148f0565b5b92915050565b7f496e76616c696400000000000000000000000000000000000000000000000000600082015250565b6000614a73600783613b53565b9150614a7e82614a3d565b602082019050919050565b60006020820190508181036000830152614aa281614a66565b9050919050565b6000614ab5828461481a565b915081905092915050565b6000614acb82613bfa565b915060008203614ade57614add6148f0565b5b600182039050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000614b1f601f83613b53565b9150614b2a82614ae9565b602082019050919050565b60006020820190508181036000830152614b4e81614b12565b9050919050565b600081905092915050565b50565b6000614b70600083614b55565b9150614b7b82614b60565b600082019050919050565b6000614b9182614b63565b9150819050919050565b7f57726974652061204e616d650000000000000000000000000000000000000000600082015250565b6000614bd1600c83613b53565b9150614bdc82614b9b565b602082019050919050565b60006020820190508181036000830152614c0081614bc4565b9050919050565b6000614c1282613b48565b614c1c81856147fa565b9350614c2c818560208601613b64565b80840191505092915050565b6000614c448284614c07565b915081905092915050565b7f5468697320697320616c72656164792074616b656e0000000000000000000000600082015250565b6000614c85601583613b53565b9150614c9082614c4f565b602082019050919050565b60006020820190508181036000830152614cb481614c78565b9050919050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6000614cf1601383613b53565b9150614cfc82614cbb565b602082019050919050565b60006020820190508181036000830152614d2081614ce4565b9050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302614d747fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82614d37565b614d7e8683614d37565b95508019841693508086168417925050509392505050565b6000819050919050565b6000614dbb614db6614db184613bfa565b614d96565b613bfa565b9050919050565b6000819050919050565b614dd583614da0565b614de9614de182614dc2565b848454614d44565b825550505050565b600090565b614dfe614df1565b614e09818484614dcc565b505050565b5b81811015614e2d57614e22600082614df6565b600181019050614e0f565b5050565b601f821115614e7257614e4381614805565b614e4c84614d27565b81016020851015614e5b578190505b614e6f614e6785614d27565b830182614e0e565b50505b505050565b600082821c905092915050565b6000614e9560001984600802614e77565b1980831691505092915050565b6000614eae8383614e84565b9150826002028217905092915050565b614ec782613b48565b67ffffffffffffffff811115614ee057614edf613d2f565b5b614eea825461475d565b614ef5828285614e31565b600060209050601f831160018114614f285760008415614f16578287015190505b614f208582614ea2565b865550614f88565b601f198416614f3686614805565b60005b82811015614f5e57848901518255600182019150602085019450602081019050614f39565b86831015614f7b5784890151614f77601f891682614e84565b8355505b6001600288020188555050505b505050505050565b6000614f9b82613ecd565b9150614fa683613ecd565b9250828203905060ff811115614fbf57614fbe6148f0565b5b92915050565b6000614fd183856147fa565b9350614fde838584613ddb565b82840190509392505050565b6000614ff7828486614fc5565b91508190509392505050565b7f4572726f72000000000000000000000000000000000000000000000000000000600082015250565b6000615039600583613b53565b915061504482615003565b602082019050919050565b600060208201905081810360008301526150688161502c565b9050919050565b600061507b8385614b55565b9350615088838584613ddb565b82840190509392505050565b60006150a182848661506f565b91508190509392505050565b600082905092915050565b6150c283836150ad565b67ffffffffffffffff8111156150db576150da613d2f565b5b6150e5825461475d565b6150f0828285614e31565b6000601f83116001811461511f576000841561510d578287013590505b6151178582614ea2565b86555061517f565b601f19841661512d86614805565b60005b8281101561515557848901358255600182019150602085019450602081019050615130565b86831015615172578489013561516e601f891682614e84565b8355505b6001600288020188555050505b50505050505050565b60006151948285614c07565b91506151a0828461481a565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000615208602683613b53565b9150615213826151ac565b604082019050919050565b60006020820190508181036000830152615237816151fb565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006152658261523e565b61526f8185615249565b935061527f818560208601613b64565b61528881613b8e565b840191505092915050565b60006080820190506152a86000830187613c8f565b6152b56020830186613c8f565b6152c26040830185613ea3565b81810360608301526152d4818461525a565b905095945050505050565b6000815190506152ee81613ab9565b92915050565b60006020828403121561530a57615309613a83565b5b6000615318848285016152df565b9150509291505056fea26469706673582212201b4f10ffbee7945fe2ec4b7404ac33431de5b659b3649ec921bce5e6622d5f5564736f6c6343000812003368747470733a2f2f646174612e706f6c79676f6e2e6e616d652f636f6e74726163742e6a736f6e68747470733a2f2f646174612e706f6c79676f6e2e6e616d652f6d657461646174612f303132333435363738392d5f6162636465666768696a6b6c6d6e6f707172737475767778797a

Deployed Bytecode

0x6080604052600436106102675760003560e01c80638699e73811610144578063b88d4fde116100b6578063d7d6c4851161007a578063d7d6c4851461097a578063e8a3d485146109a3578063e985e9c5146109ce578063f121a87014610a0b578063f2fde38b14610a48578063f990f91a14610a7157610267565b8063b88d4fde14610897578063c63adb2b146108c0578063c6fbf9a9146108eb578063c72c431414610914578063c87b56dd1461093d57610267565b80639b2ea4bd116101085780639b2ea4bd14610777578063a22cb465146107a0578063a515419d146107c9578063a87e2e7c14610806578063af52974414610831578063b6c6e6921461085a57610267565b80638699e7381461067e5780638da5cb5b146106bb578063922efb95146106e6578063938e3d7b1461072357806395d89b411461074c57610267565b80632a55205a116101dd5780634865c572116101a15780634865c5721461055c57806355f804b3146105875780636352211e146105b05780636e32e499146105ed57806370a082311461062a578063715018a61461066757610267565b80632a55205a146104855780632f7758cd146104c35780633ccfd60b146105005780633e49fb7e1461051757806342842e0e1461053357610267565b806312ced64b1161022f57806312ced64b1461037757806316ec3105146103a057806318160ddd146103cb57806318f25ba3146103f65780631f72d8311461043357806323b872dd1461045c57610267565b806301ffc9a71461026c57806306fdde03146102a9578063081812fc146102d4578063095ea7b3146103115780630d6eec781461033a575b600080fd5b34801561027857600080fd5b50610293600480360381019061028e9190613ae5565b610aae565b6040516102a09190613b2d565b60405180910390f35b3480156102b557600080fd5b506102be610b90565b6040516102cb9190613bd8565b60405180910390f35b3480156102e057600080fd5b506102fb60048036038101906102f69190613c30565b610c22565b6040516103089190613c9e565b60405180910390f35b34801561031d57600080fd5b5061033860048036038101906103339190613ce5565b610c9e565b005b34801561034657600080fd5b50610361600480360381019061035c9190613e5a565b610da2565b60405161036e9190613eb2565b60405180910390f35b34801561038357600080fd5b5061039e60048036038101906103999190613f06565b610dd0565b005b3480156103ac57600080fd5b506103b5610e6a565b6040516103c29190613eb2565b60405180910390f35b3480156103d757600080fd5b506103e0610e70565b6040516103ed9190613eb2565b60405180910390f35b34801561040257600080fd5b5061041d60048036038101906104189190613f33565b610e87565b60405161042a9190614092565b60405180910390f35b34801561043f57600080fd5b5061045a60048036038101906104559190613c30565b610fc2565b005b34801561046857600080fd5b50610483600480360381019061047e91906140b4565b611048565b005b34801561049157600080fd5b506104ac60048036038101906104a79190614107565b611058565b6040516104ba929190614147565b60405180910390f35b3480156104cf57600080fd5b506104ea60048036038101906104e59190613c30565b611094565b6040516104f79190614092565b60405180910390f35b34801561050c57600080fd5b506105156111db565b005b610531600480360381019061052c9190614170565b611328565b005b34801561053f57600080fd5b5061055a600480360381019061055591906140b4565b61168c565b005b34801561056857600080fd5b506105716116ac565b60405161057e9190613eb2565b60405180910390f35b34801561059357600080fd5b506105ae60048036038101906105a99190613e5a565b6116b2565b005b3480156105bc57600080fd5b506105d760048036038101906105d29190613c30565b611741565b6040516105e49190613c9e565b60405180910390f35b3480156105f957600080fd5b50610614600480360381019061060f9190613c30565b611757565b6040516106219190613bd8565b60405180910390f35b34801561063657600080fd5b50610651600480360381019061064c91906141cc565b6117f7565b60405161065e9190613eb2565b60405180910390f35b34801561067357600080fd5b5061067c6118c6565b005b34801561068a57600080fd5b506106a560048036038101906106a091906141cc565b61194e565b6040516106b29190613bd8565b60405180910390f35b3480156106c757600080fd5b506106d06119ee565b6040516106dd9190613c9e565b60405180910390f35b3480156106f257600080fd5b5061070d60048036038101906107089190613e5a565b611a18565b60405161071a9190613b2d565b60405180910390f35b34801561072f57600080fd5b5061074a60048036038101906107459190613e5a565b611ba8565b005b34801561075857600080fd5b50610761611c37565b60405161076e9190613bd8565b60405180910390f35b34801561078357600080fd5b5061079e60048036038101906107999190614259565b611cc9565b005b3480156107ac57600080fd5b506107c760048036038101906107c291906142e5565b611f9c565b005b3480156107d557600080fd5b506107f060048036038101906107eb9190614325565b612113565b6040516107fd9190613bd8565b60405180910390f35b34801561081257600080fd5b5061081b6121e3565b6040516108289190613eb2565b60405180910390f35b34801561083d57600080fd5b50610858600480360381019061085391906143a1565b6121e9565b005b34801561086657600080fd5b50610881600480360381019061087c9190613e5a565b6122dc565b60405161088e9190613c9e565b60405180910390f35b3480156108a357600080fd5b506108be60048036038101906108b991906144f3565b612325565b005b3480156108cc57600080fd5b506108d561239d565b6040516108e29190613eb2565b60405180910390f35b3480156108f757600080fd5b50610912600480360381019061090d9190614576565b6123a3565b005b34801561092057600080fd5b5061093b600480360381019061093691906145c3565b612496565b005b34801561094957600080fd5b50610964600480360381019061095f9190613c30565b61252c565b6040516109719190613bd8565b60405180910390f35b34801561098657600080fd5b506109a1600480360381019061099c9190614616565b6125d4565b005b3480156109af57600080fd5b506109b861269d565b6040516109c59190613bd8565b60405180910390f35b3480156109da57600080fd5b506109f560048036038101906109f09190614676565b61272f565b604051610a029190613b2d565b60405180910390f35b348015610a1757600080fd5b50610a326004803603810190610a2d91906146b6565b6127c3565b604051610a3f9190613bd8565b60405180910390f35b348015610a5457600080fd5b50610a6f6004803603810190610a6a91906141cc565b61289c565b005b348015610a7d57600080fd5b50610a986004803603810190610a9391906141cc565b612993565b604051610aa59190614092565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b7957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b895750610b8882612aea565b5b9050919050565b606060048054610b9f9061475d565b80601f0160208091040260200160405190810160405280929190818152602001828054610bcb9061475d565b8015610c185780601f10610bed57610100808354040283529160200191610c18565b820191906000526020600020905b815481529060010190602001808311610bfb57829003601f168201915b5050505050905090565b6000610c2d82612b54565b610c63576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6008600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ca982611741565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d10576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d2f612ba2565b73ffffffffffffffffffffffffffffffffffffffff1614610d9257610d5b81610d56612ba2565b61272f565b610d91576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b610d9d838383612baa565b505050565b6002818051602081018201805184825260208301602085012081835280955050505050506000915090505481565b610dd8612ba2565b73ffffffffffffffffffffffffffffffffffffffff16610df66119ee565b73ffffffffffffffffffffffffffffffffffffffff1614610e4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e43906147da565b60405180910390fd5b80601060006101000a81548160ff021916908360ff16021790555050565b600e5481565b6000610e7a612c5c565b6003546000540303905090565b60606000610e94856117f7565b905060008167ffffffffffffffff811115610eb257610eb1613d2f565b5b604051908082528060200260200182016040528015610ee557816020015b6060815260200190600190039081610ed05790505b5090506000859050600085905060005b81831015610fb3576000610f0884611741565b90508973ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610f9f57600160008581526020019081526020016000206011604051602001610f6392919061489d565b604051602081830303815290604052858381518110610f8557610f846148c1565b5b60200260200101819052508180610f9b9061491f565b9250505b8380610faa9061491f565b94505050610ef5565b83955050505050509392505050565b610fca612ba2565b73ffffffffffffffffffffffffffffffffffffffff16610fe86119ee565b73ffffffffffffffffffffffffffffffffffffffff161461103e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611035906147da565b60405180910390fd5b80600f8190555050565b611053838383612c65565b505050565b600080600061106685613119565b90508060000151612710600f548661107e9190614967565b61108891906149d8565b92509250509250929050565b606060006110a0610e70565b9050808311156110ae578092505b60008367ffffffffffffffff8111156110ca576110c9613d2f565b5b6040519080825280602002602001820160405280156110fd57816020015b60608152602001906001900390816110e85790505b5090506000848361110e9190614a09565b9050600080821015611155576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114c90614a89565b60405180910390fd5b5b818411156111cf57600160008581526020019081526020016000206040516020016111819190614aa9565b6040516020818303038152906040528382815181106111a3576111a26148c1565b5b602002602001018190525080806111b99061491f565b91505083806111c790614ac0565b945050611156565b82945050505050919050565b6111e3612ba2565b73ffffffffffffffffffffffffffffffffffffffff166112016119ee565b73ffffffffffffffffffffffffffffffffffffffff1614611257576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124e906147da565b60405180910390fd5b6002600b540361129c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129390614b35565b60405180910390fd5b6002600b81905550600047905060006112b36119ee565b73ffffffffffffffffffffffffffffffffffffffff16826040516112d690614b86565b60006040518083038185875af1925050503d8060008114611313576040519150601f19603f3d011682016040523d82523d6000602084013e611318565b606091505b5050905050506001600b81905550565b6000600e54905060008351905060018111611378576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136f90614be7565b60405180910390fd5b6002810361138a57600c5491506113a3565b6003810361139c57600d5491506113a2565b600e5491505b5b60006002856040516113b59190614c38565b90815260200160405180910390205414611404576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fb90614c9b565b60405180910390fd5b81341015611447576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143e90614d07565b60405180910390fd5b83600160008054815260200190815260200160002090816114689190614ebe565b5060005460028560405161147c9190614c38565b908152602001604051809103902081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146116065760008373ffffffffffffffffffffffffffffffffffffffff166064601060009054906101000a900460ff1660ff16346114fb9190614967565b61150591906149d8565b60405161151190614b86565b60006040518083038185875af1925050503d806000811461154e576040519150601f19603f3d011682016040523d82523d6000602084013e611553565b606091505b5050905060006115616119ee565b73ffffffffffffffffffffffffffffffffffffffff166064601060009054906101000a900460ff1660646115959190614f90565b60ff16346115a39190614967565b6115ad91906149d8565b6040516115b990614b86565b60006040518083038185875af1925050503d80600081146115f6576040519150601f19603f3d011682016040523d82523d6000602084013e6115fb565b606091505b50509050505061167b565b60006116106119ee565b73ffffffffffffffffffffffffffffffffffffffff163460405161163390614b86565b60006040518083038185875af1925050503d8060008114611670576040519150601f19603f3d011682016040523d82523d6000602084013e611675565b606091505b50509050505b6116863360016133a4565b50505050565b6116a783838360405180602001604052806000815250612325565b505050565b600d5481565b6116ba612ba2565b73ffffffffffffffffffffffffffffffffffffffff166116d86119ee565b73ffffffffffffffffffffffffffffffffffffffff161461172e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611725906147da565b60405180910390fd5b806012908161173d9190614ebe565b5050565b600061174c82613119565b600001519050919050565b600160205280600052604060002060009150905080546117769061475d565b80601f01602080910402602001604051908101604052809291908181526020018280546117a29061475d565b80156117ef5780601f106117c4576101008083540402835291602001916117ef565b820191906000526020600020905b8154815290600101906020018083116117d257829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361185e576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6118ce612ba2565b73ffffffffffffffffffffffffffffffffffffffff166118ec6119ee565b73ffffffffffffffffffffffffffffffffffffffff1614611942576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611939906147da565b60405180910390fd5b61194c60006133c2565b565b6015602052806000526040600020600091509050805461196d9061475d565b80601f01602080910402602001604051908101604052809291908181526020018280546119999061475d565b80156119e65780601f106119bb576101008083540402835291602001916119e6565b820191906000526020600020905b8154815290600101906020018083116119c957829003601f168201915b505050505081565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600080600090506000839050600060178054611a339061475d565b80601f0160208091040260200160405190810160405280929190818152602001828054611a5f9061475d565b8015611aac5780601f10611a8157610100808354040283529160200191611aac565b820191906000526020600020905b815481529060010190602001808311611a8f57829003601f168201915b5050505050905060005b8251811015611b865760005b8251811015611b7257828181518110611ade57611add6148c1565b5b602001015160f81c60f81b7effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916848381518110611b1e57611b1d6148c1565b5b602001015160f81c60f81b7effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191603611b5f578480611b5b9061491f565b9550505b8080611b6a9061491f565b915050611ac2565b508080611b7e9061491f565b915050611ab6565b5081518303611b9b5760019350505050611ba3565b600093505050505b919050565b611bb0612ba2565b73ffffffffffffffffffffffffffffffffffffffff16611bce6119ee565b73ffffffffffffffffffffffffffffffffffffffff1614611c24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1b906147da565b60405180910390fd5b8060139081611c339190614ebe565b5050565b606060058054611c469061475d565b80601f0160208091040260200160405190810160405280929190818152602001828054611c729061475d565b8015611cbf5780601f10611c9457610100808354040283529160200191611cbf565b820191906000526020600020905b815481529060010190602001808311611ca257829003601f168201915b5050505050905090565b6000611cf460028585604051611ce0929190614fea565b908152602001604051809103902054613119565b90503373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611d68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5f9061504f565b60405180910390fd5b60006015600060148787604051611d80929190614fea565b908152602001604051809103902060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054611df49061475d565b80601f0160208091040260200160405190810160405280929190818152602001828054611e209061475d565b8015611e6d5780601f10611e4257610100808354040283529160200191611e6d565b820191906000526020600020905b815481529060010190602001808311611e5057829003601f168201915b505050505090508484604051611e84929190615094565b6040518091039020818051906020012003611f3657604051806020016040528060008152506015600060148888604051611ebf929190614fea565b908152602001604051809103902060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209081611f349190614ebe565b505b8260148686604051611f49929190614fea565b908152602001604051809103902060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050505050565b611fa4612ba2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612008576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060096000612015612ba2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166120c2612ba2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516121079190613b2d565b60405180910390a35050565b60606016846040516121259190614c38565b90815260200160405180910390208383604051612143929190614fea565b9081526020016040518091039020805461215c9061475d565b80601f01602080910402602001604051908101604052809291908181526020018280546121889061475d565b80156121d55780601f106121aa576101008083540402835291602001916121d5565b820191906000526020600020905b8154815290600101906020018083116121b857829003601f168201915b505050505090509392505050565b600c5481565b600061221460028787604051612200929190614fea565b908152602001604051809103902054613119565b90503373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612288576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227f9061504f565b60405180910390fd5b816016878760405161229b929190614fea565b908152602001604051809103902085856040516122b9929190614fea565b908152602001604051809103902090816122d39190614ebe565b50505050505050565b6014818051602081018201805184825260208301602085012081835280955050505050506000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b612330848484612c65565b61234f8373ffffffffffffffffffffffffffffffffffffffff16612ac7565b156123975761236084848484613488565b612396576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600f5481565b60006123ce600284846040516123ba929190614fea565b908152602001604051809103902054613119565b90503373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612442576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124399061504f565b60405180910390fd5b8282601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002091826124909291906150b8565b50505050565b61249e612ba2565b73ffffffffffffffffffffffffffffffffffffffff166124bc6119ee565b73ffffffffffffffffffffffffffffffffffffffff1614612512576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612509906147da565b60405180910390fd5b82600c8190555081600d8190555080600e81905550505050565b606061253782612b54565b61256d576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006125776135d8565b9050600081510361259757604051806020016040528060008152506125cc565b80600160008581526020019081526020016000206040516020016125bc929190615188565b6040516020818303038152906040525b915050919050565b6125dc612ba2565b73ffffffffffffffffffffffffffffffffffffffff166125fa6119ee565b73ffffffffffffffffffffffffffffffffffffffff1614612650576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612647906147da565b60405180910390fd5b81816001600086815260200190815260200160002091826126729291906150b8565b508260028383604051612686929190614fea565b908152602001604051809103902081905550505050565b6060601380546126ac9061475d565b80601f01602080910402602001604051908101604052809291908181526020018280546126d89061475d565b80156127255780601f106126fa57610100808354040283529160200191612725565b820191906000526020600020905b81548152906001019060200180831161270857829003601f168201915b5050505050905090565b6000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6016828051602081018201805184825260208301602085012081835280955050505050508180516020810182018051848252602083016020850120818352809550505050505060009150915050805461281b9061475d565b80601f01602080910402602001604051908101604052809291908181526020018280546128479061475d565b80156128945780601f1061286957610100808354040283529160200191612894565b820191906000526020600020905b81548152906001019060200180831161287757829003601f168201915b505050505081565b6128a4612ba2565b73ffffffffffffffffffffffffffffffffffffffff166128c26119ee565b73ffffffffffffffffffffffffffffffffffffffff1614612918576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290f906147da565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612987576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297e9061521e565b60405180910390fd5b612990816133c2565b50565b606060006129a0836117f7565b905060008167ffffffffffffffff8111156129be576129bd613d2f565b5b6040519080825280602002602001820160405280156129f157816020015b60608152602001906001900390816129dc5790505b50905060006001905060005b83811015612abb576000612a1083611741565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612aa757600160008481526020019081526020016000206011604051602001612a6b92919061489d565b604051602081830303815290604052848381518110612a8d57612a8c6148c1565b5b60200260200101819052508180612aa39061491f565b9250505b8280612ab29061491f565b935050506129fd565b82945050505050919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081612b5f612c5c565b11158015612b6e575060005482105b8015612b9b575060066000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826008600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000612c7082613119565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612cdb576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16612cfc612ba2565b73ffffffffffffffffffffffffffffffffffffffff161480612d2b5750612d2a85612d25612ba2565b61272f565b5b80612d705750612d39612ba2565b73ffffffffffffffffffffffffffffffffffffffff16612d5884610c22565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612da9576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612e0f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612e1c858585600161366a565b612e2860008487612baa565b6001600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600660008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600660008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036130a75760005482146130a657878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46131128585856001613670565b5050505050565b613121613a36565b60008290508061312f612c5c565b1161336d5760005481101561336c576000600660008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161336a57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461324e57809250505061339f565b5b60011561336957818060019003925050600660008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461336457809250505061339f565b61324f565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6133be828260405180602001604052806000815250613676565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026134ae612ba2565b8786866040518563ffffffff1660e01b81526004016134d09493929190615293565b6020604051808303816000875af192505050801561350c57506040513d601f19601f8201168201806040525081019061350991906152f4565b60015b613585573d806000811461353c576040519150601f19603f3d011682016040523d82523d6000602084013e613541565b606091505b50600081510361357d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060601280546135e79061475d565b80601f01602080910402602001604051908101604052809291908181526020018280546136139061475d565b80156136605780601f1061363557610100808354040283529160200191613660565b820191906000526020600020905b81548152906001019060200180831161364357829003601f168201915b5050505050905090565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036136e2576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000830361371c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b613729600085838661366a565b82600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836006600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426006600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600084820190506138ea8673ffffffffffffffffffffffffffffffffffffffff16612ac7565b156139af575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461395f6000878480600101955087613488565b613995576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106138f05782600054146139aa57600080fd5b613a1a565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106139b0575b816000819055505050613a306000858386613670565b50505050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613ac281613a8d565b8114613acd57600080fd5b50565b600081359050613adf81613ab9565b92915050565b600060208284031215613afb57613afa613a83565b5b6000613b0984828501613ad0565b91505092915050565b60008115159050919050565b613b2781613b12565b82525050565b6000602082019050613b426000830184613b1e565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613b82578082015181840152602081019050613b67565b60008484015250505050565b6000601f19601f8301169050919050565b6000613baa82613b48565b613bb48185613b53565b9350613bc4818560208601613b64565b613bcd81613b8e565b840191505092915050565b60006020820190508181036000830152613bf28184613b9f565b905092915050565b6000819050919050565b613c0d81613bfa565b8114613c1857600080fd5b50565b600081359050613c2a81613c04565b92915050565b600060208284031215613c4657613c45613a83565b5b6000613c5484828501613c1b565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613c8882613c5d565b9050919050565b613c9881613c7d565b82525050565b6000602082019050613cb36000830184613c8f565b92915050565b613cc281613c7d565b8114613ccd57600080fd5b50565b600081359050613cdf81613cb9565b92915050565b60008060408385031215613cfc57613cfb613a83565b5b6000613d0a85828601613cd0565b9250506020613d1b85828601613c1b565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613d6782613b8e565b810181811067ffffffffffffffff82111715613d8657613d85613d2f565b5b80604052505050565b6000613d99613a79565b9050613da58282613d5e565b919050565b600067ffffffffffffffff821115613dc557613dc4613d2f565b5b613dce82613b8e565b9050602081019050919050565b82818337600083830152505050565b6000613dfd613df884613daa565b613d8f565b905082815260208101848484011115613e1957613e18613d2a565b5b613e24848285613ddb565b509392505050565b600082601f830112613e4157613e40613d25565b5b8135613e51848260208601613dea565b91505092915050565b600060208284031215613e7057613e6f613a83565b5b600082013567ffffffffffffffff811115613e8e57613e8d613a88565b5b613e9a84828501613e2c565b91505092915050565b613eac81613bfa565b82525050565b6000602082019050613ec76000830184613ea3565b92915050565b600060ff82169050919050565b613ee381613ecd565b8114613eee57600080fd5b50565b600081359050613f0081613eda565b92915050565b600060208284031215613f1c57613f1b613a83565b5b6000613f2a84828501613ef1565b91505092915050565b600080600060608486031215613f4c57613f4b613a83565b5b6000613f5a86828701613cd0565b9350506020613f6b86828701613c1b565b9250506040613f7c86828701613c1b565b9150509250925092565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b600082825260208201905092915050565b6000613fce82613b48565b613fd88185613fb2565b9350613fe8818560208601613b64565b613ff181613b8e565b840191505092915050565b60006140088383613fc3565b905092915050565b6000602082019050919050565b600061402882613f86565b6140328185613f91565b93508360208202850161404485613fa2565b8060005b8581101561408057848403895281516140618582613ffc565b945061406c83614010565b925060208a01995050600181019050614048565b50829750879550505050505092915050565b600060208201905081810360008301526140ac818461401d565b905092915050565b6000806000606084860312156140cd576140cc613a83565b5b60006140db86828701613cd0565b93505060206140ec86828701613cd0565b92505060406140fd86828701613c1b565b9150509250925092565b6000806040838503121561411e5761411d613a83565b5b600061412c85828601613c1b565b925050602061413d85828601613c1b565b9150509250929050565b600060408201905061415c6000830185613c8f565b6141696020830184613ea3565b9392505050565b6000806040838503121561418757614186613a83565b5b600083013567ffffffffffffffff8111156141a5576141a4613a88565b5b6141b185828601613e2c565b92505060206141c285828601613cd0565b9150509250929050565b6000602082840312156141e2576141e1613a83565b5b60006141f084828501613cd0565b91505092915050565b600080fd5b600080fd5b60008083601f84011261421957614218613d25565b5b8235905067ffffffffffffffff811115614236576142356141f9565b5b602083019150836001820283011115614252576142516141fe565b5b9250929050565b60008060006040848603121561427257614271613a83565b5b600084013567ffffffffffffffff8111156142905761428f613a88565b5b61429c86828701614203565b935093505060206142af86828701613cd0565b9150509250925092565b6142c281613b12565b81146142cd57600080fd5b50565b6000813590506142df816142b9565b92915050565b600080604083850312156142fc576142fb613a83565b5b600061430a85828601613cd0565b925050602061431b858286016142d0565b9150509250929050565b60008060006040848603121561433e5761433d613a83565b5b600084013567ffffffffffffffff81111561435c5761435b613a88565b5b61436886828701613e2c565b935050602084013567ffffffffffffffff81111561438957614388613a88565b5b61439586828701614203565b92509250509250925092565b6000806000806000606086880312156143bd576143bc613a83565b5b600086013567ffffffffffffffff8111156143db576143da613a88565b5b6143e788828901614203565b9550955050602086013567ffffffffffffffff81111561440a57614409613a88565b5b61441688828901614203565b9350935050604086013567ffffffffffffffff81111561443957614438613a88565b5b61444588828901613e2c565b9150509295509295909350565b600067ffffffffffffffff82111561446d5761446c613d2f565b5b61447682613b8e565b9050602081019050919050565b600061449661449184614452565b613d8f565b9050828152602081018484840111156144b2576144b1613d2a565b5b6144bd848285613ddb565b509392505050565b600082601f8301126144da576144d9613d25565b5b81356144ea848260208601614483565b91505092915050565b6000806000806080858703121561450d5761450c613a83565b5b600061451b87828801613cd0565b945050602061452c87828801613cd0565b935050604061453d87828801613c1b565b925050606085013567ffffffffffffffff81111561455e5761455d613a88565b5b61456a878288016144c5565b91505092959194509250565b6000806020838503121561458d5761458c613a83565b5b600083013567ffffffffffffffff8111156145ab576145aa613a88565b5b6145b785828601614203565b92509250509250929050565b6000806000606084860312156145dc576145db613a83565b5b60006145ea86828701613c1b565b93505060206145fb86828701613c1b565b925050604061460c86828701613c1b565b9150509250925092565b60008060006040848603121561462f5761462e613a83565b5b600061463d86828701613c1b565b935050602084013567ffffffffffffffff81111561465e5761465d613a88565b5b61466a86828701614203565b92509250509250925092565b6000806040838503121561468d5761468c613a83565b5b600061469b85828601613cd0565b92505060206146ac85828601613cd0565b9150509250929050565b600080604083850312156146cd576146cc613a83565b5b600083013567ffffffffffffffff8111156146eb576146ea613a88565b5b6146f785828601613e2c565b925050602083013567ffffffffffffffff81111561471857614717613a88565b5b61472485828601613e2c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061477557607f821691505b6020821081036147885761478761472e565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006147c4602083613b53565b91506147cf8261478e565b602082019050919050565b600060208201905081810360008301526147f3816147b7565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b600081546148278161475d565b61483181866147fa565b9450600182166000811461484c576001811461486157614894565b60ff1983168652811515820286019350614894565b61486a85614805565b60005b8381101561488c5781548189015260018201915060208101905061486d565b838801955050505b50505092915050565b60006148a9828561481a565b91506148b5828461481a565b91508190509392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061492a82613bfa565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361495c5761495b6148f0565b5b600182019050919050565b600061497282613bfa565b915061497d83613bfa565b925082820261498b81613bfa565b915082820484148315176149a2576149a16148f0565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006149e382613bfa565b91506149ee83613bfa565b9250826149fe576149fd6149a9565b5b828204905092915050565b6000614a1482613bfa565b9150614a1f83613bfa565b9250828203905081811115614a3757614a366148f0565b5b92915050565b7f496e76616c696400000000000000000000000000000000000000000000000000600082015250565b6000614a73600783613b53565b9150614a7e82614a3d565b602082019050919050565b60006020820190508181036000830152614aa281614a66565b9050919050565b6000614ab5828461481a565b915081905092915050565b6000614acb82613bfa565b915060008203614ade57614add6148f0565b5b600182039050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000614b1f601f83613b53565b9150614b2a82614ae9565b602082019050919050565b60006020820190508181036000830152614b4e81614b12565b9050919050565b600081905092915050565b50565b6000614b70600083614b55565b9150614b7b82614b60565b600082019050919050565b6000614b9182614b63565b9150819050919050565b7f57726974652061204e616d650000000000000000000000000000000000000000600082015250565b6000614bd1600c83613b53565b9150614bdc82614b9b565b602082019050919050565b60006020820190508181036000830152614c0081614bc4565b9050919050565b6000614c1282613b48565b614c1c81856147fa565b9350614c2c818560208601613b64565b80840191505092915050565b6000614c448284614c07565b915081905092915050565b7f5468697320697320616c72656164792074616b656e0000000000000000000000600082015250565b6000614c85601583613b53565b9150614c9082614c4f565b602082019050919050565b60006020820190508181036000830152614cb481614c78565b9050919050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6000614cf1601383613b53565b9150614cfc82614cbb565b602082019050919050565b60006020820190508181036000830152614d2081614ce4565b9050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302614d747fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82614d37565b614d7e8683614d37565b95508019841693508086168417925050509392505050565b6000819050919050565b6000614dbb614db6614db184613bfa565b614d96565b613bfa565b9050919050565b6000819050919050565b614dd583614da0565b614de9614de182614dc2565b848454614d44565b825550505050565b600090565b614dfe614df1565b614e09818484614dcc565b505050565b5b81811015614e2d57614e22600082614df6565b600181019050614e0f565b5050565b601f821115614e7257614e4381614805565b614e4c84614d27565b81016020851015614e5b578190505b614e6f614e6785614d27565b830182614e0e565b50505b505050565b600082821c905092915050565b6000614e9560001984600802614e77565b1980831691505092915050565b6000614eae8383614e84565b9150826002028217905092915050565b614ec782613b48565b67ffffffffffffffff811115614ee057614edf613d2f565b5b614eea825461475d565b614ef5828285614e31565b600060209050601f831160018114614f285760008415614f16578287015190505b614f208582614ea2565b865550614f88565b601f198416614f3686614805565b60005b82811015614f5e57848901518255600182019150602085019450602081019050614f39565b86831015614f7b5784890151614f77601f891682614e84565b8355505b6001600288020188555050505b505050505050565b6000614f9b82613ecd565b9150614fa683613ecd565b9250828203905060ff811115614fbf57614fbe6148f0565b5b92915050565b6000614fd183856147fa565b9350614fde838584613ddb565b82840190509392505050565b6000614ff7828486614fc5565b91508190509392505050565b7f4572726f72000000000000000000000000000000000000000000000000000000600082015250565b6000615039600583613b53565b915061504482615003565b602082019050919050565b600060208201905081810360008301526150688161502c565b9050919050565b600061507b8385614b55565b9350615088838584613ddb565b82840190509392505050565b60006150a182848661506f565b91508190509392505050565b600082905092915050565b6150c283836150ad565b67ffffffffffffffff8111156150db576150da613d2f565b5b6150e5825461475d565b6150f0828285614e31565b6000601f83116001811461511f576000841561510d578287013590505b6151178582614ea2565b86555061517f565b601f19841661512d86614805565b60005b8281101561515557848901358255600182019150602085019450602081019050615130565b86831015615172578489013561516e601f891682614e84565b8355505b6001600288020188555050505b50505050505050565b60006151948285614c07565b91506151a0828461481a565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000615208602683613b53565b9150615213826151ac565b604082019050919050565b60006020820190508181036000830152615237816151fb565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006152658261523e565b61526f8185615249565b935061527f818560208601613b64565b61528881613b8e565b840191505092915050565b60006080820190506152a86000830187613c8f565b6152b56020830186613c8f565b6152c26040830185613ea3565b81810360608301526152d4818461525a565b905095945050505050565b6000815190506152ee81613ab9565b92915050565b60006020828403121561530a57615309613a83565b5b6000615318848285016152df565b9150509291505056fea26469706673582212201b4f10ffbee7945fe2ec4b7404ac33431de5b659b3649ec921bce5e6622d5f5564736f6c63430008120033

Deployed Bytecode Sourcemap

50398:7215:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31531:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34646:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36158:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35720:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29476:48;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53299:83;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50616:49;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30771:312;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55695:675;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53527:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37023:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51673:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;56376:522;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57426:182;;;;;;;;;;;;;:::i;:::-;;54056:979;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37264:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50560:49;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53178:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34454:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29421:48;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31900:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7608:103;;;;;;;;;;;;;:::i;:::-;;50981:48;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6957:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56903:517;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53390:129;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34815:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51969:473;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36434:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53018:150;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50504:49;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52710:300;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50926:48;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37520:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50672:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52450:250;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53810:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34990:326;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53641:161;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51568:97;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36792:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51036:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7866:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55045:646;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31531:305;31633:4;31685:25;31670:40;;;:11;:40;;;;:105;;;;31742:33;31727:48;;;:11;:48;;;;31670:105;:158;;;;31792:36;31816:11;31792:23;:36::i;:::-;31670:158;31650:178;;31531:305;;;:::o;34646:100::-;34700:13;34733:5;34726:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34646:100;:::o;36158:204::-;36226:7;36251:16;36259:7;36251;:16::i;:::-;36246:64;;36276:34;;;;;;;;;;;;;;36246:64;36330:15;:24;36346:7;36330:24;;;;;;;;;;;;;;;;;;;;;36323:31;;36158:204;;;:::o;35720:372::-;35793:13;35809:24;35825:7;35809:15;:24::i;:::-;35793:40;;35854:5;35848:11;;:2;:11;;;35844:48;;35868:24;;;;;;;;;;;;;;35844:48;35925:5;35909:21;;:12;:10;:12::i;:::-;:21;;;35905:139;;35936:37;35953:5;35960:12;:10;:12::i;:::-;35936:16;:37::i;:::-;35932:112;;35997:35;;;;;;;;;;;;;;35932:112;35905:139;36056:28;36065:2;36069:7;36078:5;36056:8;:28::i;:::-;35782:310;35720:372;;:::o;29476:48::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;53299:83::-;7188:12;:10;:12::i;:::-;7177:23;;:7;:5;:7::i;:::-;:23;;;7169:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53370:4:::1;53364:3;;:10;;;;;;;;;;;;;;;;;;53299:83:::0;:::o;50616:49::-;;;;:::o;30771:312::-;30824:7;31049:15;:13;:15::i;:::-;31034:12;;31018:13;;:28;:46;31011:53;;30771:312;:::o;55695:675::-;55816:15;55843:23;55869:17;55879:6;55869:9;:17::i;:::-;55843:43;;55893:29;55938:15;55925:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55893:61;;55961:14;55978:10;55961:27;;55995:12;56010:8;55995:23;;56025;56061:275;56077:4;56068:6;:13;56061:275;;;56092:25;56120:15;56128:6;56120:7;:15::i;:::-;56092:43;;56171:6;56150:27;;:17;:27;;;56146:164;;56237:17;:25;56255:6;56237:25;;;;;;;;;;;56263:6;56223:47;;;;;;;;;:::i;:::-;;;;;;;;;;;;;56190:13;56204:15;56190:30;;;;;;;;:::i;:::-;;;;;;;:80;;;;56283:17;;;;;:::i;:::-;;;;56146:164;56320:8;;;;;:::i;:::-;;;;56083:253;56061:275;;;56351:13;56344:20;;;;;;;55695:675;;;;;:::o;53527:106::-;7188:12;:10;:12::i;:::-;7177:23;;:7;:5;:7::i;:::-;:23;;;7169:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53614:11:::1;53601:10;:24;;;;53527:106:::0;:::o;37023:170::-;37157:28;37167:4;37173:2;37177:7;37157:9;:28::i;:::-;37023:170;;;:::o;51673:274::-;51760:16;51778:21;51816:31;51850:22;51863:8;51850:12;:22::i;:::-;51816:56;;51895:9;:14;;;51933:5;51922:10;;51911;:21;;;;:::i;:::-;:27;;;;:::i;:::-;51887:52;;;;;51673:274;;;;;:::o;56376:522::-;56450:15;56477:13;56493;:11;:13::i;:::-;56477:29;;56522:5;56516;:11;56513:29;;;56535:5;56529:11;;56513:29;56548:24;56588:5;56575:19;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56548:46;;56601:17;56629:5;56621;:13;;;;:::i;:::-;56601:33;;56641:23;56694:1;56683:9;:12;;56675:31;;;;;;;;;;;;:::i;:::-;;;;;;;;;56713:156;56728:9;56720:5;:17;56713:156;;;56792:17;:24;56810:5;56792:24;;;;;;;;;;;56778:39;;;;;;;;:::i;:::-;;;;;;;;;;;;;56750:8;56759:15;56750:25;;;;;;;;:::i;:::-;;;;;;;:67;;;;56828:17;;;;;:::i;:::-;;;;56854:7;;;;;:::i;:::-;;;;56713:156;;;56884:8;56877:15;;;;;;56376:522;;;:::o;57426:182::-;7188:12;:10;:12::i;:::-;7177:23;;:7;:5;:7::i;:::-;:23;;;7169:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1931:1:::1;2529:7;;:19:::0;2521:63:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;1931:1;2662:7;:18;;;;57487:15:::2;57505:21;57487:39;;57538:12;57564:7;:5;:7::i;:::-;57556:21;;57584:7;57556:40;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57537:59;;;57476:132;;1887:1:::1;2841:7;:22;;;;57426:182::o:0;54056:979::-;54163:13;54179:15;;54163:31;;54205:18;54230:4;54224:18;54205:37;;54272:1;54261:10;:12;54253:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;54315:1;54303:10;:13;54300:117;;54325:14;;54319:20;;54300:117;;;54362:1;54350:10;:13;54347:70;;54371:14;;54365:20;;54347:70;;;54400:15;;54394:21;;54347:70;54300:117;54463:1;54436:17;54454:4;54436:23;;;;;;:::i;:::-;;;;;;;;;;;;;;:28;54427:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;54523:5;54510:9;:18;;54502:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;54596:4;54563:17;:32;54581:13;;54563:32;;;;;;;;;;;:37;;;;;;:::i;:::-;;54635:13;;54611:17;54629:4;54611:23;;;;;;:::i;:::-;;;;;;;;;;;;;:37;;;;54677:42;54663:56;;:11;:56;;;54659:335;;54733:12;54759:11;54751:25;;54797:3;54793;;;;;;;;;;;54783:13;;:9;:13;;;;:::i;:::-;:17;;;;:::i;:::-;54751:54;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54732:73;;;54817:13;54844:7;:5;:7::i;:::-;54836:21;;54884:3;54879;;;;;;;;;;;54875;:7;;;;:::i;:::-;54864:19;;:9;:19;;;;:::i;:::-;:23;;;;:::i;:::-;54836:56;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54816:76;;;54721:183;;54659:335;;;54922:12;54948:7;:5;:7::i;:::-;54940:21;;54968:9;54940:42;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54921:61;;;54910:84;54659:335;55004:23;55014:10;55025:1;55004:9;:23::i;:::-;54152:883;;54056:979;;:::o;37264:185::-;37402:39;37419:4;37425:2;37429:7;37402:39;;;;;;;;;;;;:16;:39::i;:::-;37264:185;;;:::o;50560:49::-;;;;:::o;53178:113::-;7188:12;:10;:12::i;:::-;7177:23;;:7;:5;:7::i;:::-;:23;;;7169:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53269:14:::1;53258:8;:25;;;;;;:::i;:::-;;53178:113:::0;:::o;34454:125::-;34518:7;34545:21;34558:7;34545:12;:21::i;:::-;:26;;;34538:33;;34454:125;;;:::o;29421:48::-;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;31900:206::-;31964:7;32005:1;31988:19;;:5;:19;;;31984:60;;32016:28;;;;;;;;;;;;;;31984:60;32070:12;:19;32083:5;32070:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;32062:36;;32055:43;;31900:206;;;:::o;7608:103::-;7188:12;:10;:12::i;:::-;7177:23;;:7;:5;:7::i;:::-;:23;;;7169:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7673:30:::1;7700:1;7673:18;:30::i;:::-;7608:103::o:0;50981:48::-;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;6957:87::-;7003:7;7030:6;;;;;;;;;;;7023:13;;6957:87;:::o;56903:517::-;56964:4;56980:17;56999:1;56980:20;;57011:23;57043:5;57011:38;;57060:20;57089:11;57060:41;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57118:6;57114:204;57132:10;:17;57128:1;:21;57114:204;;;57174:6;57170:137;57186:7;:14;57184:1;:16;57170:137;;;57241:7;57249:1;57241:10;;;;;;;;:::i;:::-;;;;;;;;;;57226:25;;;:10;57237:1;57226:13;;;;;;;;:::i;:::-;;;;;;;;;;:25;;;;57223:60;;57269:14;;;;;:::i;:::-;;;;57223:60;57202:3;;;;;:::i;:::-;;;;57170:137;;;;57152:3;;;;;:::i;:::-;;;;57114:204;;;;57346:10;:17;57332:12;:31;57328:76;;57374:4;57367:11;;;;;;;57328:76;57396:5;57389:12;;;;;56903:517;;;;:::o;53390:129::-;7188:12;:10;:12::i;:::-;7177:23;;:7;:5;:7::i;:::-;:23;;;7169:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53493:18:::1;53478:12;:33;;;;;;:::i;:::-;;53390:129:::0;:::o;34815:104::-;34871:13;34904:7;34897:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34815:104;:::o;51969:473::-;52052:31;52086:37;52099:17;52117:4;;52099:23;;;;;;;:::i;:::-;;;;;;;;;;;;;;52086:12;:37::i;:::-;52052:71;;52156:10;52138:28;;:9;:14;;;:28;;;52134:49;;52168:15;;;;;;;;;;:::i;:::-;;;;;;;;52134:49;52202:19;52230:14;:36;52245:14;52260:4;;52245:20;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;52230:36;;;;;;;;;;;;;;;52202:65;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52319:4;;52303:22;;;;;;;:::i;:::-;;;;;;;;52292:6;52282:17;;;;;;:43;52278:115;;52342:39;;;;;;;;;;;;:14;:36;52357:14;52372:4;;52357:20;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;52342:36;;;;;;;;;;;;;;;:39;;;;;;:::i;:::-;;52278:115;52424:10;52403:14;52418:4;;52403:20;;;;;;;:::i;:::-;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;52040:402;;51969:473;;;:::o;36434:287::-;36545:12;:10;:12::i;:::-;36533:24;;:8;:24;;;36529:54;;36566:17;;;;;;;;;;;;;;36529:54;36641:8;36596:18;:32;36615:12;:10;:12::i;:::-;36596:32;;;;;;;;;;;;;;;:42;36629:8;36596:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;36694:8;36665:48;;36680:12;:10;:12::i;:::-;36665:48;;;36704:8;36665:48;;;;;;:::i;:::-;;;;;;;;36434:287;;:::o;53018:150::-;53104:13;53137:11;53149:4;53137:17;;;;;;:::i;:::-;;;;;;;;;;;;;53155:4;;53137:23;;;;;;;:::i;:::-;;;;;;;;;;;;;53130:30;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53018:150;;;;;:::o;50504:49::-;;;;:::o;52710:300::-;52825:31;52859:37;52872:17;52890:4;;52872:23;;;;;;;:::i;:::-;;;;;;;;;;;;;;52859:12;:37::i;:::-;52825:71;;52929:10;52911:28;;:9;:14;;;:28;;;52907:49;;52941:15;;;;;;;;;;:::i;:::-;;;;;;;;52907:49;52994:8;52967:11;52979:4;;52967:17;;;;;;;:::i;:::-;;;;;;;;;;;;;52985:7;;52967:26;;;;;;;:::i;:::-;;;;;;;;;;;;;:35;;;;;;:::i;:::-;;52814:196;52710:300;;;;;:::o;50926:48::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;37520:370::-;37687:28;37697:4;37703:2;37707:7;37687:9;:28::i;:::-;37730:15;:2;:13;;;:15::i;:::-;37726:157;;;37751:56;37782:4;37788:2;37792:7;37801:5;37751:30;:56::i;:::-;37747:136;;37831:40;;;;;;;;;;;;;;37747:136;37726:157;37520:370;;;;:::o;50672:31::-;;;;:::o;52450:250::-;52519:31;52553:37;52566:17;52584:4;;52566:23;;;;;;;:::i;:::-;;;;;;;;;;;;;;52553:12;:37::i;:::-;52519:71;;52623:10;52605:28;;:9;:14;;;:28;;;52601:49;;52635:15;;;;;;;;;;:::i;:::-;;;;;;;;52601:49;52688:4;;52661:14;:26;52676:10;52661:26;;;;;;;;;;;;;;;:31;;;;;;;:::i;:::-;;52508:192;52450:250;;:::o;53810:234::-;7188:12;:10;:12::i;:::-;7177:23;;:7;:5;:7::i;:::-;:23;;;7169:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53945:10:::1;53928:14;:27;;;;53983:10;53966:14;:27;;;;54022:14;54004:15;:32;;;;53810:234:::0;;;:::o;34990:326::-;35063:13;35094:16;35102:7;35094;:16::i;:::-;35089:59;;35119:29;;;;;;;;;;;;;;35089:59;35161:21;35185:10;:8;:10::i;:::-;35161:34;;35238:1;35219:7;35213:21;:26;:95;;;;;;;;;;;;;;;;;35266:7;35275:17;:26;35293:7;35275:26;;;;;;;;;;;35249:53;;;;;;;;;:::i;:::-;;;;;;;;;;;;;35213:95;35206:102;;;34990:326;;;:::o;53641:161::-;7188:12;:10;:12::i;:::-;7177:23;;:7;:5;:7::i;:::-;:23;;;7169:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53752:4:::1;;53725:17;:26;53743:7;53725:26;;;;;;;;;;;:31;;;;;;;:::i;:::-;;53787:7;53763:17;53781:4;;53763:23;;;;;;;:::i;:::-;;;;;;;;;;;;;:31;;;;53641:161:::0;;;:::o;51568:97::-;51612:13;51645:12;51638:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51568:97;:::o;36792:164::-;36889:4;36913:18;:25;36932:5;36913:25;;;;;;;;;;;;;;;:35;36939:8;36913:35;;;;;;;;;;;;;;;;;;;;;;;;;36906:42;;36792:164;;;;:::o;51036:63::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7866:201::-;7188:12;:10;:12::i;:::-;7177:23;;:7;:5;:7::i;:::-;:23;;;7169:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7975:1:::1;7955:22;;:8;:22;;::::0;7947:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;8031:28;8050:8;8031:18;:28::i;:::-;7866:201:::0;:::o;55045:646::-;55124:15;55151:23;55177:17;55187:6;55177:9;:17::i;:::-;55151:43;;55201:29;55246:15;55233:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55201:61;;55269:22;55294:1;55269:26;;55302:23;55338:319;55363:15;55345;:33;55338:319;;;55389:25;55417:23;55425:14;55417:7;:23::i;:::-;55389:51;;55476:6;55455:27;;:17;:27;;;55451:172;;55542:17;:33;55560:14;55542:33;;;;;;;;;;;55576:6;55528:55;;;;;;;;;:::i;:::-;;;;;;;;;;;;;55495:13;55509:15;55495:30;;;;;;;;:::i;:::-;;;;;;;:88;;;;55596:17;;;;;:::i;:::-;;;;55451:172;55633:16;;;;;:::i;:::-;;;;55380:277;55338:319;;;55672:13;55665:20;;;;;;55045:646;;;:::o;9658:326::-;9718:4;9975:1;9953:7;:19;;;:23;9946:30;;9658:326;;;:::o;19764:157::-;19849:4;19888:25;19873:40;;;:11;:40;;;;19866:47;;19764:157;;;:::o;38145:174::-;38202:4;38245:7;38226:15;:13;:15::i;:::-;:26;;:53;;;;;38266:13;;38256:7;:23;38226:53;:85;;;;;38284:11;:20;38296:7;38284:20;;;;;;;;;;;:27;;;;;;;;;;;;38283:28;38226:85;38219:92;;38145:174;;;:::o;5681:98::-;5734:7;5761:10;5754:17;;5681:98;:::o;47381:196::-;47523:2;47496:15;:24;47512:7;47496:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;47561:7;47557:2;47541:28;;47550:5;47541:28;;;;;;;;;;;;47381:196;;;:::o;30545:92::-;30601:7;30628:1;30621:8;;30545:92;:::o;42315:2144::-;42430:35;42468:21;42481:7;42468:12;:21::i;:::-;42430:59;;42528:4;42506:26;;:13;:18;;;:26;;;42502:67;;42541:28;;;;;;;;;;;;;;42502:67;42582:22;42624:4;42608:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;42645:36;42662:4;42668:12;:10;:12::i;:::-;42645:16;:36::i;:::-;42608:73;:126;;;;42722:12;:10;:12::i;:::-;42698:36;;:20;42710:7;42698:11;:20::i;:::-;:36;;;42608:126;42582:153;;42753:17;42748:66;;42779:35;;;;;;;;;;;;;;42748:66;42843:1;42829:16;;:2;:16;;;42825:52;;42854:23;;;;;;;;;;;;;;42825:52;42890:43;42912:4;42918:2;42922:7;42931:1;42890:21;:43::i;:::-;42998:35;43015:1;43019:7;43028:4;42998:8;:35::i;:::-;43359:1;43329:12;:18;43342:4;43329:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43403:1;43375:12;:16;43388:2;43375:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43421:31;43455:11;:20;43467:7;43455:20;;;;;;;;;;;43421:54;;43506:2;43490:8;:13;;;:18;;;;;;;;;;;;;;;;;;43556:15;43523:8;:23;;;:49;;;;;;;;;;;;;;;;;;43838:19;43870:1;43860:7;:11;43838:33;;43886:31;43920:11;:24;43932:11;43920:24;;;;;;;;;;;43886:58;;43988:1;43963:27;;:8;:13;;;;;;;;;;;;:27;;;43959:384;;44173:13;;44158:11;:28;44154:174;;44227:4;44211:8;:13;;;:20;;;;;;;;;;;;;;;;;;44280:13;:28;;;44254:8;:23;;;:54;;;;;;;;;;;;;;;;;;44154:174;43959:384;43304:1050;;;44390:7;44386:2;44371:27;;44380:4;44371:27;;;;;;;;;;;;44409:42;44430:4;44436:2;44440:7;44449:1;44409:20;:42::i;:::-;42419:2040;;42315:2144;;;:::o;33281:1111::-;33343:21;;:::i;:::-;33377:12;33392:7;33377:22;;33460:4;33441:15;:13;:15::i;:::-;:23;33437:888;;33477:13;;33470:4;:20;33466:859;;;33511:31;33545:11;:17;33557:4;33545:17;;;;;;;;;;;33511:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33586:9;:16;;;33581:729;;33657:1;33631:28;;:9;:14;;;:28;;;33627:101;;33695:9;33688:16;;;;;;33627:101;34030:261;34037:4;34030:261;;;34070:6;;;;;;;;34115:11;:17;34127:4;34115:17;;;;;;;;;;;34103:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34189:1;34163:28;;:9;:14;;;:28;;;34159:109;;34231:9;34224:16;;;;;;34159:109;34030:261;;;33581:729;33492:833;33466:859;33437:888;34353:31;;;;;;;;;;;;;;33281:1111;;;;:::o;38403:104::-;38472:27;38482:2;38486:8;38472:27;;;;;;;;;;;;:9;:27::i;:::-;38403:104;;:::o;8227:191::-;8301:16;8320:6;;;;;;;;;;;8301:25;;8346:8;8337:6;;:17;;;;;;;;;;;;;;;;;;8401:8;8370:40;;8391:8;8370:40;;;;;;;;;;;;8290:128;8227:191;:::o;48069:667::-;48232:4;48269:2;48253:36;;;48290:12;:10;:12::i;:::-;48304:4;48310:7;48319:5;48253:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;48249:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48504:1;48487:6;:13;:18;48483:235;;48533:40;;;;;;;;;;;;;;48483:235;48676:6;48670:13;48661:6;48657:2;48653:15;48646:38;48249:480;48382:45;;;48372:55;;;:6;:55;;;;48365:62;;;48069:667;;;;;;:::o;51451:109::-;51511:13;51544:8;51537:15;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51451:109;:::o;49384:159::-;;;;;:::o;50202:158::-;;;;;:::o;38880:1749::-;39003:20;39026:13;;39003:36;;39068:1;39054:16;;:2;:16;;;39050:48;;39079:19;;;;;;;;;;;;;;39050:48;39125:1;39113:8;:13;39109:44;;39135:18;;;;;;;;;;;;;;39109:44;39166:61;39196:1;39200:2;39204:12;39218:8;39166:21;:61::i;:::-;39539:8;39504:12;:16;39517:2;39504:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39603:8;39563:12;:16;39576:2;39563:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39662:2;39629:11;:25;39641:12;39629:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;39729:15;39679:11;:25;39691:12;39679:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;39762:20;39785:12;39762:35;;39812:11;39841:8;39826:12;:23;39812:37;;39870:15;:2;:13;;;:15::i;:::-;39866:631;;;39906:313;39962:12;39958:2;39937:38;;39954:1;39937:38;;;;;;;;;;;;40003:69;40042:1;40046:2;40050:14;;;;;;40066:5;40003:30;:69::i;:::-;39998:174;;40108:40;;;;;;;;;;;;;;39998:174;40214:3;40199:12;:18;39906:313;;40300:12;40283:13;;:29;40279:43;;40314:8;;;40279:43;39866:631;;;40363:119;40419:14;;;;;;40415:2;40394:40;;40411:1;40394:40;;;;;;;;;;;;40477:3;40462:12;:18;40363:119;;39866:631;40527:12;40511:13;:28;;;;39479:1072;;40561:60;40590:1;40594:2;40598:12;40612:8;40561:20;:60::i;:::-;38992:1637;38880:1749;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:117::-;4999:1;4996;4989:12;5013:117;5122:1;5119;5112:12;5136:180;5184:77;5181:1;5174:88;5281:4;5278:1;5271:15;5305:4;5302:1;5295:15;5322:281;5405:27;5427:4;5405:27;:::i;:::-;5397:6;5393:40;5535:6;5523:10;5520:22;5499:18;5487:10;5484:34;5481:62;5478:88;;;5546:18;;:::i;:::-;5478:88;5586:10;5582:2;5575:22;5365:238;5322:281;;:::o;5609:129::-;5643:6;5670:20;;:::i;:::-;5660:30;;5699:33;5727:4;5719:6;5699:33;:::i;:::-;5609:129;;;:::o;5744:308::-;5806:4;5896:18;5888:6;5885:30;5882:56;;;5918:18;;:::i;:::-;5882:56;5956:29;5978:6;5956:29;:::i;:::-;5948:37;;6040:4;6034;6030:15;6022:23;;5744:308;;;:::o;6058:146::-;6155:6;6150:3;6145;6132:30;6196:1;6187:6;6182:3;6178:16;6171:27;6058:146;;;:::o;6210:425::-;6288:5;6313:66;6329:49;6371:6;6329:49;:::i;:::-;6313:66;:::i;:::-;6304:75;;6402:6;6395:5;6388:21;6440:4;6433:5;6429:16;6478:3;6469:6;6464:3;6460:16;6457:25;6454:112;;;6485:79;;:::i;:::-;6454:112;6575:54;6622:6;6617:3;6612;6575:54;:::i;:::-;6294:341;6210:425;;;;;:::o;6655:340::-;6711:5;6760:3;6753:4;6745:6;6741:17;6737:27;6727:122;;6768:79;;:::i;:::-;6727:122;6885:6;6872:20;6910:79;6985:3;6977:6;6970:4;6962:6;6958:17;6910:79;:::i;:::-;6901:88;;6717:278;6655:340;;;;:::o;7001:509::-;7070:6;7119:2;7107:9;7098:7;7094:23;7090:32;7087:119;;;7125:79;;:::i;:::-;7087:119;7273:1;7262:9;7258:17;7245:31;7303:18;7295:6;7292:30;7289:117;;;7325:79;;:::i;:::-;7289:117;7430:63;7485:7;7476:6;7465:9;7461:22;7430:63;:::i;:::-;7420:73;;7216:287;7001:509;;;;:::o;7516:118::-;7603:24;7621:5;7603:24;:::i;:::-;7598:3;7591:37;7516:118;;:::o;7640:222::-;7733:4;7771:2;7760:9;7756:18;7748:26;;7784:71;7852:1;7841:9;7837:17;7828:6;7784:71;:::i;:::-;7640:222;;;;:::o;7868:86::-;7903:7;7943:4;7936:5;7932:16;7921:27;;7868:86;;;:::o;7960:118::-;8031:22;8047:5;8031:22;:::i;:::-;8024:5;8021:33;8011:61;;8068:1;8065;8058:12;8011:61;7960:118;:::o;8084:135::-;8128:5;8166:6;8153:20;8144:29;;8182:31;8207:5;8182:31;:::i;:::-;8084:135;;;;:::o;8225:325::-;8282:6;8331:2;8319:9;8310:7;8306:23;8302:32;8299:119;;;8337:79;;:::i;:::-;8299:119;8457:1;8482:51;8525:7;8516:6;8505:9;8501:22;8482:51;:::i;:::-;8472:61;;8428:115;8225:325;;;;:::o;8556:619::-;8633:6;8641;8649;8698:2;8686:9;8677:7;8673:23;8669:32;8666:119;;;8704:79;;:::i;:::-;8666:119;8824:1;8849:53;8894:7;8885:6;8874:9;8870:22;8849:53;:::i;:::-;8839:63;;8795:117;8951:2;8977:53;9022:7;9013:6;9002:9;8998:22;8977:53;:::i;:::-;8967:63;;8922:118;9079:2;9105:53;9150:7;9141:6;9130:9;9126:22;9105:53;:::i;:::-;9095:63;;9050:118;8556:619;;;;;:::o;9181:124::-;9258:6;9292:5;9286:12;9276:22;;9181:124;;;:::o;9311:194::-;9420:11;9454:6;9449:3;9442:19;9494:4;9489:3;9485:14;9470:29;;9311:194;;;;:::o;9511:142::-;9588:4;9611:3;9603:11;;9641:4;9636:3;9632:14;9624:22;;9511:142;;;:::o;9659:159::-;9733:11;9767:6;9762:3;9755:19;9807:4;9802:3;9798:14;9783:29;;9659:159;;;;:::o;9824:357::-;9902:3;9930:39;9963:5;9930:39;:::i;:::-;9985:61;10039:6;10034:3;9985:61;:::i;:::-;9978:68;;10055:65;10113:6;10108:3;10101:4;10094:5;10090:16;10055:65;:::i;:::-;10145:29;10167:6;10145:29;:::i;:::-;10140:3;10136:39;10129:46;;9906:275;9824:357;;;;:::o;10187:196::-;10276:10;10311:66;10373:3;10365:6;10311:66;:::i;:::-;10297:80;;10187:196;;;;:::o;10389:123::-;10469:4;10501;10496:3;10492:14;10484:22;;10389:123;;;:::o;10546:991::-;10685:3;10714:64;10772:5;10714:64;:::i;:::-;10794:96;10883:6;10878:3;10794:96;:::i;:::-;10787:103;;10916:3;10961:4;10953:6;10949:17;10944:3;10940:27;10991:66;11051:5;10991:66;:::i;:::-;11080:7;11111:1;11096:396;11121:6;11118:1;11115:13;11096:396;;;11192:9;11186:4;11182:20;11177:3;11170:33;11243:6;11237:13;11271:84;11350:4;11335:13;11271:84;:::i;:::-;11263:92;;11378:70;11441:6;11378:70;:::i;:::-;11368:80;;11477:4;11472:3;11468:14;11461:21;;11156:336;11143:1;11140;11136:9;11131:14;;11096:396;;;11100:14;11508:4;11501:11;;11528:3;11521:10;;10690:847;;;;;10546:991;;;;:::o;11543:413::-;11706:4;11744:2;11733:9;11729:18;11721:26;;11793:9;11787:4;11783:20;11779:1;11768:9;11764:17;11757:47;11821:128;11944:4;11935:6;11821:128;:::i;:::-;11813:136;;11543:413;;;;:::o;11962:619::-;12039:6;12047;12055;12104:2;12092:9;12083:7;12079:23;12075:32;12072:119;;;12110:79;;:::i;:::-;12072:119;12230:1;12255:53;12300:7;12291:6;12280:9;12276:22;12255:53;:::i;:::-;12245:63;;12201:117;12357:2;12383:53;12428:7;12419:6;12408:9;12404:22;12383:53;:::i;:::-;12373:63;;12328:118;12485:2;12511:53;12556:7;12547:6;12536:9;12532:22;12511:53;:::i;:::-;12501:63;;12456:118;11962:619;;;;;:::o;12587:474::-;12655:6;12663;12712:2;12700:9;12691:7;12687:23;12683:32;12680:119;;;12718:79;;:::i;:::-;12680:119;12838:1;12863:53;12908:7;12899:6;12888:9;12884:22;12863:53;:::i;:::-;12853:63;;12809:117;12965:2;12991:53;13036:7;13027:6;13016:9;13012:22;12991:53;:::i;:::-;12981:63;;12936:118;12587:474;;;;;:::o;13067:332::-;13188:4;13226:2;13215:9;13211:18;13203:26;;13239:71;13307:1;13296:9;13292:17;13283:6;13239:71;:::i;:::-;13320:72;13388:2;13377:9;13373:18;13364:6;13320:72;:::i;:::-;13067:332;;;;;:::o;13405:654::-;13483:6;13491;13540:2;13528:9;13519:7;13515:23;13511:32;13508:119;;;13546:79;;:::i;:::-;13508:119;13694:1;13683:9;13679:17;13666:31;13724:18;13716:6;13713:30;13710:117;;;13746:79;;:::i;:::-;13710:117;13851:63;13906:7;13897:6;13886:9;13882:22;13851:63;:::i;:::-;13841:73;;13637:287;13963:2;13989:53;14034:7;14025:6;14014:9;14010:22;13989:53;:::i;:::-;13979:63;;13934:118;13405:654;;;;;:::o;14065:329::-;14124:6;14173:2;14161:9;14152:7;14148:23;14144:32;14141:119;;;14179:79;;:::i;:::-;14141:119;14299:1;14324:53;14369:7;14360:6;14349:9;14345:22;14324:53;:::i;:::-;14314:63;;14270:117;14065:329;;;;:::o;14400:117::-;14509:1;14506;14499:12;14523:117;14632:1;14629;14622:12;14660:553;14718:8;14728:6;14778:3;14771:4;14763:6;14759:17;14755:27;14745:122;;14786:79;;:::i;:::-;14745:122;14899:6;14886:20;14876:30;;14929:18;14921:6;14918:30;14915:117;;;14951:79;;:::i;:::-;14915:117;15065:4;15057:6;15053:17;15041:29;;15119:3;15111:4;15103:6;15099:17;15089:8;15085:32;15082:41;15079:128;;;15126:79;;:::i;:::-;15079:128;14660:553;;;;;:::o;15219:674::-;15299:6;15307;15315;15364:2;15352:9;15343:7;15339:23;15335:32;15332:119;;;15370:79;;:::i;:::-;15332:119;15518:1;15507:9;15503:17;15490:31;15548:18;15540:6;15537:30;15534:117;;;15570:79;;:::i;:::-;15534:117;15683:65;15740:7;15731:6;15720:9;15716:22;15683:65;:::i;:::-;15665:83;;;;15461:297;15797:2;15823:53;15868:7;15859:6;15848:9;15844:22;15823:53;:::i;:::-;15813:63;;15768:118;15219:674;;;;;:::o;15899:116::-;15969:21;15984:5;15969:21;:::i;:::-;15962:5;15959:32;15949:60;;16005:1;16002;15995:12;15949:60;15899:116;:::o;16021:133::-;16064:5;16102:6;16089:20;16080:29;;16118:30;16142:5;16118:30;:::i;:::-;16021:133;;;;:::o;16160:468::-;16225:6;16233;16282:2;16270:9;16261:7;16257:23;16253:32;16250:119;;;16288:79;;:::i;:::-;16250:119;16408:1;16433:53;16478:7;16469:6;16458:9;16454:22;16433:53;:::i;:::-;16423:63;;16379:117;16535:2;16561:50;16603:7;16594:6;16583:9;16579:22;16561:50;:::i;:::-;16551:60;;16506:115;16160:468;;;;;:::o;16634:854::-;16724:6;16732;16740;16789:2;16777:9;16768:7;16764:23;16760:32;16757:119;;;16795:79;;:::i;:::-;16757:119;16943:1;16932:9;16928:17;16915:31;16973:18;16965:6;16962:30;16959:117;;;16995:79;;:::i;:::-;16959:117;17100:63;17155:7;17146:6;17135:9;17131:22;17100:63;:::i;:::-;17090:73;;16886:287;17240:2;17229:9;17225:18;17212:32;17271:18;17263:6;17260:30;17257:117;;;17293:79;;:::i;:::-;17257:117;17406:65;17463:7;17454:6;17443:9;17439:22;17406:65;:::i;:::-;17388:83;;;;17183:298;16634:854;;;;;:::o;17494:1199::-;17605:6;17613;17621;17629;17637;17686:2;17674:9;17665:7;17661:23;17657:32;17654:119;;;17692:79;;:::i;:::-;17654:119;17840:1;17829:9;17825:17;17812:31;17870:18;17862:6;17859:30;17856:117;;;17892:79;;:::i;:::-;17856:117;18005:65;18062:7;18053:6;18042:9;18038:22;18005:65;:::i;:::-;17987:83;;;;17783:297;18147:2;18136:9;18132:18;18119:32;18178:18;18170:6;18167:30;18164:117;;;18200:79;;:::i;:::-;18164:117;18313:65;18370:7;18361:6;18350:9;18346:22;18313:65;:::i;:::-;18295:83;;;;18090:298;18455:2;18444:9;18440:18;18427:32;18486:18;18478:6;18475:30;18472:117;;;18508:79;;:::i;:::-;18472:117;18613:63;18668:7;18659:6;18648:9;18644:22;18613:63;:::i;:::-;18603:73;;18398:288;17494:1199;;;;;;;;:::o;18699:307::-;18760:4;18850:18;18842:6;18839:30;18836:56;;;18872:18;;:::i;:::-;18836:56;18910:29;18932:6;18910:29;:::i;:::-;18902:37;;18994:4;18988;18984:15;18976:23;;18699:307;;;:::o;19012:423::-;19089:5;19114:65;19130:48;19171:6;19130:48;:::i;:::-;19114:65;:::i;:::-;19105:74;;19202:6;19195:5;19188:21;19240:4;19233:5;19229:16;19278:3;19269:6;19264:3;19260:16;19257:25;19254:112;;;19285:79;;:::i;:::-;19254:112;19375:54;19422:6;19417:3;19412;19375:54;:::i;:::-;19095:340;19012:423;;;;;:::o;19454:338::-;19509:5;19558:3;19551:4;19543:6;19539:17;19535:27;19525:122;;19566:79;;:::i;:::-;19525:122;19683:6;19670:20;19708:78;19782:3;19774:6;19767:4;19759:6;19755:17;19708:78;:::i;:::-;19699:87;;19515:277;19454:338;;;;:::o;19798:943::-;19893:6;19901;19909;19917;19966:3;19954:9;19945:7;19941:23;19937:33;19934:120;;;19973:79;;:::i;:::-;19934:120;20093:1;20118:53;20163:7;20154:6;20143:9;20139:22;20118:53;:::i;:::-;20108:63;;20064:117;20220:2;20246:53;20291:7;20282:6;20271:9;20267:22;20246:53;:::i;:::-;20236:63;;20191:118;20348:2;20374:53;20419:7;20410:6;20399:9;20395:22;20374:53;:::i;:::-;20364:63;;20319:118;20504:2;20493:9;20489:18;20476:32;20535:18;20527:6;20524:30;20521:117;;;20557:79;;:::i;:::-;20521:117;20662:62;20716:7;20707:6;20696:9;20692:22;20662:62;:::i;:::-;20652:72;;20447:287;19798:943;;;;;;;:::o;20747:529::-;20818:6;20826;20875:2;20863:9;20854:7;20850:23;20846:32;20843:119;;;20881:79;;:::i;:::-;20843:119;21029:1;21018:9;21014:17;21001:31;21059:18;21051:6;21048:30;21045:117;;;21081:79;;:::i;:::-;21045:117;21194:65;21251:7;21242:6;21231:9;21227:22;21194:65;:::i;:::-;21176:83;;;;20972:297;20747:529;;;;;:::o;21282:619::-;21359:6;21367;21375;21424:2;21412:9;21403:7;21399:23;21395:32;21392:119;;;21430:79;;:::i;:::-;21392:119;21550:1;21575:53;21620:7;21611:6;21600:9;21596:22;21575:53;:::i;:::-;21565:63;;21521:117;21677:2;21703:53;21748:7;21739:6;21728:9;21724:22;21703:53;:::i;:::-;21693:63;;21648:118;21805:2;21831:53;21876:7;21867:6;21856:9;21852:22;21831:53;:::i;:::-;21821:63;;21776:118;21282:619;;;;;:::o;21907:674::-;21987:6;21995;22003;22052:2;22040:9;22031:7;22027:23;22023:32;22020:119;;;22058:79;;:::i;:::-;22020:119;22178:1;22203:53;22248:7;22239:6;22228:9;22224:22;22203:53;:::i;:::-;22193:63;;22149:117;22333:2;22322:9;22318:18;22305:32;22364:18;22356:6;22353:30;22350:117;;;22386:79;;:::i;:::-;22350:117;22499:65;22556:7;22547:6;22536:9;22532:22;22499:65;:::i;:::-;22481:83;;;;22276:298;21907:674;;;;;:::o;22587:474::-;22655:6;22663;22712:2;22700:9;22691:7;22687:23;22683:32;22680:119;;;22718:79;;:::i;:::-;22680:119;22838:1;22863:53;22908:7;22899:6;22888:9;22884:22;22863:53;:::i;:::-;22853:63;;22809:117;22965:2;22991:53;23036:7;23027:6;23016:9;23012:22;22991:53;:::i;:::-;22981:63;;22936:118;22587:474;;;;;:::o;23067:834::-;23155:6;23163;23212:2;23200:9;23191:7;23187:23;23183:32;23180:119;;;23218:79;;:::i;:::-;23180:119;23366:1;23355:9;23351:17;23338:31;23396:18;23388:6;23385:30;23382:117;;;23418:79;;:::i;:::-;23382:117;23523:63;23578:7;23569:6;23558:9;23554:22;23523:63;:::i;:::-;23513:73;;23309:287;23663:2;23652:9;23648:18;23635:32;23694:18;23686:6;23683:30;23680:117;;;23716:79;;:::i;:::-;23680:117;23821:63;23876:7;23867:6;23856:9;23852:22;23821:63;:::i;:::-;23811:73;;23606:288;23067:834;;;;;:::o;23907:180::-;23955:77;23952:1;23945:88;24052:4;24049:1;24042:15;24076:4;24073:1;24066:15;24093:320;24137:6;24174:1;24168:4;24164:12;24154:22;;24221:1;24215:4;24211:12;24242:18;24232:81;;24298:4;24290:6;24286:17;24276:27;;24232:81;24360:2;24352:6;24349:14;24329:18;24326:38;24323:84;;24379:18;;:::i;:::-;24323:84;24144:269;24093:320;;;:::o;24419:182::-;24559:34;24555:1;24547:6;24543:14;24536:58;24419:182;:::o;24607:366::-;24749:3;24770:67;24834:2;24829:3;24770:67;:::i;:::-;24763:74;;24846:93;24935:3;24846:93;:::i;:::-;24964:2;24959:3;24955:12;24948:19;;24607:366;;;:::o;24979:419::-;25145:4;25183:2;25172:9;25168:18;25160:26;;25232:9;25226:4;25222:20;25218:1;25207:9;25203:17;25196:47;25260:131;25386:4;25260:131;:::i;:::-;25252:139;;24979:419;;;:::o;25404:148::-;25506:11;25543:3;25528:18;;25404:148;;;;:::o;25558:141::-;25607:4;25630:3;25622:11;;25653:3;25650:1;25643:14;25687:4;25684:1;25674:18;25666:26;;25558:141;;;:::o;25729:874::-;25832:3;25869:5;25863:12;25898:36;25924:9;25898:36;:::i;:::-;25950:89;26032:6;26027:3;25950:89;:::i;:::-;25943:96;;26070:1;26059:9;26055:17;26086:1;26081:166;;;;26261:1;26256:341;;;;26048:549;;26081:166;26165:4;26161:9;26150;26146:25;26141:3;26134:38;26227:6;26220:14;26213:22;26205:6;26201:35;26196:3;26192:45;26185:52;;26081:166;;26256:341;26323:38;26355:5;26323:38;:::i;:::-;26383:1;26397:154;26411:6;26408:1;26405:13;26397:154;;;26485:7;26479:14;26475:1;26470:3;26466:11;26459:35;26535:1;26526:7;26522:15;26511:26;;26433:4;26430:1;26426:12;26421:17;;26397:154;;;26580:6;26575:3;26571:16;26564:23;;26263:334;;26048:549;;25836:767;;25729:874;;;;:::o;26609:423::-;26783:3;26805:92;26893:3;26884:6;26805:92;:::i;:::-;26798:99;;26914:92;27002:3;26993:6;26914:92;:::i;:::-;26907:99;;27023:3;27016:10;;26609:423;;;;;:::o;27038:180::-;27086:77;27083:1;27076:88;27183:4;27180:1;27173:15;27207:4;27204:1;27197:15;27224:180;27272:77;27269:1;27262:88;27369:4;27366:1;27359:15;27393:4;27390:1;27383:15;27410:233;27449:3;27472:24;27490:5;27472:24;:::i;:::-;27463:33;;27518:66;27511:5;27508:77;27505:103;;27588:18;;:::i;:::-;27505:103;27635:1;27628:5;27624:13;27617:20;;27410:233;;;:::o;27649:410::-;27689:7;27712:20;27730:1;27712:20;:::i;:::-;27707:25;;27746:20;27764:1;27746:20;:::i;:::-;27741:25;;27801:1;27798;27794:9;27823:30;27841:11;27823:30;:::i;:::-;27812:41;;28002:1;27993:7;27989:15;27986:1;27983:22;27963:1;27956:9;27936:83;27913:139;;28032:18;;:::i;:::-;27913:139;27697:362;27649:410;;;;:::o;28065:180::-;28113:77;28110:1;28103:88;28210:4;28207:1;28200:15;28234:4;28231:1;28224:15;28251:185;28291:1;28308:20;28326:1;28308:20;:::i;:::-;28303:25;;28342:20;28360:1;28342:20;:::i;:::-;28337:25;;28381:1;28371:35;;28386:18;;:::i;:::-;28371:35;28428:1;28425;28421:9;28416:14;;28251:185;;;;:::o;28442:194::-;28482:4;28502:20;28520:1;28502:20;:::i;:::-;28497:25;;28536:20;28554:1;28536:20;:::i;:::-;28531:25;;28580:1;28577;28573:9;28565:17;;28604:1;28598:4;28595:11;28592:37;;;28609:18;;:::i;:::-;28592:37;28442:194;;;;:::o;28642:157::-;28782:9;28778:1;28770:6;28766:14;28759:33;28642:157;:::o;28805:365::-;28947:3;28968:66;29032:1;29027:3;28968:66;:::i;:::-;28961:73;;29043:93;29132:3;29043:93;:::i;:::-;29161:2;29156:3;29152:12;29145:19;;28805:365;;;:::o;29176:419::-;29342:4;29380:2;29369:9;29365:18;29357:26;;29429:9;29423:4;29419:20;29415:1;29404:9;29400:17;29393:47;29457:131;29583:4;29457:131;:::i;:::-;29449:139;;29176:419;;;:::o;29601:269::-;29730:3;29752:92;29840:3;29831:6;29752:92;:::i;:::-;29745:99;;29861:3;29854:10;;29601:269;;;;:::o;29876:171::-;29915:3;29938:24;29956:5;29938:24;:::i;:::-;29929:33;;29984:4;29977:5;29974:15;29971:41;;29992:18;;:::i;:::-;29971:41;30039:1;30032:5;30028:13;30021:20;;29876:171;;;:::o;30053:181::-;30193:33;30189:1;30181:6;30177:14;30170:57;30053:181;:::o;30240:366::-;30382:3;30403:67;30467:2;30462:3;30403:67;:::i;:::-;30396:74;;30479:93;30568:3;30479:93;:::i;:::-;30597:2;30592:3;30588:12;30581:19;;30240:366;;;:::o;30612:419::-;30778:4;30816:2;30805:9;30801:18;30793:26;;30865:9;30859:4;30855:20;30851:1;30840:9;30836:17;30829:47;30893:131;31019:4;30893:131;:::i;:::-;30885:139;;30612:419;;;:::o;31037:147::-;31138:11;31175:3;31160:18;;31037:147;;;;:::o;31190:114::-;;:::o;31310:398::-;31469:3;31490:83;31571:1;31566:3;31490:83;:::i;:::-;31483:90;;31582:93;31671:3;31582:93;:::i;:::-;31700:1;31695:3;31691:11;31684:18;;31310:398;;;:::o;31714:379::-;31898:3;31920:147;32063:3;31920:147;:::i;:::-;31913:154;;32084:3;32077:10;;31714:379;;;:::o;32099:162::-;32239:14;32235:1;32227:6;32223:14;32216:38;32099:162;:::o;32267:366::-;32409:3;32430:67;32494:2;32489:3;32430:67;:::i;:::-;32423:74;;32506:93;32595:3;32506:93;:::i;:::-;32624:2;32619:3;32615:12;32608:19;;32267:366;;;:::o;32639:419::-;32805:4;32843:2;32832:9;32828:18;32820:26;;32892:9;32886:4;32882:20;32878:1;32867:9;32863:17;32856:47;32920:131;33046:4;32920:131;:::i;:::-;32912:139;;32639:419;;;:::o;33064:390::-;33170:3;33198:39;33231:5;33198:39;:::i;:::-;33253:89;33335:6;33330:3;33253:89;:::i;:::-;33246:96;;33351:65;33409:6;33404:3;33397:4;33390:5;33386:16;33351:65;:::i;:::-;33441:6;33436:3;33432:16;33425:23;;33174:280;33064:390;;;;:::o;33460:275::-;33592:3;33614:95;33705:3;33696:6;33614:95;:::i;:::-;33607:102;;33726:3;33719:10;;33460:275;;;;:::o;33741:171::-;33881:23;33877:1;33869:6;33865:14;33858:47;33741:171;:::o;33918:366::-;34060:3;34081:67;34145:2;34140:3;34081:67;:::i;:::-;34074:74;;34157:93;34246:3;34157:93;:::i;:::-;34275:2;34270:3;34266:12;34259:19;;33918:366;;;:::o;34290:419::-;34456:4;34494:2;34483:9;34479:18;34471:26;;34543:9;34537:4;34533:20;34529:1;34518:9;34514:17;34507:47;34571:131;34697:4;34571:131;:::i;:::-;34563:139;;34290:419;;;:::o;34715:169::-;34855:21;34851:1;34843:6;34839:14;34832:45;34715:169;:::o;34890:366::-;35032:3;35053:67;35117:2;35112:3;35053:67;:::i;:::-;35046:74;;35129:93;35218:3;35129:93;:::i;:::-;35247:2;35242:3;35238:12;35231:19;;34890:366;;;:::o;35262:419::-;35428:4;35466:2;35455:9;35451:18;35443:26;;35515:9;35509:4;35505:20;35501:1;35490:9;35486:17;35479:47;35543:131;35669:4;35543:131;:::i;:::-;35535:139;;35262:419;;;:::o;35687:93::-;35724:6;35771:2;35766;35759:5;35755:14;35751:23;35741:33;;35687:93;;;:::o;35786:107::-;35830:8;35880:5;35874:4;35870:16;35849:37;;35786:107;;;;:::o;35899:393::-;35968:6;36018:1;36006:10;36002:18;36041:97;36071:66;36060:9;36041:97;:::i;:::-;36159:39;36189:8;36178:9;36159:39;:::i;:::-;36147:51;;36231:4;36227:9;36220:5;36216:21;36207:30;;36280:4;36270:8;36266:19;36259:5;36256:30;36246:40;;35975:317;;35899:393;;;;;:::o;36298:60::-;36326:3;36347:5;36340:12;;36298:60;;;:::o;36364:142::-;36414:9;36447:53;36465:34;36474:24;36492:5;36474:24;:::i;:::-;36465:34;:::i;:::-;36447:53;:::i;:::-;36434:66;;36364:142;;;:::o;36512:75::-;36555:3;36576:5;36569:12;;36512:75;;;:::o;36593:269::-;36703:39;36734:7;36703:39;:::i;:::-;36764:91;36813:41;36837:16;36813:41;:::i;:::-;36805:6;36798:4;36792:11;36764:91;:::i;:::-;36758:4;36751:105;36669:193;36593:269;;;:::o;36868:73::-;36913:3;36868:73;:::o;36947:189::-;37024:32;;:::i;:::-;37065:65;37123:6;37115;37109:4;37065:65;:::i;:::-;37000:136;36947:189;;:::o;37142:186::-;37202:120;37219:3;37212:5;37209:14;37202:120;;;37273:39;37310:1;37303:5;37273:39;:::i;:::-;37246:1;37239:5;37235:13;37226:22;;37202:120;;;37142:186;;:::o;37334:543::-;37435:2;37430:3;37427:11;37424:446;;;37469:38;37501:5;37469:38;:::i;:::-;37553:29;37571:10;37553:29;:::i;:::-;37543:8;37539:44;37736:2;37724:10;37721:18;37718:49;;;37757:8;37742:23;;37718:49;37780:80;37836:22;37854:3;37836:22;:::i;:::-;37826:8;37822:37;37809:11;37780:80;:::i;:::-;37439:431;;37424:446;37334:543;;;:::o;37883:117::-;37937:8;37987:5;37981:4;37977:16;37956:37;;37883:117;;;;:::o;38006:169::-;38050:6;38083:51;38131:1;38127:6;38119:5;38116:1;38112:13;38083:51;:::i;:::-;38079:56;38164:4;38158;38154:15;38144:25;;38057:118;38006:169;;;;:::o;38180:295::-;38256:4;38402:29;38427:3;38421:4;38402:29;:::i;:::-;38394:37;;38464:3;38461:1;38457:11;38451:4;38448:21;38440:29;;38180:295;;;;:::o;38480:1395::-;38597:37;38630:3;38597:37;:::i;:::-;38699:18;38691:6;38688:30;38685:56;;;38721:18;;:::i;:::-;38685:56;38765:38;38797:4;38791:11;38765:38;:::i;:::-;38850:67;38910:6;38902;38896:4;38850:67;:::i;:::-;38944:1;38968:4;38955:17;;39000:2;38992:6;38989:14;39017:1;39012:618;;;;39674:1;39691:6;39688:77;;;39740:9;39735:3;39731:19;39725:26;39716:35;;39688:77;39791:67;39851:6;39844:5;39791:67;:::i;:::-;39785:4;39778:81;39647:222;38982:887;;39012:618;39064:4;39060:9;39052:6;39048:22;39098:37;39130:4;39098:37;:::i;:::-;39157:1;39171:208;39185:7;39182:1;39179:14;39171:208;;;39264:9;39259:3;39255:19;39249:26;39241:6;39234:42;39315:1;39307:6;39303:14;39293:24;;39362:2;39351:9;39347:18;39334:31;;39208:4;39205:1;39201:12;39196:17;;39171:208;;;39407:6;39398:7;39395:19;39392:179;;;39465:9;39460:3;39456:19;39450:26;39508:48;39550:4;39542:6;39538:17;39527:9;39508:48;:::i;:::-;39500:6;39493:64;39415:156;39392:179;39617:1;39613;39605:6;39601:14;39597:22;39591:4;39584:36;39019:611;;;38982:887;;38572:1303;;;38480:1395;;:::o;39881:191::-;39919:4;39939:18;39955:1;39939:18;:::i;:::-;39934:23;;39971:18;39987:1;39971:18;:::i;:::-;39966:23;;40013:1;40010;40006:9;39998:17;;40037:4;40031;40028:14;40025:40;;;40045:18;;:::i;:::-;40025:40;39881:191;;;;:::o;40102:330::-;40218:3;40239:89;40321:6;40316:3;40239:89;:::i;:::-;40232:96;;40338:56;40387:6;40382:3;40375:5;40338:56;:::i;:::-;40419:6;40414:3;40410:16;40403:23;;40102:330;;;;;:::o;40438:295::-;40580:3;40602:105;40703:3;40694:6;40686;40602:105;:::i;:::-;40595:112;;40724:3;40717:10;;40438:295;;;;;:::o;40739:155::-;40879:7;40875:1;40867:6;40863:14;40856:31;40739:155;:::o;40900:365::-;41042:3;41063:66;41127:1;41122:3;41063:66;:::i;:::-;41056:73;;41138:93;41227:3;41138:93;:::i;:::-;41256:2;41251:3;41247:12;41240:19;;40900:365;;;:::o;41271:419::-;41437:4;41475:2;41464:9;41460:18;41452:26;;41524:9;41518:4;41514:20;41510:1;41499:9;41495:17;41488:47;41552:131;41678:4;41552:131;:::i;:::-;41544:139;;41271:419;;;:::o;41718:327::-;41832:3;41853:88;41934:6;41929:3;41853:88;:::i;:::-;41846:95;;41951:56;42000:6;41995:3;41988:5;41951:56;:::i;:::-;42032:6;42027:3;42023:16;42016:23;;41718:327;;;;;:::o;42051:291::-;42191:3;42213:103;42312:3;42303:6;42295;42213:103;:::i;:::-;42206:110;;42333:3;42326:10;;42051:291;;;;;:::o;42348:97::-;42407:6;42435:3;42425:13;;42348:97;;;;:::o;42451:1403::-;42575:44;42615:3;42610;42575:44;:::i;:::-;42684:18;42676:6;42673:30;42670:56;;;42706:18;;:::i;:::-;42670:56;42750:38;42782:4;42776:11;42750:38;:::i;:::-;42835:67;42895:6;42887;42881:4;42835:67;:::i;:::-;42929:1;42958:2;42950:6;42947:14;42975:1;42970:632;;;;43646:1;43663:6;43660:84;;;43719:9;43714:3;43710:19;43697:33;43688:42;;43660:84;43770:67;43830:6;43823:5;43770:67;:::i;:::-;43764:4;43757:81;43619:229;42940:908;;42970:632;43022:4;43018:9;43010:6;43006:22;43056:37;43088:4;43056:37;:::i;:::-;43115:1;43129:215;43143:7;43140:1;43137:14;43129:215;;;43229:9;43224:3;43220:19;43207:33;43199:6;43192:49;43280:1;43272:6;43268:14;43258:24;;43327:2;43316:9;43312:18;43299:31;;43166:4;43163:1;43159:12;43154:17;;43129:215;;;43372:6;43363:7;43360:19;43357:186;;;43437:9;43432:3;43428:19;43415:33;43480:48;43522:4;43514:6;43510:17;43499:9;43480:48;:::i;:::-;43472:6;43465:64;43380:163;43357:186;43589:1;43585;43577:6;43573:14;43569:22;43563:4;43556:36;42977:625;;;42940:908;;42550:1304;;;42451:1403;;;:::o;43860:429::-;44037:3;44059:95;44150:3;44141:6;44059:95;:::i;:::-;44052:102;;44171:92;44259:3;44250:6;44171:92;:::i;:::-;44164:99;;44280:3;44273:10;;43860:429;;;;;:::o;44295:225::-;44435:34;44431:1;44423:6;44419:14;44412:58;44504:8;44499:2;44491:6;44487:15;44480:33;44295:225;:::o;44526:366::-;44668:3;44689:67;44753:2;44748:3;44689:67;:::i;:::-;44682:74;;44765:93;44854:3;44765:93;:::i;:::-;44883:2;44878:3;44874:12;44867:19;;44526:366;;;:::o;44898:419::-;45064:4;45102:2;45091:9;45087:18;45079:26;;45151:9;45145:4;45141:20;45137:1;45126:9;45122:17;45115:47;45179:131;45305:4;45179:131;:::i;:::-;45171:139;;44898:419;;;:::o;45323:98::-;45374:6;45408:5;45402:12;45392:22;;45323:98;;;:::o;45427:168::-;45510:11;45544:6;45539:3;45532:19;45584:4;45579:3;45575:14;45560:29;;45427:168;;;;:::o;45601:373::-;45687:3;45715:38;45747:5;45715:38;:::i;:::-;45769:70;45832:6;45827:3;45769:70;:::i;:::-;45762:77;;45848:65;45906:6;45901:3;45894:4;45887:5;45883:16;45848:65;:::i;:::-;45938:29;45960:6;45938:29;:::i;:::-;45933:3;45929:39;45922:46;;45691:283;45601:373;;;;:::o;45980:640::-;46175:4;46213:3;46202:9;46198:19;46190:27;;46227:71;46295:1;46284:9;46280:17;46271:6;46227:71;:::i;:::-;46308:72;46376:2;46365:9;46361:18;46352:6;46308:72;:::i;:::-;46390;46458:2;46447:9;46443:18;46434:6;46390:72;:::i;:::-;46509:9;46503:4;46499:20;46494:2;46483:9;46479:18;46472:48;46537:76;46608:4;46599:6;46537:76;:::i;:::-;46529:84;;45980:640;;;;;;;:::o;46626:141::-;46682:5;46713:6;46707:13;46698:22;;46729:32;46755:5;46729:32;:::i;:::-;46626:141;;;;:::o;46773:349::-;46842:6;46891:2;46879:9;46870:7;46866:23;46862:32;46859:119;;;46897:79;;:::i;:::-;46859:119;47017:1;47042:63;47097:7;47088:6;47077:9;47073:22;47042:63;:::i;:::-;47032:73;;46988:127;46773:349;;;;:::o

Swarm Source

ipfs://1b4f10ffbee7945fe2ec4b7404ac33431de5b659b3649ec921bce5e6622d5f55
[ 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.