ETH Price: $2,667.23 (+1.78%)
Gas: 0.81 Gwei

Token

Quit Bitching Coalition NFT (QBC)
 

Overview

Max Total Supply

491 QBC

Holders

148

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
5 QBC
0x85E87aeb35dC8E6CEfe09729d9586B222f1Ee005
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
QBC

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-10-26
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}
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);
    }
}
pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}
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);
}
pragma solidity ^0.8.0;

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


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

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

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

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

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

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

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

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}
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;
    }
}
pragma solidity ^0.8.0;


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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

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

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

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

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


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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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


pragma solidity ^0.8.0;


contract QBC is Ownable, ERC721 {
    
    uint public tokenPrice = 0.08 ether;
    uint constant maxSupply = 2929;
    uint public presale_price = 0.06 ether;
    uint public totalSupply = 0;

    bool public Presale_status = false;
    bool public public_sale_status = false;
    
    mapping(address => bool) private presaleList;
    mapping(address => uint) private buyers_list;

    string public baseURI;
    uint public maxPerTransaction = 7;  //Max Limit for Sale
    uint public _walletLimit=50; //Max Limit for perwallet
  
         
    constructor() ERC721("Quit Bitching Coalition NFT", "QBC"){}

   function buy(uint _count) public payable{
         require(public_sale_status == true, "Sale is Paused.");
         require(checkbuyer() + _count <= _walletLimit, "Wallet limit Reached");
        require(_count > 0, "mint at least one token");
        require(_count <= maxPerTransaction, "max per transaction 20");
        require(totalSupply + _count <= maxSupply, "Not enough tokens left");
        require(msg.value >= tokenPrice * _count, "incorrect ether amount");
       
      
        for(uint i = 0; i < _count; i++)
       { _safeMint(msg.sender, totalSupply + 1);
             totalSupply += 1; 
             addbuyer();
           }

    }

   function buy_presale(uint _count) public payable{ 
        require(Presale_status == true, "Sale is Paused.");
        require(checkbuyer() + _count <= _walletLimit, "Wallet limit Reached");
        require(checkPresale() == true, "You are not in Presale List.");
        require(_count > 0, "mint at least one token");
        require(_count <= maxPerTransaction, "max per transaction 20");
        require(totalSupply + _count<= maxSupply, "Not enough tokens left");
        require(msg.value >= presale_price * _count, "incorrect ether amount");
        
       
         for(uint i = 0; i < _count; i++)
             { _safeMint(msg.sender, totalSupply + 1);
               totalSupply += 1; 
               addbuyer();
           }
    }

    function sendGifts(address[] memory _wallets) public onlyOwner{
        require(_wallets.length > 0, "mint at least one token");
        require(totalSupply + _wallets.length <= maxSupply, "not enough tokens left");
        for(uint i = 0; i < _wallets.length; i++)
            _safeMint(_wallets[i], totalSupply + 1 + i);
        totalSupply += _wallets.length;
    }
    
    function addPresaleList(address[] memory _wallets) public onlyOwner{
        for(uint i; i < _wallets.length; i++)
            presaleList[_wallets[i]] = true;
    }
    
    function is_presale_active() public view returns(uint){
        require(Presale_status == true,"Sale not Started Yet.");
        return 1;
     }
      function is_sale_active() public view returns(uint){
      require(public_sale_status == true,"Sale not Started Yet.");
        return 1;
     }
     function checkPresale() public view returns(bool){
        return presaleList[msg.sender];
    }
    function setBaseUri(string memory _uri) external onlyOwner {
        baseURI = _uri;
    }
     function pre_Sale_status(bool temp) external onlyOwner {
        Presale_status = temp;
    }
    function publicSale_status(bool temp) external onlyOwner {
        public_sale_status = temp;
    }
     function update_public_price(uint price) external onlyOwner {
        tokenPrice = price;
    }
       function update_preSale_price(uint price) external onlyOwner {
        presale_price = price;
    }
  
    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }

    function addbuyer() internal {
         buyers_list[msg.sender] = buyers_list[msg.sender] + 1;
    }
    
    function checkbuyer() public view returns (uint) {
       
         return buyers_list[msg.sender];
    }

    function update_wallet_limit(uint number) external onlyOwner {
      _walletLimit = number;
    }

    function update_transaction_limit(uint number) external onlyOwner {
      maxPerTransaction = number;
    }

    function withdraw() external onlyOwner {
               uint _balance = address(this).balance;
        payable(owner()).transfer(_balance); //Owner

    }


}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"Presale_status","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_walletLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_wallets","type":"address[]"}],"name":"addPresaleList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"buy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"buy_presale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"checkPresale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"checkbuyer","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"is_presale_active","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"is_sale_active","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"temp","type":"bool"}],"name":"pre_Sale_status","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"presale_price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"temp","type":"bool"}],"name":"publicSale_status","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"public_sale_status","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_wallets","type":"address[]"}],"name":"sendGifts","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":"_uri","type":"string"}],"name":"setBaseUri","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":[],"name":"tokenPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"update_preSale_price","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"update_public_price","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"number","type":"uint256"}],"name":"update_transaction_limit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"number","type":"uint256"}],"name":"update_wallet_limit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405267011c37937e08000060075566d529ae9e86000060085560006009556000600a60006101000a81548160ff0219169083151502179055506000600a60016101000a81548160ff0219169083151502179055506007600e556032600f553480156200006d57600080fd5b506040518060400160405280601b81526020017f51756974204269746368696e6720436f616c6974696f6e204e465400000000008152506040518060400160405280600381526020017f5142430000000000000000000000000000000000000000000000000000000000815250620000fa620000ee6200013460201b60201c565b6200013c60201b60201c565b81600190805190602001906200011292919062000200565b5080600290805190602001906200012b92919062000200565b50505062000315565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200020e90620002b0565b90600052602060002090601f0160209004810192826200023257600085556200027e565b82601f106200024d57805160ff19168380011785556200027e565b828001600101855582156200027e579182015b828111156200027d57825182559160200191906001019062000260565b5b5090506200028d919062000291565b5090565b5b80821115620002ac57600081600090555060010162000292565b5090565b60006002820490506001821680620002c957607f821691505b60208210811415620002e057620002df620002e6565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6146cd80620003256000396000f3fe60806040526004361061023b5760003560e01c80637ff9b5961161012e578063ba6dd6f0116100ab578063e2a70eaf1161006f578063e2a70eaf1461081f578063e985e9c514610848578063ebb3151014610885578063ef5f1985146108ae578063f2fde38b146108d75761023b565b8063ba6dd6f014610754578063bb2841c51461077f578063c87b56dd1461079b578063cd7de458146107d8578063d96a094a146108035761023b565b8063969745e8116100f2578063969745e814610683578063996953fc146106ae578063a0bcfc7f146106d9578063a22cb46514610702578063b88d4fde1461072b5761023b565b80637ff9b596146105ae5780638358090b146105d95780638da5cb5b1461060257806395d89b411461062d57806395ea5e67146106585761023b565b806339ff7253116101bc57806363adc5a51161018057806363adc5a5146104dd5780636c0360eb1461050657806370a0823114610531578063715018a61461056e5780637c8255db146105855761023b565b806339ff72531461040a5780633ccfd60b1461043557806342842e0e1461044c5780634b980d67146104755780636352211e146104a05761023b565b8063095ea7b311610203578063095ea7b3146103395780630e2351e21461036257806318160ddd1461038d5780631cef37e4146103b857806323b872dd146103e15761023b565b806301ffc9a714610240578063026896631461027d57806306fdde03146102a857806307fdef95146102d3578063081812fc146102fc575b600080fd5b34801561024c57600080fd5b50610267600480360381019061026291906132b1565b610900565b6040516102749190613847565b60405180910390f35b34801561028957600080fd5b506102926109e2565b60405161029f9190613847565b60405180910390f35b3480156102b457600080fd5b506102bd610a36565b6040516102ca9190613862565b60405180910390f35b3480156102df57600080fd5b506102fa60048036038101906102f59190613354565b610ac8565b005b34801561030857600080fd5b50610323600480360381019061031e9190613354565b610b4e565b60405161033091906137e0565b60405180910390f35b34801561034557600080fd5b50610360600480360381019061035b91906131fb565b610bd3565b005b34801561036e57600080fd5b50610377610ceb565b6040516103849190613ba4565b60405180910390f35b34801561039957600080fd5b506103a2610cf1565b6040516103af9190613ba4565b60405180910390f35b3480156103c457600080fd5b506103df60048036038101906103da9190613284565b610cf7565b005b3480156103ed57600080fd5b50610408600480360381019061040391906130e5565b610d90565b005b34801561041657600080fd5b5061041f610df0565b60405161042c9190613ba4565b60405180910390f35b34801561044157600080fd5b5061044a610e37565b005b34801561045857600080fd5b50610473600480360381019061046e91906130e5565b610f09565b005b34801561048157600080fd5b5061048a610f29565b6040516104979190613ba4565b60405180910390f35b3480156104ac57600080fd5b506104c760048036038101906104c29190613354565b610f2f565b6040516104d491906137e0565b60405180910390f35b3480156104e957600080fd5b5061050460048036038101906104ff9190613354565b610fe1565b005b34801561051257600080fd5b5061051b611067565b6040516105289190613862565b60405180910390f35b34801561053d57600080fd5b5061055860048036038101906105539190613078565b6110f5565b6040516105659190613ba4565b60405180910390f35b34801561057a57600080fd5b506105836111ad565b005b34801561059157600080fd5b506105ac60048036038101906105a7919061323b565b611235565b005b3480156105ba57600080fd5b506105c36113c2565b6040516105d09190613ba4565b60405180910390f35b3480156105e557600080fd5b5061060060048036038101906105fb9190613354565b6113c8565b005b34801561060e57600080fd5b5061061761144e565b60405161062491906137e0565b60405180910390f35b34801561063957600080fd5b50610642611477565b60405161064f9190613862565b60405180910390f35b34801561066457600080fd5b5061066d611509565b60405161067a9190613847565b60405180910390f35b34801561068f57600080fd5b5061069861151c565b6040516106a59190613ba4565b60405180910390f35b3480156106ba57600080fd5b506106c3611522565b6040516106d09190613ba4565b60405180910390f35b3480156106e557600080fd5b5061070060048036038101906106fb919061330b565b611581565b005b34801561070e57600080fd5b50610729600480360381019061072491906131bb565b611617565b005b34801561073757600080fd5b50610752600480360381019061074d9190613138565b611798565b005b34801561076057600080fd5b506107696117fa565b6040516107769190613847565b60405180910390f35b61079960048036038101906107949190613354565b61180d565b005b3480156107a757600080fd5b506107c260048036038101906107bd9190613354565b611a8e565b6040516107cf9190613862565b60405180910390f35b3480156107e457600080fd5b506107ed611b35565b6040516107fa9190613ba4565b60405180910390f35b61081d60048036038101906108189190613354565b611b94565b005b34801561082b57600080fd5b5061084660048036038101906108419190613354565b611dc7565b005b34801561085457600080fd5b5061086f600480360381019061086a91906130a5565b611e4d565b60405161087c9190613847565b60405180910390f35b34801561089157600080fd5b506108ac60048036038101906108a7919061323b565b611ee1565b005b3480156108ba57600080fd5b506108d560048036038101906108d09190613284565b611ff2565b005b3480156108e357600080fd5b506108fe60048036038101906108f99190613078565b61208b565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109cb57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109db57506109da82612183565b5b9050919050565b6000600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905090565b606060018054610a4590613e80565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7190613e80565b8015610abe5780601f10610a9357610100808354040283529160200191610abe565b820191906000526020600020905b815481529060010190602001808311610aa157829003601f168201915b5050505050905090565b610ad06121ed565b73ffffffffffffffffffffffffffffffffffffffff16610aee61144e565b73ffffffffffffffffffffffffffffffffffffffff1614610b44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3b90613a44565b60405180910390fd5b80600e8190555050565b6000610b59826121f5565b610b98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8f90613a24565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bde82610f2f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4690613ac4565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c6e6121ed565b73ffffffffffffffffffffffffffffffffffffffff161480610c9d5750610c9c81610c976121ed565b611e4d565b5b610cdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd390613984565b60405180910390fd5b610ce68383612261565b505050565b600f5481565b60095481565b610cff6121ed565b73ffffffffffffffffffffffffffffffffffffffff16610d1d61144e565b73ffffffffffffffffffffffffffffffffffffffff1614610d73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6a90613a44565b60405180910390fd5b80600a60016101000a81548160ff02191690831515021790555050565b610da1610d9b6121ed565b8261231a565b610de0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd790613ae4565b60405180910390fd5b610deb8383836123f8565b505050565b6000600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905090565b610e3f6121ed565b73ffffffffffffffffffffffffffffffffffffffff16610e5d61144e565b73ffffffffffffffffffffffffffffffffffffffff1614610eb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eaa90613a44565b60405180910390fd5b6000479050610ec061144e565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610f05573d6000803e3d6000fd5b5050565b610f2483838360405180602001604052806000815250611798565b505050565b600e5481565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610fd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcf906139c4565b60405180910390fd5b80915050919050565b610fe96121ed565b73ffffffffffffffffffffffffffffffffffffffff1661100761144e565b73ffffffffffffffffffffffffffffffffffffffff161461105d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105490613a44565b60405180910390fd5b8060088190555050565b600d805461107490613e80565b80601f01602080910402602001604051908101604052809291908181526020018280546110a090613e80565b80156110ed5780601f106110c2576101008083540402835291602001916110ed565b820191906000526020600020905b8154815290600101906020018083116110d057829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611166576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115d906139a4565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6111b56121ed565b73ffffffffffffffffffffffffffffffffffffffff166111d361144e565b73ffffffffffffffffffffffffffffffffffffffff1614611229576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122090613a44565b60405180910390fd5b6112336000612654565b565b61123d6121ed565b73ffffffffffffffffffffffffffffffffffffffff1661125b61144e565b73ffffffffffffffffffffffffffffffffffffffff16146112b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a890613a44565b60405180910390fd5b60008151116112f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ec90613b04565b60405180910390fd5b610b7181516009546113079190613cb5565b1115611348576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133f90613b64565b60405180910390fd5b60005b81518110156113a45761139182828151811061136a57611369613fea565b5b60200260200101518260016009546113829190613cb5565b61138c9190613cb5565b612718565b808061139c90613ee3565b91505061134b565b508051600960008282546113b89190613cb5565b9250508190555050565b60075481565b6113d06121ed565b73ffffffffffffffffffffffffffffffffffffffff166113ee61144e565b73ffffffffffffffffffffffffffffffffffffffff1614611444576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143b90613a44565b60405180910390fd5b80600f8190555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461148690613e80565b80601f01602080910402602001604051908101604052809291908181526020018280546114b290613e80565b80156114ff5780601f106114d4576101008083540402835291602001916114ff565b820191906000526020600020905b8154815290600101906020018083116114e257829003601f168201915b5050505050905090565b600a60019054906101000a900460ff1681565b60085481565b600060011515600a60009054906101000a900460ff1615151461157a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157190613a64565b60405180910390fd5b6001905090565b6115896121ed565b73ffffffffffffffffffffffffffffffffffffffff166115a761144e565b73ffffffffffffffffffffffffffffffffffffffff16146115fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f490613a44565b60405180910390fd5b80600d9080519060200190611613929190612dee565b5050565b61161f6121ed565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561168d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168490613924565b60405180910390fd5b806006600061169a6121ed565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166117476121ed565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161178c9190613847565b60405180910390a35050565b6117a96117a36121ed565b8361231a565b6117e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117df90613ae4565b60405180910390fd5b6117f484848484612736565b50505050565b600a60009054906101000a900460ff1681565b60011515600a60009054906101000a900460ff16151514611863576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185a90613b84565b60405180910390fd5b600f548161186f610df0565b6118799190613cb5565b11156118ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b190613884565b60405180910390fd5b600115156118c66109e2565b151514611908576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ff90613b44565b60405180910390fd5b6000811161194b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194290613b04565b60405180910390fd5b600e54811115611990576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198790613b24565b60405180910390fd5b610b71816009546119a19190613cb5565b11156119e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d9906139e4565b60405180910390fd5b806008546119f09190613d3c565b341015611a32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2990613964565b60405180910390fd5b60005b81811015611a8a57611a55336001600954611a509190613cb5565b612718565b600160096000828254611a689190613cb5565b92505081905550611a77612792565b8080611a8290613ee3565b915050611a35565b5050565b6060611a99826121f5565b611ad8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611acf90613aa4565b60405180910390fd5b6000611ae2612823565b90506000815111611b025760405180602001604052806000815250611b2d565b80611b0c846128b5565b604051602001611b1d9291906137bc565b6040516020818303038152906040525b915050919050565b600060011515600a60019054906101000a900460ff16151514611b8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8490613a64565b60405180910390fd5b6001905090565b60011515600a60019054906101000a900460ff16151514611bea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be190613b84565b60405180910390fd5b600f5481611bf6610df0565b611c009190613cb5565b1115611c41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3890613884565b60405180910390fd5b60008111611c84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7b90613b04565b60405180910390fd5b600e54811115611cc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc090613b24565b60405180910390fd5b610b7181600954611cda9190613cb5565b1115611d1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d12906139e4565b60405180910390fd5b80600754611d299190613d3c565b341015611d6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6290613964565b60405180910390fd5b60005b81811015611dc357611d8e336001600954611d899190613cb5565b612718565b600160096000828254611da19190613cb5565b92505081905550611db0612792565b8080611dbb90613ee3565b915050611d6e565b5050565b611dcf6121ed565b73ffffffffffffffffffffffffffffffffffffffff16611ded61144e565b73ffffffffffffffffffffffffffffffffffffffff1614611e43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3a90613a44565b60405180910390fd5b8060078190555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ee96121ed565b73ffffffffffffffffffffffffffffffffffffffff16611f0761144e565b73ffffffffffffffffffffffffffffffffffffffff1614611f5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5490613a44565b60405180910390fd5b60005b8151811015611fee576001600b6000848481518110611f8257611f81613fea565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611fe690613ee3565b915050611f60565b5050565b611ffa6121ed565b73ffffffffffffffffffffffffffffffffffffffff1661201861144e565b73ffffffffffffffffffffffffffffffffffffffff161461206e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206590613a44565b60405180910390fd5b80600a60006101000a81548160ff02191690831515021790555050565b6120936121ed565b73ffffffffffffffffffffffffffffffffffffffff166120b161144e565b73ffffffffffffffffffffffffffffffffffffffff1614612107576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120fe90613a44565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612177576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216e906138c4565b60405180910390fd5b61218081612654565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166122d483610f2f565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612325826121f5565b612364576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235b90613944565b60405180910390fd5b600061236f83610f2f565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806123de57508373ffffffffffffffffffffffffffffffffffffffff166123c684610b4e565b73ffffffffffffffffffffffffffffffffffffffff16145b806123ef57506123ee8185611e4d565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661241882610f2f565b73ffffffffffffffffffffffffffffffffffffffff161461246e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246590613a84565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d590613904565b60405180910390fd5b6124e9838383612a16565b6124f4600082612261565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125449190613d96565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461259b9190613cb5565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612732828260405180602001604052806000815250612a1b565b5050565b6127418484846123f8565b61274d84848484612a76565b61278c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612783906138a4565b60405180910390fd5b50505050565b6001600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546127de9190613cb5565b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550565b6060600d805461283290613e80565b80601f016020809104026020016040519081016040528092919081815260200182805461285e90613e80565b80156128ab5780601f10612880576101008083540402835291602001916128ab565b820191906000526020600020905b81548152906001019060200180831161288e57829003601f168201915b5050505050905090565b606060008214156128fd576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612a11565b600082905060005b6000821461292f57808061291890613ee3565b915050600a826129289190613d0b565b9150612905565b60008167ffffffffffffffff81111561294b5761294a614019565b5b6040519080825280601f01601f19166020018201604052801561297d5781602001600182028036833780820191505090505b5090505b60008514612a0a576001826129969190613d96565b9150600a856129a59190613f2c565b60306129b19190613cb5565b60f81b8183815181106129c7576129c6613fea565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612a039190613d0b565b9450612981565b8093505050505b919050565b505050565b612a258383612c0d565b612a326000848484612a76565b612a71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a68906138a4565b60405180910390fd5b505050565b6000612a978473ffffffffffffffffffffffffffffffffffffffff16612ddb565b15612c00578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612ac06121ed565b8786866040518563ffffffff1660e01b8152600401612ae294939291906137fb565b602060405180830381600087803b158015612afc57600080fd5b505af1925050508015612b2d57506040513d601f19601f82011682018060405250810190612b2a91906132de565b60015b612bb0573d8060008114612b5d576040519150601f19603f3d011682016040523d82523d6000602084013e612b62565b606091505b50600081511415612ba8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9f906138a4565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612c05565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c7490613a04565b60405180910390fd5b612c86816121f5565b15612cc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cbd906138e4565b60405180910390fd5b612cd260008383612a16565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d229190613cb5565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612dfa90613e80565b90600052602060002090601f016020900481019282612e1c5760008555612e63565b82601f10612e3557805160ff1916838001178555612e63565b82800160010185558215612e63579182015b82811115612e62578251825591602001919060010190612e47565b5b509050612e709190612e74565b5090565b5b80821115612e8d576000816000905550600101612e75565b5090565b6000612ea4612e9f84613be4565b613bbf565b90508083825260208201905082856020860282011115612ec757612ec661404d565b5b60005b85811015612ef75781612edd8882612f85565b845260208401935060208301925050600181019050612eca565b5050509392505050565b6000612f14612f0f84613c10565b613bbf565b905082815260208101848484011115612f3057612f2f614052565b5b612f3b848285613e3e565b509392505050565b6000612f56612f5184613c41565b613bbf565b905082815260208101848484011115612f7257612f71614052565b5b612f7d848285613e3e565b509392505050565b600081359050612f948161463b565b92915050565b600082601f830112612faf57612fae614048565b5b8135612fbf848260208601612e91565b91505092915050565b600081359050612fd781614652565b92915050565b600081359050612fec81614669565b92915050565b60008151905061300181614669565b92915050565b600082601f83011261301c5761301b614048565b5b813561302c848260208601612f01565b91505092915050565b600082601f83011261304a57613049614048565b5b813561305a848260208601612f43565b91505092915050565b60008135905061307281614680565b92915050565b60006020828403121561308e5761308d61405c565b5b600061309c84828501612f85565b91505092915050565b600080604083850312156130bc576130bb61405c565b5b60006130ca85828601612f85565b92505060206130db85828601612f85565b9150509250929050565b6000806000606084860312156130fe576130fd61405c565b5b600061310c86828701612f85565b935050602061311d86828701612f85565b925050604061312e86828701613063565b9150509250925092565b600080600080608085870312156131525761315161405c565b5b600061316087828801612f85565b945050602061317187828801612f85565b935050604061318287828801613063565b925050606085013567ffffffffffffffff8111156131a3576131a2614057565b5b6131af87828801613007565b91505092959194509250565b600080604083850312156131d2576131d161405c565b5b60006131e085828601612f85565b92505060206131f185828601612fc8565b9150509250929050565b600080604083850312156132125761321161405c565b5b600061322085828601612f85565b925050602061323185828601613063565b9150509250929050565b6000602082840312156132515761325061405c565b5b600082013567ffffffffffffffff81111561326f5761326e614057565b5b61327b84828501612f9a565b91505092915050565b60006020828403121561329a5761329961405c565b5b60006132a884828501612fc8565b91505092915050565b6000602082840312156132c7576132c661405c565b5b60006132d584828501612fdd565b91505092915050565b6000602082840312156132f4576132f361405c565b5b600061330284828501612ff2565b91505092915050565b6000602082840312156133215761332061405c565b5b600082013567ffffffffffffffff81111561333f5761333e614057565b5b61334b84828501613035565b91505092915050565b60006020828403121561336a5761336961405c565b5b600061337884828501613063565b91505092915050565b61338a81613dca565b82525050565b61339981613ddc565b82525050565b60006133aa82613c72565b6133b48185613c88565b93506133c4818560208601613e4d565b6133cd81614061565b840191505092915050565b60006133e382613c7d565b6133ed8185613c99565b93506133fd818560208601613e4d565b61340681614061565b840191505092915050565b600061341c82613c7d565b6134268185613caa565b9350613436818560208601613e4d565b80840191505092915050565b600061344f601483613c99565b915061345a82614072565b602082019050919050565b6000613472603283613c99565b915061347d8261409b565b604082019050919050565b6000613495602683613c99565b91506134a0826140ea565b604082019050919050565b60006134b8601c83613c99565b91506134c382614139565b602082019050919050565b60006134db602483613c99565b91506134e682614162565b604082019050919050565b60006134fe601983613c99565b9150613509826141b1565b602082019050919050565b6000613521602c83613c99565b915061352c826141da565b604082019050919050565b6000613544601683613c99565b915061354f82614229565b602082019050919050565b6000613567603883613c99565b915061357282614252565b604082019050919050565b600061358a602a83613c99565b9150613595826142a1565b604082019050919050565b60006135ad602983613c99565b91506135b8826142f0565b604082019050919050565b60006135d0601683613c99565b91506135db8261433f565b602082019050919050565b60006135f3602083613c99565b91506135fe82614368565b602082019050919050565b6000613616602c83613c99565b915061362182614391565b604082019050919050565b6000613639602083613c99565b9150613644826143e0565b602082019050919050565b600061365c601583613c99565b915061366782614409565b602082019050919050565b600061367f602983613c99565b915061368a82614432565b604082019050919050565b60006136a2602f83613c99565b91506136ad82614481565b604082019050919050565b60006136c5602183613c99565b91506136d0826144d0565b604082019050919050565b60006136e8603183613c99565b91506136f38261451f565b604082019050919050565b600061370b601783613c99565b91506137168261456e565b602082019050919050565b600061372e601683613c99565b915061373982614597565b602082019050919050565b6000613751601c83613c99565b915061375c826145c0565b602082019050919050565b6000613774601683613c99565b915061377f826145e9565b602082019050919050565b6000613797600f83613c99565b91506137a282614612565b602082019050919050565b6137b681613e34565b82525050565b60006137c88285613411565b91506137d48284613411565b91508190509392505050565b60006020820190506137f56000830184613381565b92915050565b60006080820190506138106000830187613381565b61381d6020830186613381565b61382a60408301856137ad565b818103606083015261383c818461339f565b905095945050505050565b600060208201905061385c6000830184613390565b92915050565b6000602082019050818103600083015261387c81846133d8565b905092915050565b6000602082019050818103600083015261389d81613442565b9050919050565b600060208201905081810360008301526138bd81613465565b9050919050565b600060208201905081810360008301526138dd81613488565b9050919050565b600060208201905081810360008301526138fd816134ab565b9050919050565b6000602082019050818103600083015261391d816134ce565b9050919050565b6000602082019050818103600083015261393d816134f1565b9050919050565b6000602082019050818103600083015261395d81613514565b9050919050565b6000602082019050818103600083015261397d81613537565b9050919050565b6000602082019050818103600083015261399d8161355a565b9050919050565b600060208201905081810360008301526139bd8161357d565b9050919050565b600060208201905081810360008301526139dd816135a0565b9050919050565b600060208201905081810360008301526139fd816135c3565b9050919050565b60006020820190508181036000830152613a1d816135e6565b9050919050565b60006020820190508181036000830152613a3d81613609565b9050919050565b60006020820190508181036000830152613a5d8161362c565b9050919050565b60006020820190508181036000830152613a7d8161364f565b9050919050565b60006020820190508181036000830152613a9d81613672565b9050919050565b60006020820190508181036000830152613abd81613695565b9050919050565b60006020820190508181036000830152613add816136b8565b9050919050565b60006020820190508181036000830152613afd816136db565b9050919050565b60006020820190508181036000830152613b1d816136fe565b9050919050565b60006020820190508181036000830152613b3d81613721565b9050919050565b60006020820190508181036000830152613b5d81613744565b9050919050565b60006020820190508181036000830152613b7d81613767565b9050919050565b60006020820190508181036000830152613b9d8161378a565b9050919050565b6000602082019050613bb960008301846137ad565b92915050565b6000613bc9613bda565b9050613bd58282613eb2565b919050565b6000604051905090565b600067ffffffffffffffff821115613bff57613bfe614019565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613c2b57613c2a614019565b5b613c3482614061565b9050602081019050919050565b600067ffffffffffffffff821115613c5c57613c5b614019565b5b613c6582614061565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613cc082613e34565b9150613ccb83613e34565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613d0057613cff613f5d565b5b828201905092915050565b6000613d1682613e34565b9150613d2183613e34565b925082613d3157613d30613f8c565b5b828204905092915050565b6000613d4782613e34565b9150613d5283613e34565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613d8b57613d8a613f5d565b5b828202905092915050565b6000613da182613e34565b9150613dac83613e34565b925082821015613dbf57613dbe613f5d565b5b828203905092915050565b6000613dd582613e14565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613e6b578082015181840152602081019050613e50565b83811115613e7a576000848401525b50505050565b60006002820490506001821680613e9857607f821691505b60208210811415613eac57613eab613fbb565b5b50919050565b613ebb82614061565b810181811067ffffffffffffffff82111715613eda57613ed9614019565b5b80604052505050565b6000613eee82613e34565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f2157613f20613f5d565b5b600182019050919050565b6000613f3782613e34565b9150613f4283613e34565b925082613f5257613f51613f8c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f57616c6c6574206c696d69742052656163686564000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f696e636f727265637420657468657220616d6f756e7400000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f53616c65206e6f742053746172746564205965742e0000000000000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f6d696e74206174206c65617374206f6e6520746f6b656e000000000000000000600082015250565b7f6d617820706572207472616e73616374696f6e20323000000000000000000000600082015250565b7f596f7520617265206e6f7420696e2050726573616c65204c6973742e00000000600082015250565b7f6e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b7f53616c65206973205061757365642e0000000000000000000000000000000000600082015250565b61464481613dca565b811461464f57600080fd5b50565b61465b81613ddc565b811461466657600080fd5b50565b61467281613de8565b811461467d57600080fd5b50565b61468981613e34565b811461469457600080fd5b5056fea26469706673582212203532a58807230a4f67cd09aeb216fef07c52881dfaeb4751fa7fefb6101c3b4564736f6c63430008070033

Deployed Bytecode

0x60806040526004361061023b5760003560e01c80637ff9b5961161012e578063ba6dd6f0116100ab578063e2a70eaf1161006f578063e2a70eaf1461081f578063e985e9c514610848578063ebb3151014610885578063ef5f1985146108ae578063f2fde38b146108d75761023b565b8063ba6dd6f014610754578063bb2841c51461077f578063c87b56dd1461079b578063cd7de458146107d8578063d96a094a146108035761023b565b8063969745e8116100f2578063969745e814610683578063996953fc146106ae578063a0bcfc7f146106d9578063a22cb46514610702578063b88d4fde1461072b5761023b565b80637ff9b596146105ae5780638358090b146105d95780638da5cb5b1461060257806395d89b411461062d57806395ea5e67146106585761023b565b806339ff7253116101bc57806363adc5a51161018057806363adc5a5146104dd5780636c0360eb1461050657806370a0823114610531578063715018a61461056e5780637c8255db146105855761023b565b806339ff72531461040a5780633ccfd60b1461043557806342842e0e1461044c5780634b980d67146104755780636352211e146104a05761023b565b8063095ea7b311610203578063095ea7b3146103395780630e2351e21461036257806318160ddd1461038d5780631cef37e4146103b857806323b872dd146103e15761023b565b806301ffc9a714610240578063026896631461027d57806306fdde03146102a857806307fdef95146102d3578063081812fc146102fc575b600080fd5b34801561024c57600080fd5b50610267600480360381019061026291906132b1565b610900565b6040516102749190613847565b60405180910390f35b34801561028957600080fd5b506102926109e2565b60405161029f9190613847565b60405180910390f35b3480156102b457600080fd5b506102bd610a36565b6040516102ca9190613862565b60405180910390f35b3480156102df57600080fd5b506102fa60048036038101906102f59190613354565b610ac8565b005b34801561030857600080fd5b50610323600480360381019061031e9190613354565b610b4e565b60405161033091906137e0565b60405180910390f35b34801561034557600080fd5b50610360600480360381019061035b91906131fb565b610bd3565b005b34801561036e57600080fd5b50610377610ceb565b6040516103849190613ba4565b60405180910390f35b34801561039957600080fd5b506103a2610cf1565b6040516103af9190613ba4565b60405180910390f35b3480156103c457600080fd5b506103df60048036038101906103da9190613284565b610cf7565b005b3480156103ed57600080fd5b50610408600480360381019061040391906130e5565b610d90565b005b34801561041657600080fd5b5061041f610df0565b60405161042c9190613ba4565b60405180910390f35b34801561044157600080fd5b5061044a610e37565b005b34801561045857600080fd5b50610473600480360381019061046e91906130e5565b610f09565b005b34801561048157600080fd5b5061048a610f29565b6040516104979190613ba4565b60405180910390f35b3480156104ac57600080fd5b506104c760048036038101906104c29190613354565b610f2f565b6040516104d491906137e0565b60405180910390f35b3480156104e957600080fd5b5061050460048036038101906104ff9190613354565b610fe1565b005b34801561051257600080fd5b5061051b611067565b6040516105289190613862565b60405180910390f35b34801561053d57600080fd5b5061055860048036038101906105539190613078565b6110f5565b6040516105659190613ba4565b60405180910390f35b34801561057a57600080fd5b506105836111ad565b005b34801561059157600080fd5b506105ac60048036038101906105a7919061323b565b611235565b005b3480156105ba57600080fd5b506105c36113c2565b6040516105d09190613ba4565b60405180910390f35b3480156105e557600080fd5b5061060060048036038101906105fb9190613354565b6113c8565b005b34801561060e57600080fd5b5061061761144e565b60405161062491906137e0565b60405180910390f35b34801561063957600080fd5b50610642611477565b60405161064f9190613862565b60405180910390f35b34801561066457600080fd5b5061066d611509565b60405161067a9190613847565b60405180910390f35b34801561068f57600080fd5b5061069861151c565b6040516106a59190613ba4565b60405180910390f35b3480156106ba57600080fd5b506106c3611522565b6040516106d09190613ba4565b60405180910390f35b3480156106e557600080fd5b5061070060048036038101906106fb919061330b565b611581565b005b34801561070e57600080fd5b50610729600480360381019061072491906131bb565b611617565b005b34801561073757600080fd5b50610752600480360381019061074d9190613138565b611798565b005b34801561076057600080fd5b506107696117fa565b6040516107769190613847565b60405180910390f35b61079960048036038101906107949190613354565b61180d565b005b3480156107a757600080fd5b506107c260048036038101906107bd9190613354565b611a8e565b6040516107cf9190613862565b60405180910390f35b3480156107e457600080fd5b506107ed611b35565b6040516107fa9190613ba4565b60405180910390f35b61081d60048036038101906108189190613354565b611b94565b005b34801561082b57600080fd5b5061084660048036038101906108419190613354565b611dc7565b005b34801561085457600080fd5b5061086f600480360381019061086a91906130a5565b611e4d565b60405161087c9190613847565b60405180910390f35b34801561089157600080fd5b506108ac60048036038101906108a7919061323b565b611ee1565b005b3480156108ba57600080fd5b506108d560048036038101906108d09190613284565b611ff2565b005b3480156108e357600080fd5b506108fe60048036038101906108f99190613078565b61208b565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109cb57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109db57506109da82612183565b5b9050919050565b6000600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905090565b606060018054610a4590613e80565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7190613e80565b8015610abe5780601f10610a9357610100808354040283529160200191610abe565b820191906000526020600020905b815481529060010190602001808311610aa157829003601f168201915b5050505050905090565b610ad06121ed565b73ffffffffffffffffffffffffffffffffffffffff16610aee61144e565b73ffffffffffffffffffffffffffffffffffffffff1614610b44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3b90613a44565b60405180910390fd5b80600e8190555050565b6000610b59826121f5565b610b98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8f90613a24565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bde82610f2f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4690613ac4565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c6e6121ed565b73ffffffffffffffffffffffffffffffffffffffff161480610c9d5750610c9c81610c976121ed565b611e4d565b5b610cdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd390613984565b60405180910390fd5b610ce68383612261565b505050565b600f5481565b60095481565b610cff6121ed565b73ffffffffffffffffffffffffffffffffffffffff16610d1d61144e565b73ffffffffffffffffffffffffffffffffffffffff1614610d73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6a90613a44565b60405180910390fd5b80600a60016101000a81548160ff02191690831515021790555050565b610da1610d9b6121ed565b8261231a565b610de0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd790613ae4565b60405180910390fd5b610deb8383836123f8565b505050565b6000600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905090565b610e3f6121ed565b73ffffffffffffffffffffffffffffffffffffffff16610e5d61144e565b73ffffffffffffffffffffffffffffffffffffffff1614610eb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eaa90613a44565b60405180910390fd5b6000479050610ec061144e565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610f05573d6000803e3d6000fd5b5050565b610f2483838360405180602001604052806000815250611798565b505050565b600e5481565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610fd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcf906139c4565b60405180910390fd5b80915050919050565b610fe96121ed565b73ffffffffffffffffffffffffffffffffffffffff1661100761144e565b73ffffffffffffffffffffffffffffffffffffffff161461105d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105490613a44565b60405180910390fd5b8060088190555050565b600d805461107490613e80565b80601f01602080910402602001604051908101604052809291908181526020018280546110a090613e80565b80156110ed5780601f106110c2576101008083540402835291602001916110ed565b820191906000526020600020905b8154815290600101906020018083116110d057829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611166576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115d906139a4565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6111b56121ed565b73ffffffffffffffffffffffffffffffffffffffff166111d361144e565b73ffffffffffffffffffffffffffffffffffffffff1614611229576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122090613a44565b60405180910390fd5b6112336000612654565b565b61123d6121ed565b73ffffffffffffffffffffffffffffffffffffffff1661125b61144e565b73ffffffffffffffffffffffffffffffffffffffff16146112b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a890613a44565b60405180910390fd5b60008151116112f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ec90613b04565b60405180910390fd5b610b7181516009546113079190613cb5565b1115611348576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133f90613b64565b60405180910390fd5b60005b81518110156113a45761139182828151811061136a57611369613fea565b5b60200260200101518260016009546113829190613cb5565b61138c9190613cb5565b612718565b808061139c90613ee3565b91505061134b565b508051600960008282546113b89190613cb5565b9250508190555050565b60075481565b6113d06121ed565b73ffffffffffffffffffffffffffffffffffffffff166113ee61144e565b73ffffffffffffffffffffffffffffffffffffffff1614611444576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143b90613a44565b60405180910390fd5b80600f8190555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461148690613e80565b80601f01602080910402602001604051908101604052809291908181526020018280546114b290613e80565b80156114ff5780601f106114d4576101008083540402835291602001916114ff565b820191906000526020600020905b8154815290600101906020018083116114e257829003601f168201915b5050505050905090565b600a60019054906101000a900460ff1681565b60085481565b600060011515600a60009054906101000a900460ff1615151461157a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157190613a64565b60405180910390fd5b6001905090565b6115896121ed565b73ffffffffffffffffffffffffffffffffffffffff166115a761144e565b73ffffffffffffffffffffffffffffffffffffffff16146115fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f490613a44565b60405180910390fd5b80600d9080519060200190611613929190612dee565b5050565b61161f6121ed565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561168d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168490613924565b60405180910390fd5b806006600061169a6121ed565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166117476121ed565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161178c9190613847565b60405180910390a35050565b6117a96117a36121ed565b8361231a565b6117e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117df90613ae4565b60405180910390fd5b6117f484848484612736565b50505050565b600a60009054906101000a900460ff1681565b60011515600a60009054906101000a900460ff16151514611863576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185a90613b84565b60405180910390fd5b600f548161186f610df0565b6118799190613cb5565b11156118ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b190613884565b60405180910390fd5b600115156118c66109e2565b151514611908576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ff90613b44565b60405180910390fd5b6000811161194b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194290613b04565b60405180910390fd5b600e54811115611990576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198790613b24565b60405180910390fd5b610b71816009546119a19190613cb5565b11156119e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d9906139e4565b60405180910390fd5b806008546119f09190613d3c565b341015611a32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2990613964565b60405180910390fd5b60005b81811015611a8a57611a55336001600954611a509190613cb5565b612718565b600160096000828254611a689190613cb5565b92505081905550611a77612792565b8080611a8290613ee3565b915050611a35565b5050565b6060611a99826121f5565b611ad8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611acf90613aa4565b60405180910390fd5b6000611ae2612823565b90506000815111611b025760405180602001604052806000815250611b2d565b80611b0c846128b5565b604051602001611b1d9291906137bc565b6040516020818303038152906040525b915050919050565b600060011515600a60019054906101000a900460ff16151514611b8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8490613a64565b60405180910390fd5b6001905090565b60011515600a60019054906101000a900460ff16151514611bea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be190613b84565b60405180910390fd5b600f5481611bf6610df0565b611c009190613cb5565b1115611c41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3890613884565b60405180910390fd5b60008111611c84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7b90613b04565b60405180910390fd5b600e54811115611cc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc090613b24565b60405180910390fd5b610b7181600954611cda9190613cb5565b1115611d1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d12906139e4565b60405180910390fd5b80600754611d299190613d3c565b341015611d6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6290613964565b60405180910390fd5b60005b81811015611dc357611d8e336001600954611d899190613cb5565b612718565b600160096000828254611da19190613cb5565b92505081905550611db0612792565b8080611dbb90613ee3565b915050611d6e565b5050565b611dcf6121ed565b73ffffffffffffffffffffffffffffffffffffffff16611ded61144e565b73ffffffffffffffffffffffffffffffffffffffff1614611e43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3a90613a44565b60405180910390fd5b8060078190555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ee96121ed565b73ffffffffffffffffffffffffffffffffffffffff16611f0761144e565b73ffffffffffffffffffffffffffffffffffffffff1614611f5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5490613a44565b60405180910390fd5b60005b8151811015611fee576001600b6000848481518110611f8257611f81613fea565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611fe690613ee3565b915050611f60565b5050565b611ffa6121ed565b73ffffffffffffffffffffffffffffffffffffffff1661201861144e565b73ffffffffffffffffffffffffffffffffffffffff161461206e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206590613a44565b60405180910390fd5b80600a60006101000a81548160ff02191690831515021790555050565b6120936121ed565b73ffffffffffffffffffffffffffffffffffffffff166120b161144e565b73ffffffffffffffffffffffffffffffffffffffff1614612107576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120fe90613a44565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612177576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216e906138c4565b60405180910390fd5b61218081612654565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166122d483610f2f565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612325826121f5565b612364576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235b90613944565b60405180910390fd5b600061236f83610f2f565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806123de57508373ffffffffffffffffffffffffffffffffffffffff166123c684610b4e565b73ffffffffffffffffffffffffffffffffffffffff16145b806123ef57506123ee8185611e4d565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661241882610f2f565b73ffffffffffffffffffffffffffffffffffffffff161461246e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246590613a84565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d590613904565b60405180910390fd5b6124e9838383612a16565b6124f4600082612261565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125449190613d96565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461259b9190613cb5565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612732828260405180602001604052806000815250612a1b565b5050565b6127418484846123f8565b61274d84848484612a76565b61278c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612783906138a4565b60405180910390fd5b50505050565b6001600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546127de9190613cb5565b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550565b6060600d805461283290613e80565b80601f016020809104026020016040519081016040528092919081815260200182805461285e90613e80565b80156128ab5780601f10612880576101008083540402835291602001916128ab565b820191906000526020600020905b81548152906001019060200180831161288e57829003601f168201915b5050505050905090565b606060008214156128fd576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612a11565b600082905060005b6000821461292f57808061291890613ee3565b915050600a826129289190613d0b565b9150612905565b60008167ffffffffffffffff81111561294b5761294a614019565b5b6040519080825280601f01601f19166020018201604052801561297d5781602001600182028036833780820191505090505b5090505b60008514612a0a576001826129969190613d96565b9150600a856129a59190613f2c565b60306129b19190613cb5565b60f81b8183815181106129c7576129c6613fea565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612a039190613d0b565b9450612981565b8093505050505b919050565b505050565b612a258383612c0d565b612a326000848484612a76565b612a71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a68906138a4565b60405180910390fd5b505050565b6000612a978473ffffffffffffffffffffffffffffffffffffffff16612ddb565b15612c00578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612ac06121ed565b8786866040518563ffffffff1660e01b8152600401612ae294939291906137fb565b602060405180830381600087803b158015612afc57600080fd5b505af1925050508015612b2d57506040513d601f19601f82011682018060405250810190612b2a91906132de565b60015b612bb0573d8060008114612b5d576040519150601f19603f3d011682016040523d82523d6000602084013e612b62565b606091505b50600081511415612ba8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9f906138a4565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612c05565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c7490613a04565b60405180910390fd5b612c86816121f5565b15612cc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cbd906138e4565b60405180910390fd5b612cd260008383612a16565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d229190613cb5565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612dfa90613e80565b90600052602060002090601f016020900481019282612e1c5760008555612e63565b82601f10612e3557805160ff1916838001178555612e63565b82800160010185558215612e63579182015b82811115612e62578251825591602001919060010190612e47565b5b509050612e709190612e74565b5090565b5b80821115612e8d576000816000905550600101612e75565b5090565b6000612ea4612e9f84613be4565b613bbf565b90508083825260208201905082856020860282011115612ec757612ec661404d565b5b60005b85811015612ef75781612edd8882612f85565b845260208401935060208301925050600181019050612eca565b5050509392505050565b6000612f14612f0f84613c10565b613bbf565b905082815260208101848484011115612f3057612f2f614052565b5b612f3b848285613e3e565b509392505050565b6000612f56612f5184613c41565b613bbf565b905082815260208101848484011115612f7257612f71614052565b5b612f7d848285613e3e565b509392505050565b600081359050612f948161463b565b92915050565b600082601f830112612faf57612fae614048565b5b8135612fbf848260208601612e91565b91505092915050565b600081359050612fd781614652565b92915050565b600081359050612fec81614669565b92915050565b60008151905061300181614669565b92915050565b600082601f83011261301c5761301b614048565b5b813561302c848260208601612f01565b91505092915050565b600082601f83011261304a57613049614048565b5b813561305a848260208601612f43565b91505092915050565b60008135905061307281614680565b92915050565b60006020828403121561308e5761308d61405c565b5b600061309c84828501612f85565b91505092915050565b600080604083850312156130bc576130bb61405c565b5b60006130ca85828601612f85565b92505060206130db85828601612f85565b9150509250929050565b6000806000606084860312156130fe576130fd61405c565b5b600061310c86828701612f85565b935050602061311d86828701612f85565b925050604061312e86828701613063565b9150509250925092565b600080600080608085870312156131525761315161405c565b5b600061316087828801612f85565b945050602061317187828801612f85565b935050604061318287828801613063565b925050606085013567ffffffffffffffff8111156131a3576131a2614057565b5b6131af87828801613007565b91505092959194509250565b600080604083850312156131d2576131d161405c565b5b60006131e085828601612f85565b92505060206131f185828601612fc8565b9150509250929050565b600080604083850312156132125761321161405c565b5b600061322085828601612f85565b925050602061323185828601613063565b9150509250929050565b6000602082840312156132515761325061405c565b5b600082013567ffffffffffffffff81111561326f5761326e614057565b5b61327b84828501612f9a565b91505092915050565b60006020828403121561329a5761329961405c565b5b60006132a884828501612fc8565b91505092915050565b6000602082840312156132c7576132c661405c565b5b60006132d584828501612fdd565b91505092915050565b6000602082840312156132f4576132f361405c565b5b600061330284828501612ff2565b91505092915050565b6000602082840312156133215761332061405c565b5b600082013567ffffffffffffffff81111561333f5761333e614057565b5b61334b84828501613035565b91505092915050565b60006020828403121561336a5761336961405c565b5b600061337884828501613063565b91505092915050565b61338a81613dca565b82525050565b61339981613ddc565b82525050565b60006133aa82613c72565b6133b48185613c88565b93506133c4818560208601613e4d565b6133cd81614061565b840191505092915050565b60006133e382613c7d565b6133ed8185613c99565b93506133fd818560208601613e4d565b61340681614061565b840191505092915050565b600061341c82613c7d565b6134268185613caa565b9350613436818560208601613e4d565b80840191505092915050565b600061344f601483613c99565b915061345a82614072565b602082019050919050565b6000613472603283613c99565b915061347d8261409b565b604082019050919050565b6000613495602683613c99565b91506134a0826140ea565b604082019050919050565b60006134b8601c83613c99565b91506134c382614139565b602082019050919050565b60006134db602483613c99565b91506134e682614162565b604082019050919050565b60006134fe601983613c99565b9150613509826141b1565b602082019050919050565b6000613521602c83613c99565b915061352c826141da565b604082019050919050565b6000613544601683613c99565b915061354f82614229565b602082019050919050565b6000613567603883613c99565b915061357282614252565b604082019050919050565b600061358a602a83613c99565b9150613595826142a1565b604082019050919050565b60006135ad602983613c99565b91506135b8826142f0565b604082019050919050565b60006135d0601683613c99565b91506135db8261433f565b602082019050919050565b60006135f3602083613c99565b91506135fe82614368565b602082019050919050565b6000613616602c83613c99565b915061362182614391565b604082019050919050565b6000613639602083613c99565b9150613644826143e0565b602082019050919050565b600061365c601583613c99565b915061366782614409565b602082019050919050565b600061367f602983613c99565b915061368a82614432565b604082019050919050565b60006136a2602f83613c99565b91506136ad82614481565b604082019050919050565b60006136c5602183613c99565b91506136d0826144d0565b604082019050919050565b60006136e8603183613c99565b91506136f38261451f565b604082019050919050565b600061370b601783613c99565b91506137168261456e565b602082019050919050565b600061372e601683613c99565b915061373982614597565b602082019050919050565b6000613751601c83613c99565b915061375c826145c0565b602082019050919050565b6000613774601683613c99565b915061377f826145e9565b602082019050919050565b6000613797600f83613c99565b91506137a282614612565b602082019050919050565b6137b681613e34565b82525050565b60006137c88285613411565b91506137d48284613411565b91508190509392505050565b60006020820190506137f56000830184613381565b92915050565b60006080820190506138106000830187613381565b61381d6020830186613381565b61382a60408301856137ad565b818103606083015261383c818461339f565b905095945050505050565b600060208201905061385c6000830184613390565b92915050565b6000602082019050818103600083015261387c81846133d8565b905092915050565b6000602082019050818103600083015261389d81613442565b9050919050565b600060208201905081810360008301526138bd81613465565b9050919050565b600060208201905081810360008301526138dd81613488565b9050919050565b600060208201905081810360008301526138fd816134ab565b9050919050565b6000602082019050818103600083015261391d816134ce565b9050919050565b6000602082019050818103600083015261393d816134f1565b9050919050565b6000602082019050818103600083015261395d81613514565b9050919050565b6000602082019050818103600083015261397d81613537565b9050919050565b6000602082019050818103600083015261399d8161355a565b9050919050565b600060208201905081810360008301526139bd8161357d565b9050919050565b600060208201905081810360008301526139dd816135a0565b9050919050565b600060208201905081810360008301526139fd816135c3565b9050919050565b60006020820190508181036000830152613a1d816135e6565b9050919050565b60006020820190508181036000830152613a3d81613609565b9050919050565b60006020820190508181036000830152613a5d8161362c565b9050919050565b60006020820190508181036000830152613a7d8161364f565b9050919050565b60006020820190508181036000830152613a9d81613672565b9050919050565b60006020820190508181036000830152613abd81613695565b9050919050565b60006020820190508181036000830152613add816136b8565b9050919050565b60006020820190508181036000830152613afd816136db565b9050919050565b60006020820190508181036000830152613b1d816136fe565b9050919050565b60006020820190508181036000830152613b3d81613721565b9050919050565b60006020820190508181036000830152613b5d81613744565b9050919050565b60006020820190508181036000830152613b7d81613767565b9050919050565b60006020820190508181036000830152613b9d8161378a565b9050919050565b6000602082019050613bb960008301846137ad565b92915050565b6000613bc9613bda565b9050613bd58282613eb2565b919050565b6000604051905090565b600067ffffffffffffffff821115613bff57613bfe614019565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613c2b57613c2a614019565b5b613c3482614061565b9050602081019050919050565b600067ffffffffffffffff821115613c5c57613c5b614019565b5b613c6582614061565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613cc082613e34565b9150613ccb83613e34565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613d0057613cff613f5d565b5b828201905092915050565b6000613d1682613e34565b9150613d2183613e34565b925082613d3157613d30613f8c565b5b828204905092915050565b6000613d4782613e34565b9150613d5283613e34565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613d8b57613d8a613f5d565b5b828202905092915050565b6000613da182613e34565b9150613dac83613e34565b925082821015613dbf57613dbe613f5d565b5b828203905092915050565b6000613dd582613e14565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613e6b578082015181840152602081019050613e50565b83811115613e7a576000848401525b50505050565b60006002820490506001821680613e9857607f821691505b60208210811415613eac57613eab613fbb565b5b50919050565b613ebb82614061565b810181811067ffffffffffffffff82111715613eda57613ed9614019565b5b80604052505050565b6000613eee82613e34565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f2157613f20613f5d565b5b600182019050919050565b6000613f3782613e34565b9150613f4283613e34565b925082613f5257613f51613f8c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f57616c6c6574206c696d69742052656163686564000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f696e636f727265637420657468657220616d6f756e7400000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f53616c65206e6f742053746172746564205965742e0000000000000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f6d696e74206174206c65617374206f6e6520746f6b656e000000000000000000600082015250565b7f6d617820706572207472616e73616374696f6e20323000000000000000000000600082015250565b7f596f7520617265206e6f7420696e2050726573616c65204c6973742e00000000600082015250565b7f6e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b7f53616c65206973205061757365642e0000000000000000000000000000000000600082015250565b61464481613dca565b811461464f57600080fd5b50565b61465b81613ddc565b811461466657600080fd5b50565b61467281613de8565b811461467d57600080fd5b50565b61468981613e34565b811461469457600080fd5b5056fea26469706673582212203532a58807230a4f67cd09aeb216fef07c52881dfaeb4751fa7fefb6101c3b4564736f6c63430008070033

Deployed Bytecode Sourcemap

34420:4312:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22266:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37368:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23211:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38450:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24770:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24293:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34911:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34589;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37672:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25660:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38227:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38567:158;;;;;;;;;;;;;:::i;:::-;;26070:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34849:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22905:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37886:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34821:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22635:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14113:94;;;;;;;;;;;;;:::i;:::-;;36492:374;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34465:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38343:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13462:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23380:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34666:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34544;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37058:148;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37472:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25063:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26326:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34625:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35727:757;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23555:334;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37214:147;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35053:667;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37780:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25429:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36878:168;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37571:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14362:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22266:305;22368:4;22420:25;22405:40;;;:11;:40;;;;:105;;;;22477:33;22462:48;;;:11;:48;;;;22405:105;:158;;;;22527:36;22551:11;22527:23;:36::i;:::-;22405:158;22385:178;;22266:305;;;:::o;37368:98::-;37412:4;37435:11;:23;37447:10;37435:23;;;;;;;;;;;;;;;;;;;;;;;;;37428:30;;37368:98;:::o;23211:100::-;23265:13;23298:5;23291:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23211:100;:::o;38450:109::-;13693:12;:10;:12::i;:::-;13682:23;;:7;:5;:7::i;:::-;:23;;;13674:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38545:6:::1;38525:17;:26;;;;38450:109:::0;:::o;24770:221::-;24846:7;24874:16;24882:7;24874;:16::i;:::-;24866:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;24959:15;:24;24975:7;24959:24;;;;;;;;;;;;;;;;;;;;;24952:31;;24770:221;;;:::o;24293:411::-;24374:13;24390:23;24405:7;24390:14;:23::i;:::-;24374:39;;24438:5;24432:11;;:2;:11;;;;24424:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;24532:5;24516:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;24541:37;24558:5;24565:12;:10;:12::i;:::-;24541:16;:37::i;:::-;24516:62;24494:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;24675:21;24684:2;24688:7;24675:8;:21::i;:::-;24363:341;24293:411;;:::o;34911:27::-;;;;:::o;34589:::-;;;;:::o;37672:101::-;13693:12;:10;:12::i;:::-;13682:23;;:7;:5;:7::i;:::-;:23;;;13674:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37761:4:::1;37740:18;;:25;;;;;;;;;;;;;;;;;;37672:101:::0;:::o;25660:339::-;25855:41;25874:12;:10;:12::i;:::-;25888:7;25855:18;:41::i;:::-;25847:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;25963:28;25973:4;25979:2;25983:7;25963:9;:28::i;:::-;25660:339;;;:::o;38227:108::-;38270:4;38304:11;:23;38316:10;38304:23;;;;;;;;;;;;;;;;38297:30;;38227:108;:::o;38567:158::-;13693:12;:10;:12::i;:::-;13682:23;;:7;:5;:7::i;:::-;:23;;;13674:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38624:13:::1;38640:21;38624:37;;38680:7;:5;:7::i;:::-;38672:25;;:35;38698:8;38672:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;38606:119;38567:158::o:0;26070:185::-;26208:39;26225:4;26231:2;26235:7;26208:39;;;;;;;;;;;;:16;:39::i;:::-;26070:185;;;:::o;34849:33::-;;;;:::o;22905:239::-;22977:7;22997:13;23013:7;:16;23021:7;23013:16;;;;;;;;;;;;;;;;;;;;;22997:32;;23065:1;23048:19;;:5;:19;;;;23040:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;23131:5;23124:12;;;22905:239;;;:::o;37886:101::-;13693:12;:10;:12::i;:::-;13682:23;;:7;:5;:7::i;:::-;:23;;;13674:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37974:5:::1;37958:13;:21;;;;37886:101:::0;:::o;34821:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;22635:208::-;22707:7;22752:1;22735:19;;:5;:19;;;;22727:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;22819:9;:16;22829:5;22819:16;;;;;;;;;;;;;;;;22812:23;;22635:208;;;:::o;14113:94::-;13693:12;:10;:12::i;:::-;13682:23;;:7;:5;:7::i;:::-;:23;;;13674:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14178:21:::1;14196:1;14178:9;:21::i;:::-;14113:94::o:0;36492:374::-;13693:12;:10;:12::i;:::-;13682:23;;:7;:5;:7::i;:::-;:23;;;13674:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36591:1:::1;36573:8;:15;:19;36565:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;34533:4;36653:8;:15;36639:11;;:29;;;;:::i;:::-;:42;;36631:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;36723:6;36719:98;36739:8;:15;36735:1;:19;36719:98;;;36774:43;36784:8;36793:1;36784:11;;;;;;;;:::i;:::-;;;;;;;;36815:1;36811;36797:11;;:15;;;;:::i;:::-;:19;;;;:::i;:::-;36774:9;:43::i;:::-;36756:3;;;;;:::i;:::-;;;;36719:98;;;;36843:8;:15;36828:11;;:30;;;;;;;:::i;:::-;;;;;;;;36492:374:::0;:::o;34465:35::-;;;;:::o;38343:99::-;13693:12;:10;:12::i;:::-;13682:23;;:7;:5;:7::i;:::-;:23;;;13674:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38428:6:::1;38413:12;:21;;;;38343:99:::0;:::o;13462:87::-;13508:7;13535:6;;;;;;;;;;;13528:13;;13462:87;:::o;23380:104::-;23436:13;23469:7;23462:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23380:104;:::o;34666:38::-;;;;;;;;;;;;;:::o;34544:::-;;;;:::o;37058:148::-;37107:4;37149;37131:22;;:14;;;;;;;;;;;:22;;;37123:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;37196:1;37189:8;;37058:148;:::o;37472:92::-;13693:12;:10;:12::i;:::-;13682:23;;:7;:5;:7::i;:::-;:23;;;13674:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37552:4:::1;37542:7;:14;;;;;;;;;;;;:::i;:::-;;37472:92:::0;:::o;25063:295::-;25178:12;:10;:12::i;:::-;25166:24;;:8;:24;;;;25158:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;25278:8;25233:18;:32;25252:12;:10;:12::i;:::-;25233:32;;;;;;;;;;;;;;;:42;25266:8;25233:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;25331:8;25302:48;;25317:12;:10;:12::i;:::-;25302:48;;;25341:8;25302:48;;;;;;:::i;:::-;;;;;;;;25063:295;;:::o;26326:328::-;26501:41;26520:12;:10;:12::i;:::-;26534:7;26501:18;:41::i;:::-;26493:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;26607:39;26621:4;26627:2;26631:7;26640:5;26607:13;:39::i;:::-;26326:328;;;;:::o;34625:34::-;;;;;;;;;;;;;:::o;35727:757::-;35813:4;35795:22;;:14;;;;;;;;;;;:22;;;35787:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;35881:12;;35871:6;35856:12;:10;:12::i;:::-;:21;;;;:::i;:::-;:37;;35848:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;35955:4;35937:22;;:14;:12;:14::i;:::-;:22;;;35929:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;36020:1;36011:6;:10;36003:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;36078:17;;36068:6;:27;;36060:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;34533:4;36155:6;36141:11;;:20;;;;:::i;:::-;:32;;36133:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36248:6;36232:13;;:22;;;;:::i;:::-;36219:9;:35;;36211:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;36316:6;36312:165;36332:6;36328:1;:10;36312:165;;;36361:38;36371:10;36397:1;36383:11;;:15;;;;:::i;:::-;36361:9;:38::i;:::-;36432:1;36417:11;;:16;;;;;;;:::i;:::-;;;;;;;;36452:10;:8;:10::i;:::-;36340:3;;;;;:::i;:::-;;;;36312:165;;;;35727:757;:::o;23555:334::-;23628:13;23662:16;23670:7;23662;:16::i;:::-;23654:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;23743:21;23767:10;:8;:10::i;:::-;23743:34;;23819:1;23801:7;23795:21;:25;:86;;;;;;;;;;;;;;;;;23847:7;23856:18;:7;:16;:18::i;:::-;23830:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;23795:86;23788:93;;;23555:334;;;:::o;37214:147::-;37260:4;37304;37282:26;;:18;;;;;;;;;;;:26;;;37274:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;37351:1;37344:8;;37214:147;:::o;35053:667::-;35135:4;35113:26;;:18;;;;;;;;;;;:26;;;35105:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;35204:12;;35194:6;35179:12;:10;:12::i;:::-;:21;;;;:::i;:::-;:37;;35171:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;35269:1;35260:6;:10;35252:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;35327:17;;35317:6;:27;;35309:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;34533:4;35404:6;35390:11;;:20;;;;:::i;:::-;:33;;35382:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35495:6;35482:10;;:19;;;;:::i;:::-;35469:9;:32;;35461:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35560:6;35556:155;35576:6;35572:1;:10;35556:155;;;35599:38;35609:10;35635:1;35621:11;;:15;;;;:::i;:::-;35599:9;:38::i;:::-;35668:1;35653:11;;:16;;;;;;;:::i;:::-;;;;;;;;35686:10;:8;:10::i;:::-;35584:3;;;;;:::i;:::-;;;;35556:155;;;;35053:667;:::o;37780:97::-;13693:12;:10;:12::i;:::-;13682:23;;:7;:5;:7::i;:::-;:23;;;13674:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37864:5:::1;37851:10;:18;;;;37780:97:::0;:::o;25429:164::-;25526:4;25550:18;:25;25569:5;25550:25;;;;;;;;;;;;;;;:35;25576:8;25550:35;;;;;;;;;;;;;;;;;;;;;;;;;25543:42;;25429:164;;;;:::o;36878:168::-;13693:12;:10;:12::i;:::-;13682:23;;:7;:5;:7::i;:::-;:23;;;13674:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36960:6:::1;36956:82;36972:8;:15;36968:1;:19;36956:82;;;37034:4;37007:11;:24;37019:8;37028:1;37019:11;;;;;;;;:::i;:::-;;;;;;;;37007:24;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;36989:3;;;;;:::i;:::-;;;;36956:82;;;;36878:168:::0;:::o;37571:95::-;13693:12;:10;:12::i;:::-;13682:23;;:7;:5;:7::i;:::-;:23;;;13674:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37654:4:::1;37637:14;;:21;;;;;;;;;;;;;;;;;;37571:95:::0;:::o;14362:192::-;13693:12;:10;:12::i;:::-;13682:23;;:7;:5;:7::i;:::-;:23;;;13674:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14471:1:::1;14451:22;;:8;:22;;;;14443:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;14527:19;14537:8;14527:9;:19::i;:::-;14362:192:::0;:::o;15467:157::-;15552:4;15591:25;15576:40;;;:11;:40;;;;15569:47;;15467:157;;;:::o;602:98::-;655:7;682:10;675:17;;602:98;:::o;28164:127::-;28229:4;28281:1;28253:30;;:7;:16;28261:7;28253:16;;;;;;;;;;;;;;;;;;;;;:30;;;;28246:37;;28164:127;;;:::o;32146:174::-;32248:2;32221:15;:24;32237:7;32221:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;32304:7;32300:2;32266:46;;32275:23;32290:7;32275:14;:23::i;:::-;32266:46;;;;;;;;;;;;32146:174;;:::o;28458:348::-;28551:4;28576:16;28584:7;28576;:16::i;:::-;28568:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;28652:13;28668:23;28683:7;28668:14;:23::i;:::-;28652:39;;28721:5;28710:16;;:7;:16;;;:51;;;;28754:7;28730:31;;:20;28742:7;28730:11;:20::i;:::-;:31;;;28710:51;:87;;;;28765:32;28782:5;28789:7;28765:16;:32::i;:::-;28710:87;28702:96;;;28458:348;;;;:::o;31450:578::-;31609:4;31582:31;;:23;31597:7;31582:14;:23::i;:::-;:31;;;31574:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;31692:1;31678:16;;:2;:16;;;;31670:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;31748:39;31769:4;31775:2;31779:7;31748:20;:39::i;:::-;31852:29;31869:1;31873:7;31852:8;:29::i;:::-;31913:1;31894:9;:15;31904:4;31894:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;31942:1;31925:9;:13;31935:2;31925:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;31973:2;31954:7;:16;31962:7;31954:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;32012:7;32008:2;31993:27;;32002:4;31993:27;;;;;;;;;;;;31450:578;;;:::o;14562:173::-;14618:16;14637:6;;;;;;;;;;;14618:25;;14663:8;14654:6;;:17;;;;;;;;;;;;;;;;;;14718:8;14687:40;;14708:8;14687:40;;;;;;;;;;;;14607:128;14562:173;:::o;29148:110::-;29224:26;29234:2;29238:7;29224:26;;;;;;;;;;;;:9;:26::i;:::-;29148:110;;:::o;27536:315::-;27693:28;27703:4;27709:2;27713:7;27693:9;:28::i;:::-;27740:48;27763:4;27769:2;27773:7;27782:5;27740:22;:48::i;:::-;27732:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;27536:315;;;;:::o;38113:102::-;38206:1;38180:11;:23;38192:10;38180:23;;;;;;;;;;;;;;;;:27;;;;:::i;:::-;38154:11;:23;38166:10;38154:23;;;;;;;;;;;;;;;:53;;;;38113:102::o;37997:108::-;38057:13;38090:7;38083:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37997:108;:::o;1067:723::-;1123:13;1353:1;1344:5;:10;1340:53;;;1371:10;;;;;;;;;;;;;;;;;;;;;1340:53;1403:12;1418:5;1403:20;;1434:14;1459:78;1474:1;1466:4;:9;1459:78;;1492:8;;;;;:::i;:::-;;;;1523:2;1515:10;;;;;:::i;:::-;;;1459:78;;;1547:19;1579:6;1569:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1547:39;;1597:154;1613:1;1604:5;:10;1597:154;;1641:1;1631:11;;;;;:::i;:::-;;;1708:2;1700:5;:10;;;;:::i;:::-;1687:2;:24;;;;:::i;:::-;1674:39;;1657:6;1664;1657:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1737:2;1728:11;;;;;:::i;:::-;;;1597:154;;;1775:6;1761:21;;;;;1067:723;;;;:::o;34256:126::-;;;;:::o;29485:321::-;29615:18;29621:2;29625:7;29615:5;:18::i;:::-;29666:54;29697:1;29701:2;29705:7;29714:5;29666:22;:54::i;:::-;29644:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;29485:321;;;:::o;32885:799::-;33040:4;33061:15;:2;:13;;;:15::i;:::-;33057:620;;;33113:2;33097:36;;;33134:12;:10;:12::i;:::-;33148:4;33154:7;33163:5;33097:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;33093:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33356:1;33339:6;:13;:18;33335:272;;;33382:60;;;;;;;;;;:::i;:::-;;;;;;;;33335:272;33557:6;33551:13;33542:6;33538:2;33534:15;33527:38;33093:529;33230:41;;;33220:51;;;:6;:51;;;;33213:58;;;;;33057:620;33661:4;33654:11;;32885:799;;;;;;;:::o;30142:382::-;30236:1;30222:16;;:2;:16;;;;30214:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;30295:16;30303:7;30295;:16::i;:::-;30294:17;30286:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;30357:45;30386:1;30390:2;30394:7;30357:20;:45::i;:::-;30432:1;30415:9;:13;30425:2;30415:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;30463:2;30444:7;:16;30452:7;30444:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;30508:7;30504:2;30483:33;;30500:1;30483:33;;;;;;;;;;;;30142:382;;:::o;3532:387::-;3592:4;3800:12;3867:7;3855:20;3847:28;;3910:1;3903:4;:8;3896:15;;;3532:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;752:410::-;829:5;854:65;870:48;911:6;870:48;:::i;:::-;854:65;:::i;:::-;845:74;;942:6;935:5;928:21;980:4;973:5;969:16;1018:3;1009:6;1004:3;1000:16;997:25;994:112;;;1025:79;;:::i;:::-;994:112;1115:41;1149:6;1144:3;1139;1115:41;:::i;:::-;835:327;752:410;;;;;:::o;1168:412::-;1246:5;1271:66;1287:49;1329:6;1287:49;:::i;:::-;1271:66;:::i;:::-;1262:75;;1360:6;1353:5;1346:21;1398:4;1391:5;1387:16;1436:3;1427:6;1422:3;1418:16;1415:25;1412:112;;;1443:79;;:::i;:::-;1412:112;1533:41;1567:6;1562:3;1557;1533:41;:::i;:::-;1252:328;1168:412;;;;;:::o;1586:139::-;1632:5;1670:6;1657:20;1648:29;;1686:33;1713:5;1686:33;:::i;:::-;1586:139;;;;:::o;1748:370::-;1819:5;1868:3;1861:4;1853:6;1849:17;1845:27;1835:122;;1876:79;;:::i;:::-;1835:122;1993:6;1980:20;2018:94;2108:3;2100:6;2093:4;2085:6;2081:17;2018:94;:::i;:::-;2009:103;;1825:293;1748:370;;;;:::o;2124:133::-;2167:5;2205:6;2192:20;2183:29;;2221:30;2245:5;2221:30;:::i;:::-;2124:133;;;;:::o;2263:137::-;2308:5;2346:6;2333:20;2324:29;;2362:32;2388:5;2362:32;:::i;:::-;2263:137;;;;:::o;2406:141::-;2462:5;2493:6;2487:13;2478:22;;2509:32;2535:5;2509:32;:::i;:::-;2406:141;;;;:::o;2566:338::-;2621:5;2670:3;2663:4;2655:6;2651:17;2647:27;2637:122;;2678:79;;:::i;:::-;2637:122;2795:6;2782:20;2820:78;2894:3;2886:6;2879:4;2871:6;2867:17;2820:78;:::i;:::-;2811:87;;2627:277;2566:338;;;;:::o;2924:340::-;2980:5;3029:3;3022:4;3014:6;3010:17;3006:27;2996:122;;3037:79;;:::i;:::-;2996:122;3154:6;3141:20;3179:79;3254:3;3246:6;3239:4;3231:6;3227:17;3179:79;:::i;:::-;3170:88;;2986:278;2924:340;;;;:::o;3270:139::-;3316:5;3354:6;3341:20;3332:29;;3370:33;3397:5;3370:33;:::i;:::-;3270:139;;;;:::o;3415:329::-;3474:6;3523:2;3511:9;3502:7;3498:23;3494:32;3491:119;;;3529:79;;:::i;:::-;3491:119;3649:1;3674:53;3719:7;3710:6;3699:9;3695:22;3674:53;:::i;:::-;3664:63;;3620:117;3415:329;;;;:::o;3750:474::-;3818:6;3826;3875:2;3863:9;3854:7;3850:23;3846:32;3843:119;;;3881:79;;:::i;:::-;3843:119;4001:1;4026:53;4071:7;4062:6;4051:9;4047:22;4026:53;:::i;:::-;4016:63;;3972:117;4128:2;4154:53;4199:7;4190:6;4179:9;4175:22;4154:53;:::i;:::-;4144:63;;4099:118;3750:474;;;;;:::o;4230:619::-;4307:6;4315;4323;4372:2;4360:9;4351:7;4347:23;4343:32;4340:119;;;4378:79;;:::i;:::-;4340:119;4498:1;4523:53;4568:7;4559:6;4548:9;4544:22;4523:53;:::i;:::-;4513:63;;4469:117;4625:2;4651:53;4696:7;4687:6;4676:9;4672:22;4651:53;:::i;:::-;4641:63;;4596:118;4753:2;4779:53;4824:7;4815:6;4804:9;4800:22;4779:53;:::i;:::-;4769:63;;4724:118;4230:619;;;;;:::o;4855:943::-;4950:6;4958;4966;4974;5023:3;5011:9;5002:7;4998:23;4994:33;4991:120;;;5030:79;;:::i;:::-;4991:120;5150:1;5175:53;5220:7;5211:6;5200:9;5196:22;5175:53;:::i;:::-;5165:63;;5121:117;5277:2;5303:53;5348:7;5339:6;5328:9;5324:22;5303:53;:::i;:::-;5293:63;;5248:118;5405:2;5431:53;5476:7;5467:6;5456:9;5452:22;5431:53;:::i;:::-;5421:63;;5376:118;5561:2;5550:9;5546:18;5533:32;5592:18;5584:6;5581:30;5578:117;;;5614:79;;:::i;:::-;5578:117;5719:62;5773:7;5764:6;5753:9;5749:22;5719:62;:::i;:::-;5709:72;;5504:287;4855:943;;;;;;;:::o;5804:468::-;5869:6;5877;5926:2;5914:9;5905:7;5901:23;5897:32;5894:119;;;5932:79;;:::i;:::-;5894:119;6052:1;6077:53;6122:7;6113:6;6102:9;6098:22;6077:53;:::i;:::-;6067:63;;6023:117;6179:2;6205:50;6247:7;6238:6;6227:9;6223:22;6205:50;:::i;:::-;6195:60;;6150:115;5804:468;;;;;:::o;6278:474::-;6346:6;6354;6403:2;6391:9;6382:7;6378:23;6374:32;6371:119;;;6409:79;;:::i;:::-;6371:119;6529:1;6554:53;6599:7;6590:6;6579:9;6575:22;6554:53;:::i;:::-;6544:63;;6500:117;6656:2;6682:53;6727:7;6718:6;6707:9;6703:22;6682:53;:::i;:::-;6672:63;;6627:118;6278:474;;;;;:::o;6758:539::-;6842:6;6891:2;6879:9;6870:7;6866:23;6862:32;6859:119;;;6897:79;;:::i;:::-;6859:119;7045:1;7034:9;7030:17;7017:31;7075:18;7067:6;7064:30;7061:117;;;7097:79;;:::i;:::-;7061:117;7202:78;7272:7;7263:6;7252:9;7248:22;7202:78;:::i;:::-;7192:88;;6988:302;6758:539;;;;:::o;7303:323::-;7359:6;7408:2;7396:9;7387:7;7383:23;7379:32;7376:119;;;7414:79;;:::i;:::-;7376:119;7534:1;7559:50;7601:7;7592:6;7581:9;7577:22;7559:50;:::i;:::-;7549:60;;7505:114;7303:323;;;;:::o;7632:327::-;7690:6;7739:2;7727:9;7718:7;7714:23;7710:32;7707:119;;;7745:79;;:::i;:::-;7707:119;7865:1;7890:52;7934:7;7925:6;7914:9;7910:22;7890:52;:::i;:::-;7880:62;;7836:116;7632:327;;;;:::o;7965:349::-;8034:6;8083:2;8071:9;8062:7;8058:23;8054:32;8051:119;;;8089:79;;:::i;:::-;8051:119;8209:1;8234:63;8289:7;8280:6;8269:9;8265:22;8234:63;:::i;:::-;8224:73;;8180:127;7965:349;;;;:::o;8320:509::-;8389:6;8438:2;8426:9;8417:7;8413:23;8409:32;8406:119;;;8444:79;;:::i;:::-;8406:119;8592:1;8581:9;8577:17;8564:31;8622:18;8614:6;8611:30;8608:117;;;8644:79;;:::i;:::-;8608:117;8749:63;8804:7;8795:6;8784:9;8780:22;8749:63;:::i;:::-;8739:73;;8535:287;8320:509;;;;:::o;8835:329::-;8894:6;8943:2;8931:9;8922:7;8918:23;8914:32;8911:119;;;8949:79;;:::i;:::-;8911:119;9069:1;9094:53;9139:7;9130:6;9119:9;9115:22;9094:53;:::i;:::-;9084:63;;9040:117;8835:329;;;;:::o;9170:118::-;9257:24;9275:5;9257:24;:::i;:::-;9252:3;9245:37;9170:118;;:::o;9294:109::-;9375:21;9390:5;9375:21;:::i;:::-;9370:3;9363:34;9294:109;;:::o;9409:360::-;9495:3;9523:38;9555:5;9523:38;:::i;:::-;9577:70;9640:6;9635:3;9577:70;:::i;:::-;9570:77;;9656:52;9701:6;9696:3;9689:4;9682:5;9678:16;9656:52;:::i;:::-;9733:29;9755:6;9733:29;:::i;:::-;9728:3;9724:39;9717:46;;9499:270;9409:360;;;;:::o;9775:364::-;9863:3;9891:39;9924:5;9891:39;:::i;:::-;9946:71;10010:6;10005:3;9946:71;:::i;:::-;9939:78;;10026:52;10071:6;10066:3;10059:4;10052:5;10048:16;10026:52;:::i;:::-;10103:29;10125:6;10103:29;:::i;:::-;10098:3;10094:39;10087:46;;9867:272;9775:364;;;;:::o;10145:377::-;10251:3;10279:39;10312:5;10279:39;:::i;:::-;10334:89;10416:6;10411:3;10334:89;:::i;:::-;10327:96;;10432:52;10477:6;10472:3;10465:4;10458:5;10454:16;10432:52;:::i;:::-;10509:6;10504:3;10500:16;10493:23;;10255:267;10145:377;;;;:::o;10528:366::-;10670:3;10691:67;10755:2;10750:3;10691:67;:::i;:::-;10684:74;;10767:93;10856:3;10767:93;:::i;:::-;10885:2;10880:3;10876:12;10869:19;;10528:366;;;:::o;10900:::-;11042:3;11063:67;11127:2;11122:3;11063:67;:::i;:::-;11056:74;;11139:93;11228:3;11139:93;:::i;:::-;11257:2;11252:3;11248:12;11241:19;;10900:366;;;:::o;11272:::-;11414:3;11435:67;11499:2;11494:3;11435:67;:::i;:::-;11428:74;;11511:93;11600:3;11511:93;:::i;:::-;11629:2;11624:3;11620:12;11613:19;;11272:366;;;:::o;11644:::-;11786:3;11807:67;11871:2;11866:3;11807:67;:::i;:::-;11800:74;;11883:93;11972:3;11883:93;:::i;:::-;12001:2;11996:3;11992:12;11985:19;;11644:366;;;:::o;12016:::-;12158:3;12179:67;12243:2;12238:3;12179:67;:::i;:::-;12172:74;;12255:93;12344:3;12255:93;:::i;:::-;12373:2;12368:3;12364:12;12357:19;;12016:366;;;:::o;12388:::-;12530:3;12551:67;12615:2;12610:3;12551:67;:::i;:::-;12544:74;;12627:93;12716:3;12627:93;:::i;:::-;12745:2;12740:3;12736:12;12729:19;;12388:366;;;:::o;12760:::-;12902:3;12923:67;12987:2;12982:3;12923:67;:::i;:::-;12916:74;;12999:93;13088:3;12999:93;:::i;:::-;13117:2;13112:3;13108:12;13101:19;;12760:366;;;:::o;13132:::-;13274:3;13295:67;13359:2;13354:3;13295:67;:::i;:::-;13288:74;;13371:93;13460:3;13371:93;:::i;:::-;13489:2;13484:3;13480:12;13473:19;;13132:366;;;:::o;13504:::-;13646:3;13667:67;13731:2;13726:3;13667:67;:::i;:::-;13660:74;;13743:93;13832:3;13743:93;:::i;:::-;13861:2;13856:3;13852:12;13845:19;;13504:366;;;:::o;13876:::-;14018:3;14039:67;14103:2;14098:3;14039:67;:::i;:::-;14032:74;;14115:93;14204:3;14115:93;:::i;:::-;14233:2;14228:3;14224:12;14217:19;;13876:366;;;:::o;14248:::-;14390:3;14411:67;14475:2;14470:3;14411:67;:::i;:::-;14404:74;;14487:93;14576:3;14487:93;:::i;:::-;14605:2;14600:3;14596:12;14589:19;;14248:366;;;:::o;14620:::-;14762:3;14783:67;14847:2;14842:3;14783:67;:::i;:::-;14776:74;;14859:93;14948:3;14859:93;:::i;:::-;14977:2;14972:3;14968:12;14961:19;;14620:366;;;:::o;14992:::-;15134:3;15155:67;15219:2;15214:3;15155:67;:::i;:::-;15148:74;;15231:93;15320:3;15231:93;:::i;:::-;15349:2;15344:3;15340:12;15333:19;;14992:366;;;:::o;15364:::-;15506:3;15527:67;15591:2;15586:3;15527:67;:::i;:::-;15520:74;;15603:93;15692:3;15603:93;:::i;:::-;15721:2;15716:3;15712:12;15705:19;;15364:366;;;:::o;15736:::-;15878:3;15899:67;15963:2;15958:3;15899:67;:::i;:::-;15892:74;;15975:93;16064:3;15975:93;:::i;:::-;16093:2;16088:3;16084:12;16077:19;;15736:366;;;:::o;16108:::-;16250:3;16271:67;16335:2;16330:3;16271:67;:::i;:::-;16264:74;;16347:93;16436:3;16347:93;:::i;:::-;16465:2;16460:3;16456:12;16449:19;;16108:366;;;:::o;16480:::-;16622:3;16643:67;16707:2;16702:3;16643:67;:::i;:::-;16636:74;;16719:93;16808:3;16719:93;:::i;:::-;16837:2;16832:3;16828:12;16821:19;;16480:366;;;:::o;16852:::-;16994:3;17015:67;17079:2;17074:3;17015:67;:::i;:::-;17008:74;;17091:93;17180:3;17091:93;:::i;:::-;17209:2;17204:3;17200:12;17193:19;;16852:366;;;:::o;17224:::-;17366:3;17387:67;17451:2;17446:3;17387:67;:::i;:::-;17380:74;;17463:93;17552:3;17463:93;:::i;:::-;17581:2;17576:3;17572:12;17565:19;;17224:366;;;:::o;17596:::-;17738:3;17759:67;17823:2;17818:3;17759:67;:::i;:::-;17752:74;;17835:93;17924:3;17835:93;:::i;:::-;17953:2;17948:3;17944:12;17937:19;;17596:366;;;:::o;17968:::-;18110:3;18131:67;18195:2;18190:3;18131:67;:::i;:::-;18124:74;;18207:93;18296:3;18207:93;:::i;:::-;18325:2;18320:3;18316:12;18309:19;;17968:366;;;:::o;18340:::-;18482:3;18503:67;18567:2;18562:3;18503:67;:::i;:::-;18496:74;;18579:93;18668:3;18579:93;:::i;:::-;18697:2;18692:3;18688:12;18681:19;;18340:366;;;:::o;18712:::-;18854:3;18875:67;18939:2;18934:3;18875:67;:::i;:::-;18868:74;;18951:93;19040:3;18951:93;:::i;:::-;19069:2;19064:3;19060:12;19053:19;;18712:366;;;:::o;19084:::-;19226:3;19247:67;19311:2;19306:3;19247:67;:::i;:::-;19240:74;;19323:93;19412:3;19323:93;:::i;:::-;19441:2;19436:3;19432:12;19425:19;;19084:366;;;:::o;19456:::-;19598:3;19619:67;19683:2;19678:3;19619:67;:::i;:::-;19612:74;;19695:93;19784:3;19695:93;:::i;:::-;19813:2;19808:3;19804:12;19797:19;;19456:366;;;:::o;19828:118::-;19915:24;19933:5;19915:24;:::i;:::-;19910:3;19903:37;19828:118;;:::o;19952:435::-;20132:3;20154:95;20245:3;20236:6;20154:95;:::i;:::-;20147:102;;20266:95;20357:3;20348:6;20266:95;:::i;:::-;20259:102;;20378:3;20371:10;;19952:435;;;;;:::o;20393:222::-;20486:4;20524:2;20513:9;20509:18;20501:26;;20537:71;20605:1;20594:9;20590:17;20581:6;20537:71;:::i;:::-;20393:222;;;;:::o;20621:640::-;20816:4;20854:3;20843:9;20839:19;20831:27;;20868:71;20936:1;20925:9;20921:17;20912:6;20868:71;:::i;:::-;20949:72;21017:2;21006:9;21002:18;20993:6;20949:72;:::i;:::-;21031;21099:2;21088:9;21084:18;21075:6;21031:72;:::i;:::-;21150:9;21144:4;21140:20;21135:2;21124:9;21120:18;21113:48;21178:76;21249:4;21240:6;21178:76;:::i;:::-;21170:84;;20621:640;;;;;;;:::o;21267:210::-;21354:4;21392:2;21381:9;21377:18;21369:26;;21405:65;21467:1;21456:9;21452:17;21443:6;21405:65;:::i;:::-;21267:210;;;;:::o;21483:313::-;21596:4;21634:2;21623:9;21619:18;21611:26;;21683:9;21677:4;21673:20;21669:1;21658:9;21654:17;21647:47;21711:78;21784:4;21775:6;21711:78;:::i;:::-;21703:86;;21483:313;;;;:::o;21802:419::-;21968:4;22006:2;21995:9;21991:18;21983:26;;22055:9;22049:4;22045:20;22041:1;22030:9;22026:17;22019:47;22083:131;22209:4;22083:131;:::i;:::-;22075:139;;21802:419;;;:::o;22227:::-;22393:4;22431:2;22420:9;22416:18;22408:26;;22480:9;22474:4;22470:20;22466:1;22455:9;22451:17;22444:47;22508:131;22634:4;22508:131;:::i;:::-;22500:139;;22227:419;;;:::o;22652:::-;22818:4;22856:2;22845:9;22841:18;22833:26;;22905:9;22899:4;22895:20;22891:1;22880:9;22876:17;22869:47;22933:131;23059:4;22933:131;:::i;:::-;22925:139;;22652:419;;;:::o;23077:::-;23243:4;23281:2;23270:9;23266:18;23258:26;;23330:9;23324:4;23320:20;23316:1;23305:9;23301:17;23294:47;23358:131;23484:4;23358:131;:::i;:::-;23350:139;;23077:419;;;:::o;23502:::-;23668:4;23706:2;23695:9;23691:18;23683:26;;23755:9;23749:4;23745:20;23741:1;23730:9;23726:17;23719:47;23783:131;23909:4;23783:131;:::i;:::-;23775:139;;23502:419;;;:::o;23927:::-;24093:4;24131:2;24120:9;24116:18;24108:26;;24180:9;24174:4;24170:20;24166:1;24155:9;24151:17;24144:47;24208:131;24334:4;24208:131;:::i;:::-;24200:139;;23927:419;;;:::o;24352:::-;24518:4;24556:2;24545:9;24541:18;24533:26;;24605:9;24599:4;24595:20;24591:1;24580:9;24576:17;24569:47;24633:131;24759:4;24633:131;:::i;:::-;24625:139;;24352:419;;;:::o;24777:::-;24943:4;24981:2;24970:9;24966:18;24958:26;;25030:9;25024:4;25020:20;25016:1;25005:9;25001:17;24994:47;25058:131;25184:4;25058:131;:::i;:::-;25050:139;;24777:419;;;:::o;25202:::-;25368:4;25406:2;25395:9;25391:18;25383:26;;25455:9;25449:4;25445:20;25441:1;25430:9;25426:17;25419:47;25483:131;25609:4;25483:131;:::i;:::-;25475:139;;25202:419;;;:::o;25627:::-;25793:4;25831:2;25820:9;25816:18;25808:26;;25880:9;25874:4;25870:20;25866:1;25855:9;25851:17;25844:47;25908:131;26034:4;25908:131;:::i;:::-;25900:139;;25627:419;;;:::o;26052:::-;26218:4;26256:2;26245:9;26241:18;26233:26;;26305:9;26299:4;26295:20;26291:1;26280:9;26276:17;26269:47;26333:131;26459:4;26333:131;:::i;:::-;26325:139;;26052:419;;;:::o;26477:::-;26643:4;26681:2;26670:9;26666:18;26658:26;;26730:9;26724:4;26720:20;26716:1;26705:9;26701:17;26694:47;26758:131;26884:4;26758:131;:::i;:::-;26750:139;;26477:419;;;:::o;26902:::-;27068:4;27106:2;27095:9;27091:18;27083:26;;27155:9;27149:4;27145:20;27141:1;27130:9;27126:17;27119:47;27183:131;27309:4;27183:131;:::i;:::-;27175:139;;26902:419;;;:::o;27327:::-;27493:4;27531:2;27520:9;27516:18;27508:26;;27580:9;27574:4;27570:20;27566:1;27555:9;27551:17;27544:47;27608:131;27734:4;27608:131;:::i;:::-;27600:139;;27327:419;;;:::o;27752:::-;27918:4;27956:2;27945:9;27941:18;27933:26;;28005:9;27999:4;27995:20;27991:1;27980:9;27976:17;27969:47;28033:131;28159:4;28033:131;:::i;:::-;28025:139;;27752:419;;;:::o;28177:::-;28343:4;28381:2;28370:9;28366:18;28358:26;;28430:9;28424:4;28420:20;28416:1;28405:9;28401:17;28394:47;28458:131;28584:4;28458:131;:::i;:::-;28450:139;;28177:419;;;:::o;28602:::-;28768:4;28806:2;28795:9;28791:18;28783:26;;28855:9;28849:4;28845:20;28841:1;28830:9;28826:17;28819:47;28883:131;29009:4;28883:131;:::i;:::-;28875:139;;28602:419;;;:::o;29027:::-;29193:4;29231:2;29220:9;29216:18;29208:26;;29280:9;29274:4;29270:20;29266:1;29255:9;29251:17;29244:47;29308:131;29434:4;29308:131;:::i;:::-;29300:139;;29027:419;;;:::o;29452:::-;29618:4;29656:2;29645:9;29641:18;29633:26;;29705:9;29699:4;29695:20;29691:1;29680:9;29676:17;29669:47;29733:131;29859:4;29733:131;:::i;:::-;29725:139;;29452:419;;;:::o;29877:::-;30043:4;30081:2;30070:9;30066:18;30058:26;;30130:9;30124:4;30120:20;30116:1;30105:9;30101:17;30094:47;30158:131;30284:4;30158:131;:::i;:::-;30150:139;;29877:419;;;:::o;30302:::-;30468:4;30506:2;30495:9;30491:18;30483:26;;30555:9;30549:4;30545:20;30541:1;30530:9;30526:17;30519:47;30583:131;30709:4;30583:131;:::i;:::-;30575:139;;30302:419;;;:::o;30727:::-;30893:4;30931:2;30920:9;30916:18;30908:26;;30980:9;30974:4;30970:20;30966:1;30955:9;30951:17;30944:47;31008:131;31134:4;31008:131;:::i;:::-;31000:139;;30727:419;;;:::o;31152:::-;31318:4;31356:2;31345:9;31341:18;31333:26;;31405:9;31399:4;31395:20;31391:1;31380:9;31376:17;31369:47;31433:131;31559:4;31433:131;:::i;:::-;31425:139;;31152:419;;;:::o;31577:::-;31743:4;31781:2;31770:9;31766:18;31758:26;;31830:9;31824:4;31820:20;31816:1;31805:9;31801:17;31794:47;31858:131;31984:4;31858:131;:::i;:::-;31850:139;;31577:419;;;:::o;32002:::-;32168:4;32206:2;32195:9;32191:18;32183:26;;32255:9;32249:4;32245:20;32241:1;32230:9;32226:17;32219:47;32283:131;32409:4;32283:131;:::i;:::-;32275:139;;32002:419;;;:::o;32427:222::-;32520:4;32558:2;32547:9;32543:18;32535:26;;32571:71;32639:1;32628:9;32624:17;32615:6;32571:71;:::i;:::-;32427:222;;;;:::o;32655:129::-;32689:6;32716:20;;:::i;:::-;32706:30;;32745:33;32773:4;32765:6;32745:33;:::i;:::-;32655:129;;;:::o;32790:75::-;32823:6;32856:2;32850:9;32840:19;;32790:75;:::o;32871:311::-;32948:4;33038:18;33030:6;33027:30;33024:56;;;33060:18;;:::i;:::-;33024:56;33110:4;33102:6;33098:17;33090:25;;33170:4;33164;33160:15;33152:23;;32871:311;;;:::o;33188:307::-;33249:4;33339:18;33331:6;33328:30;33325:56;;;33361:18;;:::i;:::-;33325:56;33399:29;33421:6;33399:29;:::i;:::-;33391:37;;33483:4;33477;33473:15;33465:23;;33188:307;;;:::o;33501:308::-;33563:4;33653:18;33645:6;33642:30;33639:56;;;33675:18;;:::i;:::-;33639:56;33713:29;33735:6;33713:29;:::i;:::-;33705:37;;33797:4;33791;33787:15;33779:23;;33501:308;;;:::o;33815:98::-;33866:6;33900:5;33894:12;33884:22;;33815:98;;;:::o;33919:99::-;33971:6;34005:5;33999:12;33989:22;;33919:99;;;:::o;34024:168::-;34107:11;34141:6;34136:3;34129:19;34181:4;34176:3;34172:14;34157:29;;34024:168;;;;:::o;34198:169::-;34282:11;34316:6;34311:3;34304:19;34356:4;34351:3;34347:14;34332:29;;34198:169;;;;:::o;34373:148::-;34475:11;34512:3;34497:18;;34373:148;;;;:::o;34527:305::-;34567:3;34586:20;34604:1;34586:20;:::i;:::-;34581:25;;34620:20;34638:1;34620:20;:::i;:::-;34615:25;;34774:1;34706:66;34702:74;34699:1;34696:81;34693:107;;;34780:18;;:::i;:::-;34693:107;34824:1;34821;34817:9;34810:16;;34527:305;;;;:::o;34838:185::-;34878:1;34895:20;34913:1;34895:20;:::i;:::-;34890:25;;34929:20;34947:1;34929:20;:::i;:::-;34924:25;;34968:1;34958:35;;34973:18;;:::i;:::-;34958:35;35015:1;35012;35008:9;35003:14;;34838:185;;;;:::o;35029:348::-;35069:7;35092:20;35110:1;35092:20;:::i;:::-;35087:25;;35126:20;35144:1;35126:20;:::i;:::-;35121:25;;35314:1;35246:66;35242:74;35239:1;35236:81;35231:1;35224:9;35217:17;35213:105;35210:131;;;35321:18;;:::i;:::-;35210:131;35369:1;35366;35362:9;35351:20;;35029:348;;;;:::o;35383:191::-;35423:4;35443:20;35461:1;35443:20;:::i;:::-;35438:25;;35477:20;35495:1;35477:20;:::i;:::-;35472:25;;35516:1;35513;35510:8;35507:34;;;35521:18;;:::i;:::-;35507:34;35566:1;35563;35559:9;35551:17;;35383:191;;;;:::o;35580:96::-;35617:7;35646:24;35664:5;35646:24;:::i;:::-;35635:35;;35580:96;;;:::o;35682:90::-;35716:7;35759:5;35752:13;35745:21;35734:32;;35682:90;;;:::o;35778:149::-;35814:7;35854:66;35847:5;35843:78;35832:89;;35778:149;;;:::o;35933:126::-;35970:7;36010:42;36003:5;35999:54;35988:65;;35933:126;;;:::o;36065:77::-;36102:7;36131:5;36120:16;;36065:77;;;:::o;36148:154::-;36232:6;36227:3;36222;36209:30;36294:1;36285:6;36280:3;36276:16;36269:27;36148:154;;;:::o;36308:307::-;36376:1;36386:113;36400:6;36397:1;36394:13;36386:113;;;36485:1;36480:3;36476:11;36470:18;36466:1;36461:3;36457:11;36450:39;36422:2;36419:1;36415:10;36410:15;;36386:113;;;36517:6;36514:1;36511:13;36508:101;;;36597:1;36588:6;36583:3;36579:16;36572:27;36508:101;36357:258;36308:307;;;:::o;36621:320::-;36665:6;36702:1;36696:4;36692:12;36682:22;;36749:1;36743:4;36739:12;36770:18;36760:81;;36826:4;36818:6;36814:17;36804:27;;36760:81;36888:2;36880:6;36877:14;36857:18;36854:38;36851:84;;;36907:18;;:::i;:::-;36851:84;36672:269;36621:320;;;:::o;36947:281::-;37030:27;37052:4;37030:27;:::i;:::-;37022:6;37018:40;37160:6;37148:10;37145:22;37124:18;37112:10;37109:34;37106:62;37103:88;;;37171:18;;:::i;:::-;37103:88;37211:10;37207:2;37200:22;36990:238;36947:281;;:::o;37234:233::-;37273:3;37296:24;37314:5;37296:24;:::i;:::-;37287:33;;37342:66;37335:5;37332:77;37329:103;;;37412:18;;:::i;:::-;37329:103;37459:1;37452:5;37448:13;37441:20;;37234:233;;;:::o;37473:176::-;37505:1;37522:20;37540:1;37522:20;:::i;:::-;37517:25;;37556:20;37574:1;37556:20;:::i;:::-;37551:25;;37595:1;37585:35;;37600:18;;:::i;:::-;37585:35;37641:1;37638;37634:9;37629:14;;37473:176;;;;:::o;37655:180::-;37703:77;37700:1;37693:88;37800:4;37797:1;37790:15;37824:4;37821:1;37814:15;37841:180;37889:77;37886:1;37879:88;37986:4;37983:1;37976:15;38010:4;38007:1;38000:15;38027:180;38075:77;38072:1;38065:88;38172:4;38169:1;38162:15;38196:4;38193:1;38186:15;38213:180;38261:77;38258:1;38251:88;38358:4;38355:1;38348:15;38382:4;38379:1;38372:15;38399:180;38447:77;38444:1;38437:88;38544:4;38541:1;38534:15;38568:4;38565:1;38558:15;38585:117;38694:1;38691;38684:12;38708:117;38817:1;38814;38807:12;38831:117;38940:1;38937;38930:12;38954:117;39063:1;39060;39053:12;39077:117;39186:1;39183;39176:12;39200:102;39241:6;39292:2;39288:7;39283:2;39276:5;39272:14;39268:28;39258:38;;39200:102;;;:::o;39308:170::-;39448:22;39444:1;39436:6;39432:14;39425:46;39308:170;:::o;39484:237::-;39624:34;39620:1;39612:6;39608:14;39601:58;39693:20;39688:2;39680:6;39676:15;39669:45;39484:237;:::o;39727:225::-;39867:34;39863:1;39855:6;39851:14;39844:58;39936:8;39931:2;39923:6;39919:15;39912:33;39727:225;:::o;39958:178::-;40098:30;40094:1;40086:6;40082:14;40075:54;39958:178;:::o;40142:223::-;40282:34;40278:1;40270:6;40266:14;40259:58;40351:6;40346:2;40338:6;40334:15;40327:31;40142:223;:::o;40371:175::-;40511:27;40507:1;40499:6;40495:14;40488:51;40371:175;:::o;40552:231::-;40692:34;40688:1;40680:6;40676:14;40669:58;40761:14;40756:2;40748:6;40744:15;40737:39;40552:231;:::o;40789:172::-;40929:24;40925:1;40917:6;40913:14;40906:48;40789:172;:::o;40967:243::-;41107:34;41103:1;41095:6;41091:14;41084:58;41176:26;41171:2;41163:6;41159:15;41152:51;40967:243;:::o;41216:229::-;41356:34;41352:1;41344:6;41340:14;41333:58;41425:12;41420:2;41412:6;41408:15;41401:37;41216:229;:::o;41451:228::-;41591:34;41587:1;41579:6;41575:14;41568:58;41660:11;41655:2;41647:6;41643:15;41636:36;41451:228;:::o;41685:172::-;41825:24;41821:1;41813:6;41809:14;41802:48;41685:172;:::o;41863:182::-;42003:34;41999:1;41991:6;41987:14;41980:58;41863:182;:::o;42051:231::-;42191:34;42187:1;42179:6;42175:14;42168:58;42260:14;42255:2;42247:6;42243:15;42236:39;42051:231;:::o;42288:182::-;42428:34;42424:1;42416:6;42412:14;42405:58;42288:182;:::o;42476:171::-;42616:23;42612:1;42604:6;42600:14;42593:47;42476:171;:::o;42653:228::-;42793:34;42789:1;42781:6;42777:14;42770:58;42862:11;42857:2;42849:6;42845:15;42838:36;42653:228;:::o;42887:234::-;43027:34;43023:1;43015:6;43011:14;43004:58;43096:17;43091:2;43083:6;43079:15;43072:42;42887:234;:::o;43127:220::-;43267:34;43263:1;43255:6;43251:14;43244:58;43336:3;43331:2;43323:6;43319:15;43312:28;43127:220;:::o;43353:236::-;43493:34;43489:1;43481:6;43477:14;43470:58;43562:19;43557:2;43549:6;43545:15;43538:44;43353:236;:::o;43595:173::-;43735:25;43731:1;43723:6;43719:14;43712:49;43595:173;:::o;43774:172::-;43914:24;43910:1;43902:6;43898:14;43891:48;43774:172;:::o;43952:178::-;44092:30;44088:1;44080:6;44076:14;44069:54;43952:178;:::o;44136:172::-;44276:24;44272:1;44264:6;44260:14;44253:48;44136:172;:::o;44314:165::-;44454:17;44450:1;44442:6;44438:14;44431:41;44314:165;:::o;44485:122::-;44558:24;44576:5;44558:24;:::i;:::-;44551:5;44548:35;44538:63;;44597:1;44594;44587:12;44538:63;44485:122;:::o;44613:116::-;44683:21;44698:5;44683:21;:::i;:::-;44676:5;44673:32;44663:60;;44719:1;44716;44709:12;44663:60;44613:116;:::o;44735:120::-;44807:23;44824:5;44807:23;:::i;:::-;44800:5;44797:34;44787:62;;44845:1;44842;44835:12;44787:62;44735:120;:::o;44861:122::-;44934:24;44952:5;44934:24;:::i;:::-;44927:5;44924:35;44914:63;;44973:1;44970;44963:12;44914:63;44861:122;:::o

Swarm Source

ipfs://3532a58807230a4f67cd09aeb216fef07c52881dfaeb4751fa7fefb6101c3b45
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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