ETH Price: $3,425.96 (+3.18%)

Token

MUNKOMMUNITY (MUNKOMMUNITY)
 

Overview

Max Total Supply

789 MUNKOMMUNITY

Holders

193

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 MUNKOMMUNITY
0x5baa13b887445687059fceb4490a9837537ff405
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:
MUNKOMMUNITY

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-02-03
*/

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


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

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

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


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

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: address zero is not a valid owner");
        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: invalid token ID");
        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) {
        _requireMinted(tokenId);

        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 overridden 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 token owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_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: caller is not token 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: caller is not token 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) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == 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);

        _afterTokenTransfer(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);

        _afterTokenTransfer(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 from incorrect owner");
        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);

        _afterTokenTransfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    /**
     * @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 {
                    /// @solidity memory-safe-assembly
                    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 {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

// File: contracts/MUNKOMMUNITY.sol

/*
                                                               .:^!7???7!~~~~!!77777!~^:.           
                                                          .:~!77!~^:.   ^!77??JJJ??~.:^~!7!~.       
                                                       :!77!^:.       ^P5YPPGGGGGP5B~     :~??:     
                                                   .~77!^.            ^G#&@@&&&@@&#P:        :J~    
                                                 ^7?~:                 .^7J555Y?7~:            ?^   
                                              .!?!:                                            .Y   
                                            :7?^                                                J!  
                                          ^??^                                                  ^Y  
                                        ^??:                                                     5: 
                                      ^J?:                                                       ?! 
                                    ^J?:                                                         ^5 
                                  :??:                                                            P:
                                :?J^                                                              J7
                              .?J~                                                                ~Y
                            :?Y~                                                                  :P
                          :?J~                                                                    :P
                        ^JJ^                                                                      :G
                     .!J7:                                                                        :G
                  .~7?~.                                                                          :G
               .~7?!:                                                                             ^G
            .~??!:                                                                                ~P
        .^!?7~.                                                                                   JJ
 ?5?7!7??!^.                                                                                      P~
  7PPY^.                                                                         ..              !P 
75Y?J7.                                                                          7Y^            ~P: 
.^7??!~:.                                                                        7Y.        .^7Y?.  
    .^!7???7!~^:.                                                                ..   .^~!J5?!?B    
          .:~!7??J??7!!~^:.                                                        !?77!~^~5!~?7    
                  .:^^~!!!77???77!~~^^:...                                         ?Y7^.    ::      
                             ..::^~~!777??77777!!!~~^^::.....                    ...:!?P!           
                                            ....::^~~!!777777??????7!!!!!!!!!!!!~~~~~~^:            

*/

pragma solidity >=0.7.0 <0.9.0;




contract MUNKOMMUNITY is ERC721, Ownable {
  using Strings for uint256;
  using Counters for Counters.Counter;

  Counters.Counter private supply;

  string public uriPrefix = "ipfs://bafybeihjt7x4zxettso5s7dhmityfgdbdjy56jbggifi6onohmoosezlie/";
  string public uriSuffix = "";
  
  uint256 public cost = 0 ether;
  uint256 public maxSupply = 175;
  uint256 public maxMintAmountPerTx = 20;

  bool public paused = true;

  constructor() ERC721("MUNKOMMUNITY", "MUNKOMMUNITY") {}

  modifier mintCompliance(uint256 _mintAmount) {
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount!");
    require(supply.current() + _mintAmount <= maxSupply, "Max supply exceeded!");
    _;
  }

  function totalSupply() public view returns (uint256) {
    return supply.current();
  }

  function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) {
    require(!paused, "The contract is paused!");
    require(msg.value >= cost * _mintAmount, "Insufficient funds!");

    _mintLoop(msg.sender, _mintAmount);
  }
  
  function mintForAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner {
    _mintLoop(_receiver, _mintAmount);
  }

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

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

      if (currentTokenOwner == _owner) {
        ownedTokenIds[ownedTokenIndex] = currentTokenId;

        ownedTokenIndex++;
      }

      currentTokenId++;
    }

    return ownedTokenIds;
  }

  function tokenURI(uint256 _tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(_tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );

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

  function setCost(uint256 _cost) public onlyOwner {
    cost = _cost;
  }

  function setMaxSupply(uint256 _maxSupply) public onlyOwner {
    maxSupply = _maxSupply;
  }

  function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
    maxMintAmountPerTx = _maxMintAmountPerTx;
  }

  function setUriPrefix(string memory _uriPrefix) public onlyOwner {
    uriPrefix = _uriPrefix;
  }

  function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }

  function setPaused(bool _state) public onlyOwner {
    paused = _state;
  }


  function withdraw() public onlyOwner {
    // Royalty Payouts
    // =============================================================================
    uint256 royalty04 = address(this).balance * 5 / 100;
    uint256 royalty70 = address(this).balance * 5 / 100;

    (bool hs, ) = payable(0xC3c2ADf381caFF20852db28d624BFf1690284C8C).call{value: royalty04}("");
    require(hs);
    (bool gs, ) = payable(0xD493d02df12Ec7096895eC612ab297B9756eBCfe).call{value: royalty70}("");
    require(gs);
    // =============================================================================

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

  function _mintLoop(address _receiver, uint256 _mintAmount) internal {
    for (uint256 i = 0; i < _mintAmount; i++) {
      supply.increment();
      _safeMint(_receiver, supply.current());
    }
  }

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

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":[{"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":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","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":[],"name":"paused","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":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180608001604052806043815260200162003e7f6043913960089080519060200190620000359291906200022a565b5060405180602001604052806000815250600990805190602001906200005d9291906200022a565b506000600a5560af600b556014600c556001600d60006101000a81548160ff0219169083151502179055503480156200009557600080fd5b506040518060400160405280600c81526020017f4d554e4b4f4d4d554e49545900000000000000000000000000000000000000008152506040518060400160405280600c81526020017f4d554e4b4f4d4d554e495459000000000000000000000000000000000000000081525081600090805190602001906200011a9291906200022a565b508060019080519060200190620001339291906200022a565b505050620001566200014a6200015c60201b60201c565b6200016460201b60201c565b6200033f565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200023890620002da565b90600052602060002090601f0160209004810192826200025c5760008555620002a8565b82601f106200027757805160ff1916838001178555620002a8565b82800160010185558215620002a8579182015b82811115620002a75782518255916020019190600101906200028a565b5b509050620002b79190620002bb565b5090565b5b80821115620002d6576000816000905550600101620002bc565b5090565b60006002820490506001821680620002f357607f821691505b602082108114156200030a576200030962000310565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613b30806200034f6000396000f3fe6080604052600436106101ee5760003560e01c80636352211e1161010d578063a0712d68116100a0578063c87b56dd1161006f578063c87b56dd146106b4578063d5abeb01146106f1578063e985e9c51461071c578063efbd73f414610759578063f2fde38b14610782576101ee565b8063a0712d681461061d578063a22cb46514610639578063b071401b14610662578063b88d4fde1461068b576101ee565b80637ec4a659116100dc5780637ec4a659146105735780638da5cb5b1461059c57806394354fd0146105c757806395d89b41146105f2576101ee565b80636352211e146104b95780636f8b44b0146104f657806370a082311461051f578063715018a61461055c576101ee565b806323b872dd1161018557806344a0d68a1161015457806344a0d68a1461040f5780635503a0e8146104385780635c975abb1461046357806362b99ad41461048e576101ee565b806323b872dd146103695780633ccfd60b1461039257806342842e0e146103a9578063438b6300146103d2576101ee565b806313faede6116101c157806313faede6146102c157806316ba10e0146102ec57806316c38b3c1461031557806318160ddd1461033e576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298575b600080fd5b3480156101ff57600080fd5b5061021a600480360381019061021591906128ff565b6107ab565b6040516102279190612f33565b60405180910390f35b34801561023c57600080fd5b5061024561088d565b6040516102529190612f4e565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d9190612992565b61091f565b60405161028f9190612eaa565b60405180910390f35b3480156102a457600080fd5b506102bf60048036038101906102ba919061289a565b610965565b005b3480156102cd57600080fd5b506102d6610a7d565b6040516102e391906131b0565b60405180910390f35b3480156102f857600080fd5b50610313600480360381019061030e9190612951565b610a83565b005b34801561032157600080fd5b5061033c600480360381019061033791906128d6565b610aa5565b005b34801561034a57600080fd5b50610353610aca565b60405161036091906131b0565b60405180910390f35b34801561037557600080fd5b50610390600480360381019061038b9190612794565b610adb565b005b34801561039e57600080fd5b506103a7610b3b565b005b3480156103b557600080fd5b506103d060048036038101906103cb9190612794565b610d15565b005b3480156103de57600080fd5b506103f960048036038101906103f4919061272f565b610d35565b6040516104069190612f11565b60405180910390f35b34801561041b57600080fd5b5061043660048036038101906104319190612992565b610e8c565b005b34801561044457600080fd5b5061044d610e9e565b60405161045a9190612f4e565b60405180910390f35b34801561046f57600080fd5b50610478610f2c565b6040516104859190612f33565b60405180910390f35b34801561049a57600080fd5b506104a3610f3f565b6040516104b09190612f4e565b60405180910390f35b3480156104c557600080fd5b506104e060048036038101906104db9190612992565b610fcd565b6040516104ed9190612eaa565b60405180910390f35b34801561050257600080fd5b5061051d60048036038101906105189190612992565b61107f565b005b34801561052b57600080fd5b506105466004803603810190610541919061272f565b611091565b60405161055391906131b0565b60405180910390f35b34801561056857600080fd5b50610571611149565b005b34801561057f57600080fd5b5061059a60048036038101906105959190612951565b61115d565b005b3480156105a857600080fd5b506105b161117f565b6040516105be9190612eaa565b60405180910390f35b3480156105d357600080fd5b506105dc6111a9565b6040516105e991906131b0565b60405180910390f35b3480156105fe57600080fd5b506106076111af565b6040516106149190612f4e565b60405180910390f35b61063760048036038101906106329190612992565b611241565b005b34801561064557600080fd5b50610660600480360381019061065b919061285e565b61139a565b005b34801561066e57600080fd5b5061068960048036038101906106849190612992565b6113b0565b005b34801561069757600080fd5b506106b260048036038101906106ad91906127e3565b6113c2565b005b3480156106c057600080fd5b506106db60048036038101906106d69190612992565b611424565b6040516106e89190612f4e565b60405180910390f35b3480156106fd57600080fd5b506107066114ce565b60405161071391906131b0565b60405180910390f35b34801561072857600080fd5b50610743600480360381019061073e9190612758565b6114d4565b6040516107509190612f33565b60405180910390f35b34801561076557600080fd5b50610780600480360381019061077b91906129bb565b611568565b005b34801561078e57600080fd5b506107a960048036038101906107a4919061272f565b61162a565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061087657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108865750610885826116ae565b5b9050919050565b60606000805461089c906134b9565b80601f01602080910402602001604051908101604052809291908181526020018280546108c8906134b9565b80156109155780601f106108ea57610100808354040283529160200191610915565b820191906000526020600020905b8154815290600101906020018083116108f857829003601f168201915b5050505050905090565b600061092a82611718565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061097082610fcd565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d890613130565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a00611763565b73ffffffffffffffffffffffffffffffffffffffff161480610a2f5750610a2e81610a29611763565b6114d4565b5b610a6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6590613070565b60405180910390fd5b610a78838361176b565b505050565b600a5481565b610a8b611824565b8060099080519060200190610aa1929190612553565b5050565b610aad611824565b80600d60006101000a81548160ff02191690831515021790555050565b6000610ad660076118a2565b905090565b610aec610ae6611763565b826118b0565b610b2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2290613170565b60405180910390fd5b610b36838383611945565b505050565b610b43611824565b60006064600547610b549190613375565b610b5e9190613344565b905060006064600547610b719190613375565b610b7b9190613344565b9050600073c3c2adf381caff20852db28d624bff1690284c8c73ffffffffffffffffffffffffffffffffffffffff1683604051610bb790612e95565b60006040518083038185875af1925050503d8060008114610bf4576040519150601f19603f3d011682016040523d82523d6000602084013e610bf9565b606091505b5050905080610c0757600080fd5b600073d493d02df12ec7096895ec612ab297b9756ebcfe73ffffffffffffffffffffffffffffffffffffffff1683604051610c4190612e95565b60006040518083038185875af1925050503d8060008114610c7e576040519150601f19603f3d011682016040523d82523d6000602084013e610c83565b606091505b5050905080610c9157600080fd5b6000610c9b61117f565b73ffffffffffffffffffffffffffffffffffffffff1647604051610cbe90612e95565b60006040518083038185875af1925050503d8060008114610cfb576040519150601f19603f3d011682016040523d82523d6000602084013e610d00565b606091505b5050905080610d0e57600080fd5b5050505050565b610d30838383604051806020016040528060008152506113c2565b505050565b60606000610d4283611091565b905060008167ffffffffffffffff811115610d86577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610db45781602001602082028036833780820191505090505b50905060006001905060005b8381108015610dd15750600b548211155b15610e80576000610de183610fcd565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e6c5782848381518110610e51577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508180610e689061351c565b9250505b8280610e779061351c565b93505050610dc0565b82945050505050919050565b610e94611824565b80600a8190555050565b60098054610eab906134b9565b80601f0160208091040260200160405190810160405280929190818152602001828054610ed7906134b9565b8015610f245780601f10610ef957610100808354040283529160200191610f24565b820191906000526020600020905b815481529060010190602001808311610f0757829003601f168201915b505050505081565b600d60009054906101000a900460ff1681565b60088054610f4c906134b9565b80601f0160208091040260200160405190810160405280929190818152602001828054610f78906134b9565b8015610fc55780601f10610f9a57610100808354040283529160200191610fc5565b820191906000526020600020905b815481529060010190602001808311610fa857829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611076576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106d90613110565b60405180910390fd5b80915050919050565b611087611824565b80600b8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611102576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f990613050565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611151611824565b61115b6000611bac565b565b611165611824565b806008908051906020019061117b929190612553565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600c5481565b6060600180546111be906134b9565b80601f01602080910402602001604051908101604052809291908181526020018280546111ea906134b9565b80156112375780601f1061120c57610100808354040283529160200191611237565b820191906000526020600020905b81548152906001019060200180831161121a57829003601f168201915b5050505050905090565b806000811180156112545750600c548111155b611293576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128a90612ff0565b60405180910390fd5b600b54816112a160076118a2565b6112ab91906132ee565b11156112ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e390613150565b60405180910390fd5b600d60009054906101000a900460ff161561133c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611333906130d0565b60405180910390fd5b81600a5461134a9190613375565b34101561138c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138390613190565b60405180910390fd5b6113963383611c72565b5050565b6113ac6113a5611763565b8383611cb2565b5050565b6113b8611824565b80600c8190555050565b6113d36113cd611763565b836118b0565b611412576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140990613170565b60405180910390fd5b61141e84848484611e1f565b50505050565b606061142f82611e7b565b61146e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611465906130f0565b60405180910390fd5b6000611478611ee7565b9050600081511161149857604051806020016040528060008152506114c6565b806114a284611f79565b60096040516020016114b693929190612e64565b6040516020818303038152906040525b915050919050565b600b5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b8160008111801561157b5750600c548111155b6115ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b190612ff0565b60405180910390fd5b600b54816115c860076118a2565b6115d291906132ee565b1115611613576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160a90613150565b60405180910390fd5b61161b611824565b6116258284611c72565b505050565b611632611824565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169990612f90565b60405180910390fd5b6116ab81611bac565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61172181611e7b565b611760576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175790613110565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166117de83610fcd565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b61182c611763565b73ffffffffffffffffffffffffffffffffffffffff1661184a61117f565b73ffffffffffffffffffffffffffffffffffffffff16146118a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611897906130b0565b60405180910390fd5b565b600081600001549050919050565b6000806118bc83610fcd565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806118fe57506118fd81856114d4565b5b8061193c57508373ffffffffffffffffffffffffffffffffffffffff166119248461091f565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661196582610fcd565b73ffffffffffffffffffffffffffffffffffffffff16146119bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b290612fb0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2290613010565b60405180910390fd5b611a36838383612126565b611a4160008261176b565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a9191906133cf565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ae891906132ee565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611ba783838361212b565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60005b81811015611cad57611c876007612130565b611c9a83611c9560076118a2565b612146565b8080611ca59061351c565b915050611c75565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611d21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1890613030565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e129190612f33565b60405180910390a3505050565b611e2a848484611945565b611e3684848484612164565b611e75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6c90612f70565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b606060088054611ef6906134b9565b80601f0160208091040260200160405190810160405280929190818152602001828054611f22906134b9565b8015611f6f5780601f10611f4457610100808354040283529160200191611f6f565b820191906000526020600020905b815481529060010190602001808311611f5257829003601f168201915b5050505050905090565b60606000821415611fc1576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612121565b600082905060005b60008214611ff3578080611fdc9061351c565b915050600a82611fec9190613344565b9150611fc9565b60008167ffffffffffffffff811115612035577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156120675781602001600182028036833780820191505090505b5090505b6000851461211a5760018261208091906133cf565b9150600a8561208f9190613565565b603061209b91906132ee565b60f81b8183815181106120d7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856121139190613344565b945061206b565b8093505050505b919050565b505050565b505050565b6001816000016000828254019250508190555050565b6121608282604051806020016040528060008152506122fb565b5050565b60006121858473ffffffffffffffffffffffffffffffffffffffff16612356565b156122ee578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026121ae611763565b8786866040518563ffffffff1660e01b81526004016121d09493929190612ec5565b602060405180830381600087803b1580156121ea57600080fd5b505af192505050801561221b57506040513d601f19601f820116820180604052508101906122189190612928565b60015b61229e573d806000811461224b576040519150601f19603f3d011682016040523d82523d6000602084013e612250565b606091505b50600081511415612296576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228d90612f70565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506122f3565b600190505b949350505050565b6123058383612379565b6123126000848484612164565b612351576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234890612f70565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e090613090565b60405180910390fd5b6123f281611e7b565b15612432576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242990612fd0565b60405180910390fd5b61243e60008383612126565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461248e91906132ee565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461254f6000838361212b565b5050565b82805461255f906134b9565b90600052602060002090601f01602090048101928261258157600085556125c8565b82601f1061259a57805160ff19168380011785556125c8565b828001600101855582156125c8579182015b828111156125c75782518255916020019190600101906125ac565b5b5090506125d591906125d9565b5090565b5b808211156125f25760008160009055506001016125da565b5090565b6000612609612604846131f0565b6131cb565b90508281526020810184848401111561262157600080fd5b61262c848285613477565b509392505050565b600061264761264284613221565b6131cb565b90508281526020810184848401111561265f57600080fd5b61266a848285613477565b509392505050565b60008135905061268181613a9e565b92915050565b60008135905061269681613ab5565b92915050565b6000813590506126ab81613acc565b92915050565b6000815190506126c081613acc565b92915050565b600082601f8301126126d757600080fd5b81356126e78482602086016125f6565b91505092915050565b600082601f83011261270157600080fd5b8135612711848260208601612634565b91505092915050565b60008135905061272981613ae3565b92915050565b60006020828403121561274157600080fd5b600061274f84828501612672565b91505092915050565b6000806040838503121561276b57600080fd5b600061277985828601612672565b925050602061278a85828601612672565b9150509250929050565b6000806000606084860312156127a957600080fd5b60006127b786828701612672565b93505060206127c886828701612672565b92505060406127d98682870161271a565b9150509250925092565b600080600080608085870312156127f957600080fd5b600061280787828801612672565b945050602061281887828801612672565b93505060406128298782880161271a565b925050606085013567ffffffffffffffff81111561284657600080fd5b612852878288016126c6565b91505092959194509250565b6000806040838503121561287157600080fd5b600061287f85828601612672565b925050602061289085828601612687565b9150509250929050565b600080604083850312156128ad57600080fd5b60006128bb85828601612672565b92505060206128cc8582860161271a565b9150509250929050565b6000602082840312156128e857600080fd5b60006128f684828501612687565b91505092915050565b60006020828403121561291157600080fd5b600061291f8482850161269c565b91505092915050565b60006020828403121561293a57600080fd5b6000612948848285016126b1565b91505092915050565b60006020828403121561296357600080fd5b600082013567ffffffffffffffff81111561297d57600080fd5b612989848285016126f0565b91505092915050565b6000602082840312156129a457600080fd5b60006129b28482850161271a565b91505092915050565b600080604083850312156129ce57600080fd5b60006129dc8582860161271a565b92505060206129ed85828601612672565b9150509250929050565b6000612a038383612e46565b60208301905092915050565b612a1881613403565b82525050565b6000612a2982613277565b612a3381856132a5565b9350612a3e83613252565b8060005b83811015612a6f578151612a5688826129f7565b9750612a6183613298565b925050600181019050612a42565b5085935050505092915050565b612a8581613415565b82525050565b6000612a9682613282565b612aa081856132b6565b9350612ab0818560208601613486565b612ab981613652565b840191505092915050565b6000612acf8261328d565b612ad981856132d2565b9350612ae9818560208601613486565b612af281613652565b840191505092915050565b6000612b088261328d565b612b1281856132e3565b9350612b22818560208601613486565b80840191505092915050565b60008154612b3b816134b9565b612b4581866132e3565b94506001821660008114612b605760018114612b7157612ba4565b60ff19831686528186019350612ba4565b612b7a85613262565b60005b83811015612b9c57815481890152600182019150602081019050612b7d565b838801955050505b50505092915050565b6000612bba6032836132d2565b9150612bc582613663565b604082019050919050565b6000612bdd6026836132d2565b9150612be8826136b2565b604082019050919050565b6000612c006025836132d2565b9150612c0b82613701565b604082019050919050565b6000612c23601c836132d2565b9150612c2e82613750565b602082019050919050565b6000612c466014836132d2565b9150612c5182613779565b602082019050919050565b6000612c696024836132d2565b9150612c74826137a2565b604082019050919050565b6000612c8c6019836132d2565b9150612c97826137f1565b602082019050919050565b6000612caf6029836132d2565b9150612cba8261381a565b604082019050919050565b6000612cd2603e836132d2565b9150612cdd82613869565b604082019050919050565b6000612cf56020836132d2565b9150612d00826138b8565b602082019050919050565b6000612d186020836132d2565b9150612d23826138e1565b602082019050919050565b6000612d3b6017836132d2565b9150612d468261390a565b602082019050919050565b6000612d5e602f836132d2565b9150612d6982613933565b604082019050919050565b6000612d816018836132d2565b9150612d8c82613982565b602082019050919050565b6000612da46021836132d2565b9150612daf826139ab565b604082019050919050565b6000612dc76000836132c7565b9150612dd2826139fa565b600082019050919050565b6000612dea6014836132d2565b9150612df5826139fd565b602082019050919050565b6000612e0d602e836132d2565b9150612e1882613a26565b604082019050919050565b6000612e306013836132d2565b9150612e3b82613a75565b602082019050919050565b612e4f8161346d565b82525050565b612e5e8161346d565b82525050565b6000612e708286612afd565b9150612e7c8285612afd565b9150612e888284612b2e565b9150819050949350505050565b6000612ea082612dba565b9150819050919050565b6000602082019050612ebf6000830184612a0f565b92915050565b6000608082019050612eda6000830187612a0f565b612ee76020830186612a0f565b612ef46040830185612e55565b8181036060830152612f068184612a8b565b905095945050505050565b60006020820190508181036000830152612f2b8184612a1e565b905092915050565b6000602082019050612f486000830184612a7c565b92915050565b60006020820190508181036000830152612f688184612ac4565b905092915050565b60006020820190508181036000830152612f8981612bad565b9050919050565b60006020820190508181036000830152612fa981612bd0565b9050919050565b60006020820190508181036000830152612fc981612bf3565b9050919050565b60006020820190508181036000830152612fe981612c16565b9050919050565b6000602082019050818103600083015261300981612c39565b9050919050565b6000602082019050818103600083015261302981612c5c565b9050919050565b6000602082019050818103600083015261304981612c7f565b9050919050565b6000602082019050818103600083015261306981612ca2565b9050919050565b6000602082019050818103600083015261308981612cc5565b9050919050565b600060208201905081810360008301526130a981612ce8565b9050919050565b600060208201905081810360008301526130c981612d0b565b9050919050565b600060208201905081810360008301526130e981612d2e565b9050919050565b6000602082019050818103600083015261310981612d51565b9050919050565b6000602082019050818103600083015261312981612d74565b9050919050565b6000602082019050818103600083015261314981612d97565b9050919050565b6000602082019050818103600083015261316981612ddd565b9050919050565b6000602082019050818103600083015261318981612e00565b9050919050565b600060208201905081810360008301526131a981612e23565b9050919050565b60006020820190506131c56000830184612e55565b92915050565b60006131d56131e6565b90506131e182826134eb565b919050565b6000604051905090565b600067ffffffffffffffff82111561320b5761320a613623565b5b61321482613652565b9050602081019050919050565b600067ffffffffffffffff82111561323c5761323b613623565b5b61324582613652565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006132f98261346d565b91506133048361346d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561333957613338613596565b5b828201905092915050565b600061334f8261346d565b915061335a8361346d565b92508261336a576133696135c5565b5b828204905092915050565b60006133808261346d565b915061338b8361346d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156133c4576133c3613596565b5b828202905092915050565b60006133da8261346d565b91506133e58361346d565b9250828210156133f8576133f7613596565b5b828203905092915050565b600061340e8261344d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156134a4578082015181840152602081019050613489565b838111156134b3576000848401525b50505050565b600060028204905060018216806134d157607f821691505b602082108114156134e5576134e46135f4565b5b50919050565b6134f482613652565b810181811067ffffffffffffffff8211171561351357613512613623565b5b80604052505050565b60006135278261346d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561355a57613559613596565b5b600182019050919050565b60006135708261346d565b915061357b8361346d565b92508261358b5761358a6135c5565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b613aa781613403565b8114613ab257600080fd5b50565b613abe81613415565b8114613ac957600080fd5b50565b613ad581613421565b8114613ae057600080fd5b50565b613aec8161346d565b8114613af757600080fd5b5056fea2646970667358221220dc4a3c54f899049f9ce44efa44eec886e4baf44765c9586f418349e4e51a80ad64736f6c63430008040033697066733a2f2f62616679626569686a743778347a78657474736f35733764686d69747966676462646a7935366a626767696669366f6e6f686d6f6f73657a6c69652f

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c80636352211e1161010d578063a0712d68116100a0578063c87b56dd1161006f578063c87b56dd146106b4578063d5abeb01146106f1578063e985e9c51461071c578063efbd73f414610759578063f2fde38b14610782576101ee565b8063a0712d681461061d578063a22cb46514610639578063b071401b14610662578063b88d4fde1461068b576101ee565b80637ec4a659116100dc5780637ec4a659146105735780638da5cb5b1461059c57806394354fd0146105c757806395d89b41146105f2576101ee565b80636352211e146104b95780636f8b44b0146104f657806370a082311461051f578063715018a61461055c576101ee565b806323b872dd1161018557806344a0d68a1161015457806344a0d68a1461040f5780635503a0e8146104385780635c975abb1461046357806362b99ad41461048e576101ee565b806323b872dd146103695780633ccfd60b1461039257806342842e0e146103a9578063438b6300146103d2576101ee565b806313faede6116101c157806313faede6146102c157806316ba10e0146102ec57806316c38b3c1461031557806318160ddd1461033e576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298575b600080fd5b3480156101ff57600080fd5b5061021a600480360381019061021591906128ff565b6107ab565b6040516102279190612f33565b60405180910390f35b34801561023c57600080fd5b5061024561088d565b6040516102529190612f4e565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d9190612992565b61091f565b60405161028f9190612eaa565b60405180910390f35b3480156102a457600080fd5b506102bf60048036038101906102ba919061289a565b610965565b005b3480156102cd57600080fd5b506102d6610a7d565b6040516102e391906131b0565b60405180910390f35b3480156102f857600080fd5b50610313600480360381019061030e9190612951565b610a83565b005b34801561032157600080fd5b5061033c600480360381019061033791906128d6565b610aa5565b005b34801561034a57600080fd5b50610353610aca565b60405161036091906131b0565b60405180910390f35b34801561037557600080fd5b50610390600480360381019061038b9190612794565b610adb565b005b34801561039e57600080fd5b506103a7610b3b565b005b3480156103b557600080fd5b506103d060048036038101906103cb9190612794565b610d15565b005b3480156103de57600080fd5b506103f960048036038101906103f4919061272f565b610d35565b6040516104069190612f11565b60405180910390f35b34801561041b57600080fd5b5061043660048036038101906104319190612992565b610e8c565b005b34801561044457600080fd5b5061044d610e9e565b60405161045a9190612f4e565b60405180910390f35b34801561046f57600080fd5b50610478610f2c565b6040516104859190612f33565b60405180910390f35b34801561049a57600080fd5b506104a3610f3f565b6040516104b09190612f4e565b60405180910390f35b3480156104c557600080fd5b506104e060048036038101906104db9190612992565b610fcd565b6040516104ed9190612eaa565b60405180910390f35b34801561050257600080fd5b5061051d60048036038101906105189190612992565b61107f565b005b34801561052b57600080fd5b506105466004803603810190610541919061272f565b611091565b60405161055391906131b0565b60405180910390f35b34801561056857600080fd5b50610571611149565b005b34801561057f57600080fd5b5061059a60048036038101906105959190612951565b61115d565b005b3480156105a857600080fd5b506105b161117f565b6040516105be9190612eaa565b60405180910390f35b3480156105d357600080fd5b506105dc6111a9565b6040516105e991906131b0565b60405180910390f35b3480156105fe57600080fd5b506106076111af565b6040516106149190612f4e565b60405180910390f35b61063760048036038101906106329190612992565b611241565b005b34801561064557600080fd5b50610660600480360381019061065b919061285e565b61139a565b005b34801561066e57600080fd5b5061068960048036038101906106849190612992565b6113b0565b005b34801561069757600080fd5b506106b260048036038101906106ad91906127e3565b6113c2565b005b3480156106c057600080fd5b506106db60048036038101906106d69190612992565b611424565b6040516106e89190612f4e565b60405180910390f35b3480156106fd57600080fd5b506107066114ce565b60405161071391906131b0565b60405180910390f35b34801561072857600080fd5b50610743600480360381019061073e9190612758565b6114d4565b6040516107509190612f33565b60405180910390f35b34801561076557600080fd5b50610780600480360381019061077b91906129bb565b611568565b005b34801561078e57600080fd5b506107a960048036038101906107a4919061272f565b61162a565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061087657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108865750610885826116ae565b5b9050919050565b60606000805461089c906134b9565b80601f01602080910402602001604051908101604052809291908181526020018280546108c8906134b9565b80156109155780601f106108ea57610100808354040283529160200191610915565b820191906000526020600020905b8154815290600101906020018083116108f857829003601f168201915b5050505050905090565b600061092a82611718565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061097082610fcd565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d890613130565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a00611763565b73ffffffffffffffffffffffffffffffffffffffff161480610a2f5750610a2e81610a29611763565b6114d4565b5b610a6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6590613070565b60405180910390fd5b610a78838361176b565b505050565b600a5481565b610a8b611824565b8060099080519060200190610aa1929190612553565b5050565b610aad611824565b80600d60006101000a81548160ff02191690831515021790555050565b6000610ad660076118a2565b905090565b610aec610ae6611763565b826118b0565b610b2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2290613170565b60405180910390fd5b610b36838383611945565b505050565b610b43611824565b60006064600547610b549190613375565b610b5e9190613344565b905060006064600547610b719190613375565b610b7b9190613344565b9050600073c3c2adf381caff20852db28d624bff1690284c8c73ffffffffffffffffffffffffffffffffffffffff1683604051610bb790612e95565b60006040518083038185875af1925050503d8060008114610bf4576040519150601f19603f3d011682016040523d82523d6000602084013e610bf9565b606091505b5050905080610c0757600080fd5b600073d493d02df12ec7096895ec612ab297b9756ebcfe73ffffffffffffffffffffffffffffffffffffffff1683604051610c4190612e95565b60006040518083038185875af1925050503d8060008114610c7e576040519150601f19603f3d011682016040523d82523d6000602084013e610c83565b606091505b5050905080610c9157600080fd5b6000610c9b61117f565b73ffffffffffffffffffffffffffffffffffffffff1647604051610cbe90612e95565b60006040518083038185875af1925050503d8060008114610cfb576040519150601f19603f3d011682016040523d82523d6000602084013e610d00565b606091505b5050905080610d0e57600080fd5b5050505050565b610d30838383604051806020016040528060008152506113c2565b505050565b60606000610d4283611091565b905060008167ffffffffffffffff811115610d86577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610db45781602001602082028036833780820191505090505b50905060006001905060005b8381108015610dd15750600b548211155b15610e80576000610de183610fcd565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e6c5782848381518110610e51577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508180610e689061351c565b9250505b8280610e779061351c565b93505050610dc0565b82945050505050919050565b610e94611824565b80600a8190555050565b60098054610eab906134b9565b80601f0160208091040260200160405190810160405280929190818152602001828054610ed7906134b9565b8015610f245780601f10610ef957610100808354040283529160200191610f24565b820191906000526020600020905b815481529060010190602001808311610f0757829003601f168201915b505050505081565b600d60009054906101000a900460ff1681565b60088054610f4c906134b9565b80601f0160208091040260200160405190810160405280929190818152602001828054610f78906134b9565b8015610fc55780601f10610f9a57610100808354040283529160200191610fc5565b820191906000526020600020905b815481529060010190602001808311610fa857829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611076576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106d90613110565b60405180910390fd5b80915050919050565b611087611824565b80600b8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611102576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f990613050565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611151611824565b61115b6000611bac565b565b611165611824565b806008908051906020019061117b929190612553565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600c5481565b6060600180546111be906134b9565b80601f01602080910402602001604051908101604052809291908181526020018280546111ea906134b9565b80156112375780601f1061120c57610100808354040283529160200191611237565b820191906000526020600020905b81548152906001019060200180831161121a57829003601f168201915b5050505050905090565b806000811180156112545750600c548111155b611293576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128a90612ff0565b60405180910390fd5b600b54816112a160076118a2565b6112ab91906132ee565b11156112ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e390613150565b60405180910390fd5b600d60009054906101000a900460ff161561133c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611333906130d0565b60405180910390fd5b81600a5461134a9190613375565b34101561138c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138390613190565b60405180910390fd5b6113963383611c72565b5050565b6113ac6113a5611763565b8383611cb2565b5050565b6113b8611824565b80600c8190555050565b6113d36113cd611763565b836118b0565b611412576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140990613170565b60405180910390fd5b61141e84848484611e1f565b50505050565b606061142f82611e7b565b61146e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611465906130f0565b60405180910390fd5b6000611478611ee7565b9050600081511161149857604051806020016040528060008152506114c6565b806114a284611f79565b60096040516020016114b693929190612e64565b6040516020818303038152906040525b915050919050565b600b5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b8160008111801561157b5750600c548111155b6115ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b190612ff0565b60405180910390fd5b600b54816115c860076118a2565b6115d291906132ee565b1115611613576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160a90613150565b60405180910390fd5b61161b611824565b6116258284611c72565b505050565b611632611824565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169990612f90565b60405180910390fd5b6116ab81611bac565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61172181611e7b565b611760576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175790613110565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166117de83610fcd565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b61182c611763565b73ffffffffffffffffffffffffffffffffffffffff1661184a61117f565b73ffffffffffffffffffffffffffffffffffffffff16146118a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611897906130b0565b60405180910390fd5b565b600081600001549050919050565b6000806118bc83610fcd565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806118fe57506118fd81856114d4565b5b8061193c57508373ffffffffffffffffffffffffffffffffffffffff166119248461091f565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661196582610fcd565b73ffffffffffffffffffffffffffffffffffffffff16146119bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b290612fb0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2290613010565b60405180910390fd5b611a36838383612126565b611a4160008261176b565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a9191906133cf565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ae891906132ee565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611ba783838361212b565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60005b81811015611cad57611c876007612130565b611c9a83611c9560076118a2565b612146565b8080611ca59061351c565b915050611c75565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611d21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1890613030565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e129190612f33565b60405180910390a3505050565b611e2a848484611945565b611e3684848484612164565b611e75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6c90612f70565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b606060088054611ef6906134b9565b80601f0160208091040260200160405190810160405280929190818152602001828054611f22906134b9565b8015611f6f5780601f10611f4457610100808354040283529160200191611f6f565b820191906000526020600020905b815481529060010190602001808311611f5257829003601f168201915b5050505050905090565b60606000821415611fc1576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612121565b600082905060005b60008214611ff3578080611fdc9061351c565b915050600a82611fec9190613344565b9150611fc9565b60008167ffffffffffffffff811115612035577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156120675781602001600182028036833780820191505090505b5090505b6000851461211a5760018261208091906133cf565b9150600a8561208f9190613565565b603061209b91906132ee565b60f81b8183815181106120d7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856121139190613344565b945061206b565b8093505050505b919050565b505050565b505050565b6001816000016000828254019250508190555050565b6121608282604051806020016040528060008152506122fb565b5050565b60006121858473ffffffffffffffffffffffffffffffffffffffff16612356565b156122ee578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026121ae611763565b8786866040518563ffffffff1660e01b81526004016121d09493929190612ec5565b602060405180830381600087803b1580156121ea57600080fd5b505af192505050801561221b57506040513d601f19601f820116820180604052508101906122189190612928565b60015b61229e573d806000811461224b576040519150601f19603f3d011682016040523d82523d6000602084013e612250565b606091505b50600081511415612296576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228d90612f70565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506122f3565b600190505b949350505050565b6123058383612379565b6123126000848484612164565b612351576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234890612f70565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e090613090565b60405180910390fd5b6123f281611e7b565b15612432576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242990612fd0565b60405180910390fd5b61243e60008383612126565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461248e91906132ee565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461254f6000838361212b565b5050565b82805461255f906134b9565b90600052602060002090601f01602090048101928261258157600085556125c8565b82601f1061259a57805160ff19168380011785556125c8565b828001600101855582156125c8579182015b828111156125c75782518255916020019190600101906125ac565b5b5090506125d591906125d9565b5090565b5b808211156125f25760008160009055506001016125da565b5090565b6000612609612604846131f0565b6131cb565b90508281526020810184848401111561262157600080fd5b61262c848285613477565b509392505050565b600061264761264284613221565b6131cb565b90508281526020810184848401111561265f57600080fd5b61266a848285613477565b509392505050565b60008135905061268181613a9e565b92915050565b60008135905061269681613ab5565b92915050565b6000813590506126ab81613acc565b92915050565b6000815190506126c081613acc565b92915050565b600082601f8301126126d757600080fd5b81356126e78482602086016125f6565b91505092915050565b600082601f83011261270157600080fd5b8135612711848260208601612634565b91505092915050565b60008135905061272981613ae3565b92915050565b60006020828403121561274157600080fd5b600061274f84828501612672565b91505092915050565b6000806040838503121561276b57600080fd5b600061277985828601612672565b925050602061278a85828601612672565b9150509250929050565b6000806000606084860312156127a957600080fd5b60006127b786828701612672565b93505060206127c886828701612672565b92505060406127d98682870161271a565b9150509250925092565b600080600080608085870312156127f957600080fd5b600061280787828801612672565b945050602061281887828801612672565b93505060406128298782880161271a565b925050606085013567ffffffffffffffff81111561284657600080fd5b612852878288016126c6565b91505092959194509250565b6000806040838503121561287157600080fd5b600061287f85828601612672565b925050602061289085828601612687565b9150509250929050565b600080604083850312156128ad57600080fd5b60006128bb85828601612672565b92505060206128cc8582860161271a565b9150509250929050565b6000602082840312156128e857600080fd5b60006128f684828501612687565b91505092915050565b60006020828403121561291157600080fd5b600061291f8482850161269c565b91505092915050565b60006020828403121561293a57600080fd5b6000612948848285016126b1565b91505092915050565b60006020828403121561296357600080fd5b600082013567ffffffffffffffff81111561297d57600080fd5b612989848285016126f0565b91505092915050565b6000602082840312156129a457600080fd5b60006129b28482850161271a565b91505092915050565b600080604083850312156129ce57600080fd5b60006129dc8582860161271a565b92505060206129ed85828601612672565b9150509250929050565b6000612a038383612e46565b60208301905092915050565b612a1881613403565b82525050565b6000612a2982613277565b612a3381856132a5565b9350612a3e83613252565b8060005b83811015612a6f578151612a5688826129f7565b9750612a6183613298565b925050600181019050612a42565b5085935050505092915050565b612a8581613415565b82525050565b6000612a9682613282565b612aa081856132b6565b9350612ab0818560208601613486565b612ab981613652565b840191505092915050565b6000612acf8261328d565b612ad981856132d2565b9350612ae9818560208601613486565b612af281613652565b840191505092915050565b6000612b088261328d565b612b1281856132e3565b9350612b22818560208601613486565b80840191505092915050565b60008154612b3b816134b9565b612b4581866132e3565b94506001821660008114612b605760018114612b7157612ba4565b60ff19831686528186019350612ba4565b612b7a85613262565b60005b83811015612b9c57815481890152600182019150602081019050612b7d565b838801955050505b50505092915050565b6000612bba6032836132d2565b9150612bc582613663565b604082019050919050565b6000612bdd6026836132d2565b9150612be8826136b2565b604082019050919050565b6000612c006025836132d2565b9150612c0b82613701565b604082019050919050565b6000612c23601c836132d2565b9150612c2e82613750565b602082019050919050565b6000612c466014836132d2565b9150612c5182613779565b602082019050919050565b6000612c696024836132d2565b9150612c74826137a2565b604082019050919050565b6000612c8c6019836132d2565b9150612c97826137f1565b602082019050919050565b6000612caf6029836132d2565b9150612cba8261381a565b604082019050919050565b6000612cd2603e836132d2565b9150612cdd82613869565b604082019050919050565b6000612cf56020836132d2565b9150612d00826138b8565b602082019050919050565b6000612d186020836132d2565b9150612d23826138e1565b602082019050919050565b6000612d3b6017836132d2565b9150612d468261390a565b602082019050919050565b6000612d5e602f836132d2565b9150612d6982613933565b604082019050919050565b6000612d816018836132d2565b9150612d8c82613982565b602082019050919050565b6000612da46021836132d2565b9150612daf826139ab565b604082019050919050565b6000612dc76000836132c7565b9150612dd2826139fa565b600082019050919050565b6000612dea6014836132d2565b9150612df5826139fd565b602082019050919050565b6000612e0d602e836132d2565b9150612e1882613a26565b604082019050919050565b6000612e306013836132d2565b9150612e3b82613a75565b602082019050919050565b612e4f8161346d565b82525050565b612e5e8161346d565b82525050565b6000612e708286612afd565b9150612e7c8285612afd565b9150612e888284612b2e565b9150819050949350505050565b6000612ea082612dba565b9150819050919050565b6000602082019050612ebf6000830184612a0f565b92915050565b6000608082019050612eda6000830187612a0f565b612ee76020830186612a0f565b612ef46040830185612e55565b8181036060830152612f068184612a8b565b905095945050505050565b60006020820190508181036000830152612f2b8184612a1e565b905092915050565b6000602082019050612f486000830184612a7c565b92915050565b60006020820190508181036000830152612f688184612ac4565b905092915050565b60006020820190508181036000830152612f8981612bad565b9050919050565b60006020820190508181036000830152612fa981612bd0565b9050919050565b60006020820190508181036000830152612fc981612bf3565b9050919050565b60006020820190508181036000830152612fe981612c16565b9050919050565b6000602082019050818103600083015261300981612c39565b9050919050565b6000602082019050818103600083015261302981612c5c565b9050919050565b6000602082019050818103600083015261304981612c7f565b9050919050565b6000602082019050818103600083015261306981612ca2565b9050919050565b6000602082019050818103600083015261308981612cc5565b9050919050565b600060208201905081810360008301526130a981612ce8565b9050919050565b600060208201905081810360008301526130c981612d0b565b9050919050565b600060208201905081810360008301526130e981612d2e565b9050919050565b6000602082019050818103600083015261310981612d51565b9050919050565b6000602082019050818103600083015261312981612d74565b9050919050565b6000602082019050818103600083015261314981612d97565b9050919050565b6000602082019050818103600083015261316981612ddd565b9050919050565b6000602082019050818103600083015261318981612e00565b9050919050565b600060208201905081810360008301526131a981612e23565b9050919050565b60006020820190506131c56000830184612e55565b92915050565b60006131d56131e6565b90506131e182826134eb565b919050565b6000604051905090565b600067ffffffffffffffff82111561320b5761320a613623565b5b61321482613652565b9050602081019050919050565b600067ffffffffffffffff82111561323c5761323b613623565b5b61324582613652565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006132f98261346d565b91506133048361346d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561333957613338613596565b5b828201905092915050565b600061334f8261346d565b915061335a8361346d565b92508261336a576133696135c5565b5b828204905092915050565b60006133808261346d565b915061338b8361346d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156133c4576133c3613596565b5b828202905092915050565b60006133da8261346d565b91506133e58361346d565b9250828210156133f8576133f7613596565b5b828203905092915050565b600061340e8261344d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156134a4578082015181840152602081019050613489565b838111156134b3576000848401525b50505050565b600060028204905060018216806134d157607f821691505b602082108114156134e5576134e46135f4565b5b50919050565b6134f482613652565b810181811067ffffffffffffffff8211171561351357613512613623565b5b80604052505050565b60006135278261346d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561355a57613559613596565b5b600182019050919050565b60006135708261346d565b915061357b8361346d565b92508261358b5761358a6135c5565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b613aa781613403565b8114613ab257600080fd5b50565b613abe81613415565b8114613ac957600080fd5b50565b613ad581613421565b8114613ae057600080fd5b50565b613aec8161346d565b8114613af757600080fd5b5056fea2646970667358221220dc4a3c54f899049f9ce44efa44eec886e4baf44765c9586f418349e4e51a80ad64736f6c63430008040033

Deployed Bytecode Sourcemap

42638:4139:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26202:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27129:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28642:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28159:417;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42931:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45380:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45486:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43378:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29342:336;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45571:883;;;;;;;;;;;;;:::i;:::-;;29749:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43889:635;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44958:74;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42894:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43045:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42794:95;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26840:222;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45038:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26571:207;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6738:103;;;;;;;;;;;;;:::i;:::-;;45274:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6090:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43000:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27298:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43473:247;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28885:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45138:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30005:323;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44530:422;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42965:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29111:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43728:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6996:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26202:305;26304:4;26356:25;26341:40;;;:11;:40;;;;:105;;;;26413:33;26398:48;;;:11;:48;;;;26341:105;:158;;;;26463:36;26487:11;26463:23;:36::i;:::-;26341:158;26321:178;;26202:305;;;:::o;27129:100::-;27183:13;27216:5;27209:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27129:100;:::o;28642:171::-;28718:7;28738:23;28753:7;28738:14;:23::i;:::-;28781:15;:24;28797:7;28781:24;;;;;;;;;;;;;;;;;;;;;28774:31;;28642:171;;;:::o;28159:417::-;28240:13;28256:23;28271:7;28256:14;:23::i;:::-;28240:39;;28304:5;28298:11;;:2;:11;;;;28290:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;28398:5;28382:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;28407:37;28424:5;28431:12;:10;:12::i;:::-;28407:16;:37::i;:::-;28382:62;28360:174;;;;;;;;;;;;:::i;:::-;;;;;;;;;28547:21;28556:2;28560:7;28547:8;:21::i;:::-;28159:417;;;:::o;42931:29::-;;;;:::o;45380:100::-;5976:13;:11;:13::i;:::-;45464:10:::1;45452:9;:22;;;;;;;;;;;;:::i;:::-;;45380:100:::0;:::o;45486:77::-;5976:13;:11;:13::i;:::-;45551:6:::1;45542;;:15;;;;;;;;;;;;;;;;;;45486:77:::0;:::o;43378:89::-;43422:7;43445:16;:6;:14;:16::i;:::-;43438:23;;43378:89;:::o;29342:336::-;29537:41;29556:12;:10;:12::i;:::-;29570:7;29537:18;:41::i;:::-;29529:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;29642:28;29652:4;29658:2;29662:7;29642:9;:28::i;:::-;29342:336;;;:::o;45571:883::-;5976:13;:11;:13::i;:::-;45725:17:::1;45773:3;45769:1;45745:21;:25;;;;:::i;:::-;:31;;;;:::i;:::-;45725:51;;45783:17;45831:3;45827:1;45803:21;:25;;;;:::i;:::-;:31;;;;:::i;:::-;45783:51;;45844:7;45865:42;45857:56;;45921:9;45857:78;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45843:92;;;45950:2;45942:11;;;::::0;::::1;;45961:7;45982:42;45974:56;;46038:9;45974:78;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45960:92;;;46067:2;46059:11;;;::::0;::::1;;46276:7;46297;:5;:7::i;:::-;46289:21;;46318;46289:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46275:69;;;46359:2;46351:11;;;::::0;::::1;;6000:1;;;;;45571:883::o:0;29749:185::-;29887:39;29904:4;29910:2;29914:7;29887:39;;;;;;;;;;;;:16;:39::i;:::-;29749:185;;;:::o;43889:635::-;43964:16;43992:23;44018:17;44028:6;44018:9;:17::i;:::-;43992:43;;44042:30;44089:15;44075:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44042:63;;44112:22;44137:1;44112:26;;44145:23;44181:309;44206:15;44188;:33;:64;;;;;44243:9;;44225:14;:27;;44188:64;44181:309;;;44263:25;44291:23;44299:14;44291:7;:23::i;:::-;44263:51;;44350:6;44329:27;;:17;:27;;;44325:131;;;44402:14;44369:13;44383:15;44369:30;;;;;;;;;;;;;;;;;;;;;:47;;;;;44429:17;;;;;:::i;:::-;;;;44325:131;44466:16;;;;;:::i;:::-;;;;44181:309;;;;44505:13;44498:20;;;;;;43889:635;;;:::o;44958:74::-;5976:13;:11;:13::i;:::-;45021:5:::1;45014:4;:12;;;;44958:74:::0;:::o;42894:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;43045:25::-;;;;;;;;;;;;;:::o;42794:95::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;26840:222::-;26912:7;26932:13;26948:7;:16;26956:7;26948:16;;;;;;;;;;;;;;;;;;;;;26932:32;;27000:1;26983:19;;:5;:19;;;;26975:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;27049:5;27042:12;;;26840:222;;;:::o;45038:94::-;5976:13;:11;:13::i;:::-;45116:10:::1;45104:9;:22;;;;45038:94:::0;:::o;26571:207::-;26643:7;26688:1;26671:19;;:5;:19;;;;26663:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26754:9;:16;26764:5;26754:16;;;;;;;;;;;;;;;;26747:23;;26571:207;;;:::o;6738:103::-;5976:13;:11;:13::i;:::-;6803:30:::1;6830:1;6803:18;:30::i;:::-;6738:103::o:0;45274:100::-;5976:13;:11;:13::i;:::-;45358:10:::1;45346:9;:22;;;;;;;;;;;;:::i;:::-;;45274:100:::0;:::o;6090:87::-;6136:7;6163:6;;;;;;;;;;;6156:13;;6090:87;:::o;43000:38::-;;;;:::o;27298:104::-;27354:13;27387:7;27380:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27298:104;:::o;43473:247::-;43538:11;43212:1;43198:11;:15;:52;;;;;43232:18;;43217:11;:33;;43198:52;43190:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;43324:9;;43309:11;43290:16;:6;:14;:16::i;:::-;:30;;;;:::i;:::-;:43;;43282:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;43567:6:::1;;;;;;;;;;;43566:7;43558:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;43636:11;43629:4;;:18;;;;:::i;:::-;43616:9;:31;;43608:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;43680:34;43690:10;43702:11;43680:9;:34::i;:::-;43473:247:::0;;:::o;28885:155::-;28980:52;28999:12;:10;:12::i;:::-;29013:8;29023;28980:18;:52::i;:::-;28885:155;;:::o;45138:130::-;5976:13;:11;:13::i;:::-;45243:19:::1;45222:18;:40;;;;45138:130:::0;:::o;30005:323::-;30179:41;30198:12;:10;:12::i;:::-;30212:7;30179:18;:41::i;:::-;30171:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;30282:38;30296:4;30302:2;30306:7;30315:4;30282:13;:38::i;:::-;30005:323;;;;:::o;44530:422::-;44629:13;44670:17;44678:8;44670:7;:17::i;:::-;44654:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;44761:28;44792:10;:8;:10::i;:::-;44761:41;;44847:1;44822:14;44816:28;:32;:130;;;;;;;;;;;;;;;;;44884:14;44900:19;:8;:17;:19::i;:::-;44921:9;44867:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;44816:130;44809:137;;;44530:422;;;:::o;42965:30::-;;;;:::o;29111:164::-;29208:4;29232:18;:25;29251:5;29232:25;;;;;;;;;;;;;;;:35;29258:8;29232:35;;;;;;;;;;;;;;;;;;;;;;;;;29225:42;;29111:164;;;;:::o;43728:155::-;43814:11;43212:1;43198:11;:15;:52;;;;;43232:18;;43217:11;:33;;43198:52;43190:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;43324:9;;43309:11;43290:16;:6;:14;:16::i;:::-;:30;;;;:::i;:::-;:43;;43282:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;5976:13:::1;:11;:13::i;:::-;43844:33:::2;43854:9;43865:11;43844:9;:33::i;:::-;43728:155:::0;;;:::o;6996:201::-;5976:13;:11;:13::i;:::-;7105:1:::1;7085:22;;:8;:22;;;;7077:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7161:28;7180:8;7161:18;:28::i;:::-;6996:201:::0;:::o;18944:157::-;19029:4;19068:25;19053:40;;;:11;:40;;;;19046:47;;18944:157;;;:::o;36617:135::-;36699:16;36707:7;36699;:16::i;:::-;36691:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;36617:135;:::o;4641:98::-;4694:7;4721:10;4714:17;;4641:98;:::o;35896:174::-;35998:2;35971:15;:24;35987:7;35971:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;36054:7;36050:2;36016:46;;36025:23;36040:7;36025:14;:23::i;:::-;36016:46;;;;;;;;;;;;35896:174;;:::o;6255:132::-;6330:12;:10;:12::i;:::-;6319:23;;:7;:5;:7::i;:::-;:23;;;6311:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6255:132::o;872:114::-;937:7;964;:14;;;957:21;;872:114;;;:::o;32129:264::-;32222:4;32239:13;32255:23;32270:7;32255:14;:23::i;:::-;32239:39;;32308:5;32297:16;;:7;:16;;;:52;;;;32317:32;32334:5;32341:7;32317:16;:32::i;:::-;32297:52;:87;;;;32377:7;32353:31;;:20;32365:7;32353:11;:20::i;:::-;:31;;;32297:87;32289:96;;;32129:264;;;;:::o;35152:625::-;35311:4;35284:31;;:23;35299:7;35284:14;:23::i;:::-;:31;;;35276:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;35390:1;35376:16;;:2;:16;;;;35368:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;35446:39;35467:4;35473:2;35477:7;35446:20;:39::i;:::-;35550:29;35567:1;35571:7;35550:8;:29::i;:::-;35611:1;35592:9;:15;35602:4;35592:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;35640:1;35623:9;:13;35633:2;35623:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;35671:2;35652:7;:16;35660:7;35652:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;35710:7;35706:2;35691:27;;35700:4;35691:27;;;;;;;;;;;;35731:38;35751:4;35757:2;35761:7;35731:19;:38::i;:::-;35152:625;;;:::o;7357:191::-;7431:16;7450:6;;;;;;;;;;;7431:25;;7476:8;7467:6;;:17;;;;;;;;;;;;;;;;;;7531:8;7500:40;;7521:8;7500:40;;;;;;;;;;;;7357:191;;:::o;46460:204::-;46540:9;46535:124;46559:11;46555:1;:15;46535:124;;;46586:18;:6;:16;:18::i;:::-;46613:38;46623:9;46634:16;:6;:14;:16::i;:::-;46613:9;:38::i;:::-;46572:3;;;;;:::i;:::-;;;;46535:124;;;;46460:204;;:::o;36213:315::-;36368:8;36359:17;;:5;:17;;;;36351:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;36455:8;36417:18;:25;36436:5;36417:25;;;;;;;;;;;;;;;:35;36443:8;36417:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;36501:8;36479:41;;36494:5;36479:41;;;36511:8;36479:41;;;;;;:::i;:::-;;;;;;;;36213:315;;;:::o;31209:313::-;31365:28;31375:4;31381:2;31385:7;31365:9;:28::i;:::-;31412:47;31435:4;31441:2;31445:7;31454:4;31412:22;:47::i;:::-;31404:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;31209:313;;;;:::o;31835:127::-;31900:4;31952:1;31924:30;;:7;:16;31932:7;31924:16;;;;;;;;;;;;;;;;;;;;;:30;;;;31917:37;;31835:127;;;:::o;46670:104::-;46730:13;46759:9;46752:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46670:104;:::o;1895:723::-;1951:13;2181:1;2172:5;:10;2168:53;;;2199:10;;;;;;;;;;;;;;;;;;;;;2168:53;2231:12;2246:5;2231:20;;2262:14;2287:78;2302:1;2294:4;:9;2287:78;;2320:8;;;;;:::i;:::-;;;;2351:2;2343:10;;;;;:::i;:::-;;;2287:78;;;2375:19;2407:6;2397:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2375:39;;2425:154;2441:1;2432:5;:10;2425:154;;2469:1;2459:11;;;;;:::i;:::-;;;2536:2;2528:5;:10;;;;:::i;:::-;2515:2;:24;;;;:::i;:::-;2502:39;;2485:6;2492;2485:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;2565:2;2556:11;;;;;:::i;:::-;;;2425:154;;;2603:6;2589:21;;;;;1895:723;;;;:::o;38741:126::-;;;;:::o;39252:125::-;;;;:::o;994:127::-;1101:1;1083:7;:14;;;:19;;;;;;;;;;;994:127;:::o;32735:110::-;32811:26;32821:2;32825:7;32811:26;;;;;;;;;;;;:9;:26::i;:::-;32735:110;;:::o;37316:853::-;37470:4;37491:15;:2;:13;;;:15::i;:::-;37487:675;;;37543:2;37527:36;;;37564:12;:10;:12::i;:::-;37578:4;37584:7;37593:4;37527:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;37523:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37785:1;37768:6;:13;:18;37764:328;;;37811:60;;;;;;;;;;:::i;:::-;;;;;;;;37764:328;38042:6;38036:13;38027:6;38023:2;38019:15;38012:38;37523:584;37659:41;;;37649:51;;;:6;:51;;;;37642:58;;;;;37487:675;38146:4;38139:11;;37316:853;;;;;;;:::o;33072:319::-;33201:18;33207:2;33211:7;33201:5;:18::i;:::-;33252:53;33283:1;33287:2;33291:7;33300:4;33252:22;:53::i;:::-;33230:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;33072:319;;;:::o;8788:326::-;8848:4;9105:1;9083:7;:19;;;:23;9076:30;;8788:326;;;:::o;33727:439::-;33821:1;33807:16;;:2;:16;;;;33799:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;33880:16;33888:7;33880;:16::i;:::-;33879:17;33871:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;33942:45;33971:1;33975:2;33979:7;33942:20;:45::i;:::-;34017:1;34000:9;:13;34010:2;34000:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;34048:2;34029:7;:16;34037:7;34029:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;34093:7;34089:2;34068:33;;34085:1;34068:33;;;;;;;;;;;;34114:44;34142:1;34146:2;34150:7;34114:19;:44::i;:::-;33727:439;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:343:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:2;;;290:1;287;280:12;249:2;303:41;337:6;332:3;327;303:41;:::i;:::-;90:260;;;;;;:::o;356:345::-;434:5;459:66;475:49;517:6;475:49;:::i;:::-;459:66;:::i;:::-;450:75;;548:6;541:5;534:21;586:4;579:5;575:16;624:3;615:6;610:3;606:16;603:25;600:2;;;641:1;638;631:12;600:2;654:41;688:6;683:3;678;654:41;:::i;:::-;440:261;;;;;;:::o;707:139::-;753:5;791:6;778:20;769:29;;807:33;834:5;807:33;:::i;:::-;759:87;;;;:::o;852:133::-;895:5;933:6;920:20;911:29;;949:30;973:5;949:30;:::i;:::-;901:84;;;;:::o;991:137::-;1036:5;1074:6;1061:20;1052:29;;1090:32;1116:5;1090:32;:::i;:::-;1042:86;;;;:::o;1134:141::-;1190:5;1221:6;1215:13;1206:22;;1237:32;1263:5;1237:32;:::i;:::-;1196:79;;;;:::o;1294:271::-;1349:5;1398:3;1391:4;1383:6;1379:17;1375:27;1365:2;;1416:1;1413;1406:12;1365:2;1456:6;1443:20;1481:78;1555:3;1547:6;1540:4;1532:6;1528:17;1481:78;:::i;:::-;1472:87;;1355:210;;;;;:::o;1585:273::-;1641:5;1690:3;1683:4;1675:6;1671:17;1667:27;1657:2;;1708:1;1705;1698:12;1657:2;1748:6;1735:20;1773:79;1848:3;1840:6;1833:4;1825:6;1821:17;1773:79;:::i;:::-;1764:88;;1647:211;;;;;:::o;1864:139::-;1910:5;1948:6;1935:20;1926:29;;1964:33;1991:5;1964:33;:::i;:::-;1916:87;;;;:::o;2009:262::-;2068:6;2117:2;2105:9;2096:7;2092:23;2088:32;2085:2;;;2133:1;2130;2123:12;2085:2;2176:1;2201:53;2246:7;2237:6;2226:9;2222:22;2201:53;:::i;:::-;2191:63;;2147:117;2075:196;;;;:::o;2277:407::-;2345:6;2353;2402:2;2390:9;2381:7;2377:23;2373:32;2370:2;;;2418:1;2415;2408:12;2370:2;2461:1;2486:53;2531:7;2522:6;2511:9;2507:22;2486:53;:::i;:::-;2476:63;;2432:117;2588:2;2614:53;2659:7;2650:6;2639:9;2635:22;2614:53;:::i;:::-;2604:63;;2559:118;2360:324;;;;;:::o;2690:552::-;2767:6;2775;2783;2832:2;2820:9;2811:7;2807:23;2803:32;2800:2;;;2848:1;2845;2838:12;2800:2;2891:1;2916:53;2961:7;2952:6;2941:9;2937:22;2916:53;:::i;:::-;2906:63;;2862:117;3018:2;3044:53;3089:7;3080:6;3069:9;3065:22;3044:53;:::i;:::-;3034:63;;2989:118;3146:2;3172:53;3217:7;3208:6;3197:9;3193:22;3172:53;:::i;:::-;3162:63;;3117:118;2790:452;;;;;:::o;3248:809::-;3343:6;3351;3359;3367;3416:3;3404:9;3395:7;3391:23;3387:33;3384:2;;;3433:1;3430;3423:12;3384:2;3476:1;3501:53;3546:7;3537:6;3526:9;3522:22;3501:53;:::i;:::-;3491:63;;3447:117;3603:2;3629:53;3674:7;3665:6;3654:9;3650:22;3629:53;:::i;:::-;3619:63;;3574:118;3731:2;3757:53;3802:7;3793:6;3782:9;3778:22;3757:53;:::i;:::-;3747:63;;3702:118;3887:2;3876:9;3872:18;3859:32;3918:18;3910:6;3907:30;3904:2;;;3950:1;3947;3940:12;3904:2;3978:62;4032:7;4023:6;4012:9;4008:22;3978:62;:::i;:::-;3968:72;;3830:220;3374:683;;;;;;;:::o;4063:401::-;4128:6;4136;4185:2;4173:9;4164:7;4160:23;4156:32;4153:2;;;4201:1;4198;4191:12;4153:2;4244:1;4269:53;4314:7;4305:6;4294:9;4290:22;4269:53;:::i;:::-;4259:63;;4215:117;4371:2;4397:50;4439:7;4430:6;4419:9;4415:22;4397:50;:::i;:::-;4387:60;;4342:115;4143:321;;;;;:::o;4470:407::-;4538:6;4546;4595:2;4583:9;4574:7;4570:23;4566:32;4563:2;;;4611:1;4608;4601:12;4563:2;4654:1;4679:53;4724:7;4715:6;4704:9;4700:22;4679:53;:::i;:::-;4669:63;;4625:117;4781:2;4807:53;4852:7;4843:6;4832:9;4828:22;4807:53;:::i;:::-;4797:63;;4752:118;4553:324;;;;;:::o;4883:256::-;4939:6;4988:2;4976:9;4967:7;4963:23;4959:32;4956:2;;;5004:1;5001;4994:12;4956:2;5047:1;5072:50;5114:7;5105:6;5094:9;5090:22;5072:50;:::i;:::-;5062:60;;5018:114;4946:193;;;;:::o;5145:260::-;5203:6;5252:2;5240:9;5231:7;5227:23;5223:32;5220:2;;;5268:1;5265;5258:12;5220:2;5311:1;5336:52;5380:7;5371:6;5360:9;5356:22;5336:52;:::i;:::-;5326:62;;5282:116;5210:195;;;;:::o;5411:282::-;5480:6;5529:2;5517:9;5508:7;5504:23;5500:32;5497:2;;;5545:1;5542;5535:12;5497:2;5588:1;5613:63;5668:7;5659:6;5648:9;5644:22;5613:63;:::i;:::-;5603:73;;5559:127;5487:206;;;;:::o;5699:375::-;5768:6;5817:2;5805:9;5796:7;5792:23;5788:32;5785:2;;;5833:1;5830;5823:12;5785:2;5904:1;5893:9;5889:17;5876:31;5934:18;5926:6;5923:30;5920:2;;;5966:1;5963;5956:12;5920:2;5994:63;6049:7;6040:6;6029:9;6025:22;5994:63;:::i;:::-;5984:73;;5847:220;5775:299;;;;:::o;6080:262::-;6139:6;6188:2;6176:9;6167:7;6163:23;6159:32;6156:2;;;6204:1;6201;6194:12;6156:2;6247:1;6272:53;6317:7;6308:6;6297:9;6293:22;6272:53;:::i;:::-;6262:63;;6218:117;6146:196;;;;:::o;6348:407::-;6416:6;6424;6473:2;6461:9;6452:7;6448:23;6444:32;6441:2;;;6489:1;6486;6479:12;6441:2;6532:1;6557:53;6602:7;6593:6;6582:9;6578:22;6557:53;:::i;:::-;6547:63;;6503:117;6659:2;6685:53;6730:7;6721:6;6710:9;6706:22;6685:53;:::i;:::-;6675:63;;6630:118;6431:324;;;;;:::o;6761:179::-;6830:10;6851:46;6893:3;6885:6;6851:46;:::i;:::-;6929:4;6924:3;6920:14;6906:28;;6841:99;;;;:::o;6946:118::-;7033:24;7051:5;7033:24;:::i;:::-;7028:3;7021:37;7011:53;;:::o;7100:732::-;7219:3;7248:54;7296:5;7248:54;:::i;:::-;7318:86;7397:6;7392:3;7318:86;:::i;:::-;7311:93;;7428:56;7478:5;7428:56;:::i;:::-;7507:7;7538:1;7523:284;7548:6;7545:1;7542:13;7523:284;;;7624:6;7618:13;7651:63;7710:3;7695:13;7651:63;:::i;:::-;7644:70;;7737:60;7790:6;7737:60;:::i;:::-;7727:70;;7583:224;7570:1;7567;7563:9;7558:14;;7523:284;;;7527:14;7823:3;7816:10;;7224:608;;;;;;;:::o;7838:109::-;7919:21;7934:5;7919:21;:::i;:::-;7914:3;7907:34;7897:50;;:::o;7953:360::-;8039:3;8067:38;8099:5;8067:38;:::i;:::-;8121:70;8184:6;8179:3;8121:70;:::i;:::-;8114:77;;8200:52;8245:6;8240:3;8233:4;8226:5;8222:16;8200:52;:::i;:::-;8277:29;8299:6;8277:29;:::i;:::-;8272:3;8268:39;8261:46;;8043:270;;;;;:::o;8319:364::-;8407:3;8435:39;8468:5;8435:39;:::i;:::-;8490:71;8554:6;8549:3;8490:71;:::i;:::-;8483:78;;8570:52;8615:6;8610:3;8603:4;8596:5;8592:16;8570:52;:::i;:::-;8647:29;8669:6;8647:29;:::i;:::-;8642:3;8638:39;8631:46;;8411:272;;;;;:::o;8689:377::-;8795:3;8823:39;8856:5;8823:39;:::i;:::-;8878:89;8960:6;8955:3;8878:89;:::i;:::-;8871:96;;8976:52;9021:6;9016:3;9009:4;9002:5;8998:16;8976:52;:::i;:::-;9053:6;9048:3;9044:16;9037:23;;8799:267;;;;;:::o;9096:845::-;9199:3;9236:5;9230:12;9265:36;9291:9;9265:36;:::i;:::-;9317:89;9399:6;9394:3;9317:89;:::i;:::-;9310:96;;9437:1;9426:9;9422:17;9453:1;9448:137;;;;9599:1;9594:341;;;;9415:520;;9448:137;9532:4;9528:9;9517;9513:25;9508:3;9501:38;9568:6;9563:3;9559:16;9552:23;;9448:137;;9594:341;9661:38;9693:5;9661:38;:::i;:::-;9721:1;9735:154;9749:6;9746:1;9743:13;9735:154;;;9823:7;9817:14;9813:1;9808:3;9804:11;9797:35;9873:1;9864:7;9860:15;9849:26;;9771:4;9768:1;9764:12;9759:17;;9735:154;;;9918:6;9913:3;9909:16;9902:23;;9601:334;;9415:520;;9203:738;;;;;;:::o;9947:366::-;10089:3;10110:67;10174:2;10169:3;10110:67;:::i;:::-;10103:74;;10186:93;10275:3;10186:93;:::i;:::-;10304:2;10299:3;10295:12;10288:19;;10093:220;;;:::o;10319:366::-;10461:3;10482:67;10546:2;10541:3;10482:67;:::i;:::-;10475:74;;10558:93;10647:3;10558:93;:::i;:::-;10676:2;10671:3;10667:12;10660:19;;10465:220;;;:::o;10691:366::-;10833:3;10854:67;10918:2;10913:3;10854:67;:::i;:::-;10847:74;;10930:93;11019:3;10930:93;:::i;:::-;11048:2;11043:3;11039:12;11032:19;;10837:220;;;:::o;11063:366::-;11205:3;11226:67;11290:2;11285:3;11226:67;:::i;:::-;11219:74;;11302:93;11391:3;11302:93;:::i;:::-;11420:2;11415:3;11411:12;11404:19;;11209:220;;;:::o;11435:366::-;11577:3;11598:67;11662:2;11657:3;11598:67;:::i;:::-;11591:74;;11674:93;11763:3;11674:93;:::i;:::-;11792:2;11787:3;11783:12;11776:19;;11581:220;;;:::o;11807:366::-;11949:3;11970:67;12034:2;12029:3;11970:67;:::i;:::-;11963:74;;12046:93;12135:3;12046:93;:::i;:::-;12164:2;12159:3;12155:12;12148:19;;11953:220;;;:::o;12179:366::-;12321:3;12342:67;12406:2;12401:3;12342:67;:::i;:::-;12335:74;;12418:93;12507:3;12418:93;:::i;:::-;12536:2;12531:3;12527:12;12520:19;;12325:220;;;:::o;12551:366::-;12693:3;12714:67;12778:2;12773:3;12714:67;:::i;:::-;12707:74;;12790:93;12879:3;12790:93;:::i;:::-;12908:2;12903:3;12899:12;12892:19;;12697:220;;;:::o;12923:366::-;13065:3;13086:67;13150:2;13145:3;13086:67;:::i;:::-;13079:74;;13162:93;13251:3;13162:93;:::i;:::-;13280:2;13275:3;13271:12;13264:19;;13069:220;;;:::o;13295:366::-;13437:3;13458:67;13522:2;13517:3;13458:67;:::i;:::-;13451:74;;13534:93;13623:3;13534:93;:::i;:::-;13652:2;13647:3;13643:12;13636:19;;13441:220;;;:::o;13667:366::-;13809:3;13830:67;13894:2;13889:3;13830:67;:::i;:::-;13823:74;;13906:93;13995:3;13906:93;:::i;:::-;14024:2;14019:3;14015:12;14008:19;;13813:220;;;:::o;14039:366::-;14181:3;14202:67;14266:2;14261:3;14202:67;:::i;:::-;14195:74;;14278:93;14367:3;14278:93;:::i;:::-;14396:2;14391:3;14387:12;14380:19;;14185:220;;;:::o;14411:366::-;14553:3;14574:67;14638:2;14633:3;14574:67;:::i;:::-;14567:74;;14650:93;14739:3;14650:93;:::i;:::-;14768:2;14763:3;14759:12;14752:19;;14557:220;;;:::o;14783:366::-;14925:3;14946:67;15010:2;15005:3;14946:67;:::i;:::-;14939:74;;15022:93;15111:3;15022:93;:::i;:::-;15140:2;15135:3;15131:12;15124:19;;14929:220;;;:::o;15155:366::-;15297:3;15318:67;15382:2;15377:3;15318:67;:::i;:::-;15311:74;;15394:93;15483:3;15394:93;:::i;:::-;15512:2;15507:3;15503:12;15496:19;;15301:220;;;:::o;15527:398::-;15686:3;15707:83;15788:1;15783:3;15707:83;:::i;:::-;15700:90;;15799:93;15888:3;15799:93;:::i;:::-;15917:1;15912:3;15908:11;15901:18;;15690:235;;;:::o;15931:366::-;16073:3;16094:67;16158:2;16153:3;16094:67;:::i;:::-;16087:74;;16170:93;16259:3;16170:93;:::i;:::-;16288:2;16283:3;16279:12;16272:19;;16077:220;;;:::o;16303:366::-;16445:3;16466:67;16530:2;16525:3;16466:67;:::i;:::-;16459:74;;16542:93;16631:3;16542:93;:::i;:::-;16660:2;16655:3;16651:12;16644:19;;16449:220;;;:::o;16675:366::-;16817:3;16838:67;16902:2;16897:3;16838:67;:::i;:::-;16831:74;;16914:93;17003:3;16914:93;:::i;:::-;17032:2;17027:3;17023:12;17016:19;;16821:220;;;:::o;17047:108::-;17124:24;17142:5;17124:24;:::i;:::-;17119:3;17112:37;17102:53;;:::o;17161:118::-;17248:24;17266:5;17248:24;:::i;:::-;17243:3;17236:37;17226:53;;:::o;17285:589::-;17510:3;17532:95;17623:3;17614:6;17532:95;:::i;:::-;17525:102;;17644:95;17735:3;17726:6;17644:95;:::i;:::-;17637:102;;17756:92;17844:3;17835:6;17756:92;:::i;:::-;17749:99;;17865:3;17858:10;;17514:360;;;;;;:::o;17880:379::-;18064:3;18086:147;18229:3;18086:147;:::i;:::-;18079:154;;18250:3;18243:10;;18068:191;;;:::o;18265:222::-;18358:4;18396:2;18385:9;18381:18;18373:26;;18409:71;18477:1;18466:9;18462:17;18453:6;18409:71;:::i;:::-;18363:124;;;;:::o;18493:640::-;18688:4;18726:3;18715:9;18711:19;18703:27;;18740:71;18808:1;18797:9;18793:17;18784:6;18740:71;:::i;:::-;18821:72;18889:2;18878:9;18874:18;18865:6;18821:72;:::i;:::-;18903;18971:2;18960:9;18956:18;18947:6;18903:72;:::i;:::-;19022:9;19016:4;19012:20;19007:2;18996:9;18992:18;18985:48;19050:76;19121:4;19112:6;19050:76;:::i;:::-;19042:84;;18693:440;;;;;;;:::o;19139:373::-;19282:4;19320:2;19309:9;19305:18;19297:26;;19369:9;19363:4;19359:20;19355:1;19344:9;19340:17;19333:47;19397:108;19500:4;19491:6;19397:108;:::i;:::-;19389:116;;19287:225;;;;:::o;19518:210::-;19605:4;19643:2;19632:9;19628:18;19620:26;;19656:65;19718:1;19707:9;19703:17;19694:6;19656:65;:::i;:::-;19610:118;;;;:::o;19734:313::-;19847:4;19885:2;19874:9;19870:18;19862:26;;19934:9;19928:4;19924:20;19920:1;19909:9;19905:17;19898:47;19962:78;20035:4;20026:6;19962:78;:::i;:::-;19954:86;;19852:195;;;;:::o;20053:419::-;20219:4;20257:2;20246:9;20242:18;20234:26;;20306:9;20300:4;20296:20;20292:1;20281:9;20277:17;20270:47;20334:131;20460:4;20334:131;:::i;:::-;20326:139;;20224:248;;;:::o;20478:419::-;20644:4;20682:2;20671:9;20667:18;20659:26;;20731:9;20725:4;20721:20;20717:1;20706:9;20702:17;20695:47;20759:131;20885:4;20759:131;:::i;:::-;20751:139;;20649:248;;;:::o;20903:419::-;21069:4;21107:2;21096:9;21092:18;21084:26;;21156:9;21150:4;21146:20;21142:1;21131:9;21127:17;21120:47;21184:131;21310:4;21184:131;:::i;:::-;21176:139;;21074:248;;;:::o;21328:419::-;21494:4;21532:2;21521:9;21517:18;21509:26;;21581:9;21575:4;21571:20;21567:1;21556:9;21552:17;21545:47;21609:131;21735:4;21609:131;:::i;:::-;21601:139;;21499:248;;;:::o;21753:419::-;21919:4;21957:2;21946:9;21942:18;21934:26;;22006:9;22000:4;21996:20;21992:1;21981:9;21977:17;21970:47;22034:131;22160:4;22034:131;:::i;:::-;22026:139;;21924:248;;;:::o;22178:419::-;22344:4;22382:2;22371:9;22367:18;22359:26;;22431:9;22425:4;22421:20;22417:1;22406:9;22402:17;22395:47;22459:131;22585:4;22459:131;:::i;:::-;22451:139;;22349:248;;;:::o;22603:419::-;22769:4;22807:2;22796:9;22792:18;22784:26;;22856:9;22850:4;22846:20;22842:1;22831:9;22827:17;22820:47;22884:131;23010:4;22884:131;:::i;:::-;22876:139;;22774:248;;;:::o;23028:419::-;23194:4;23232:2;23221:9;23217:18;23209:26;;23281:9;23275:4;23271:20;23267:1;23256:9;23252:17;23245:47;23309:131;23435:4;23309:131;:::i;:::-;23301:139;;23199:248;;;:::o;23453:419::-;23619:4;23657:2;23646:9;23642:18;23634:26;;23706:9;23700:4;23696:20;23692:1;23681:9;23677:17;23670:47;23734:131;23860:4;23734:131;:::i;:::-;23726:139;;23624:248;;;:::o;23878:419::-;24044:4;24082:2;24071:9;24067:18;24059:26;;24131:9;24125:4;24121:20;24117:1;24106:9;24102:17;24095:47;24159:131;24285:4;24159:131;:::i;:::-;24151:139;;24049:248;;;:::o;24303:419::-;24469:4;24507:2;24496:9;24492:18;24484:26;;24556:9;24550:4;24546:20;24542:1;24531:9;24527:17;24520:47;24584:131;24710:4;24584:131;:::i;:::-;24576:139;;24474:248;;;:::o;24728:419::-;24894:4;24932:2;24921:9;24917:18;24909:26;;24981:9;24975:4;24971:20;24967:1;24956:9;24952:17;24945:47;25009:131;25135:4;25009:131;:::i;:::-;25001:139;;24899:248;;;:::o;25153:419::-;25319:4;25357:2;25346:9;25342:18;25334:26;;25406:9;25400:4;25396:20;25392:1;25381:9;25377:17;25370:47;25434:131;25560:4;25434:131;:::i;:::-;25426:139;;25324:248;;;:::o;25578:419::-;25744:4;25782:2;25771:9;25767:18;25759:26;;25831:9;25825:4;25821:20;25817:1;25806:9;25802:17;25795:47;25859:131;25985:4;25859:131;:::i;:::-;25851:139;;25749:248;;;:::o;26003:419::-;26169:4;26207:2;26196:9;26192:18;26184:26;;26256:9;26250:4;26246:20;26242:1;26231:9;26227:17;26220:47;26284:131;26410:4;26284:131;:::i;:::-;26276:139;;26174:248;;;:::o;26428:419::-;26594:4;26632:2;26621:9;26617:18;26609:26;;26681:9;26675:4;26671:20;26667:1;26656:9;26652:17;26645:47;26709:131;26835:4;26709:131;:::i;:::-;26701:139;;26599:248;;;:::o;26853:419::-;27019:4;27057:2;27046:9;27042:18;27034:26;;27106:9;27100:4;27096:20;27092:1;27081:9;27077:17;27070:47;27134:131;27260:4;27134:131;:::i;:::-;27126:139;;27024:248;;;:::o;27278:419::-;27444:4;27482:2;27471:9;27467:18;27459:26;;27531:9;27525:4;27521:20;27517:1;27506:9;27502:17;27495:47;27559:131;27685:4;27559:131;:::i;:::-;27551:139;;27449:248;;;:::o;27703:222::-;27796:4;27834:2;27823:9;27819:18;27811:26;;27847:71;27915:1;27904:9;27900:17;27891:6;27847:71;:::i;:::-;27801:124;;;;:::o;27931:129::-;27965:6;27992:20;;:::i;:::-;27982:30;;28021:33;28049:4;28041:6;28021:33;:::i;:::-;27972:88;;;:::o;28066:75::-;28099:6;28132:2;28126:9;28116:19;;28106:35;:::o;28147:307::-;28208:4;28298:18;28290:6;28287:30;28284:2;;;28320:18;;:::i;:::-;28284:2;28358:29;28380:6;28358:29;:::i;:::-;28350:37;;28442:4;28436;28432:15;28424:23;;28213:241;;;:::o;28460:308::-;28522:4;28612:18;28604:6;28601:30;28598:2;;;28634:18;;:::i;:::-;28598:2;28672:29;28694:6;28672:29;:::i;:::-;28664:37;;28756:4;28750;28746:15;28738:23;;28527:241;;;:::o;28774:132::-;28841:4;28864:3;28856:11;;28894:4;28889:3;28885:14;28877:22;;28846:60;;;:::o;28912:141::-;28961:4;28984:3;28976:11;;29007:3;29004:1;28997:14;29041:4;29038:1;29028:18;29020:26;;28966:87;;;:::o;29059:114::-;29126:6;29160:5;29154:12;29144:22;;29133:40;;;:::o;29179:98::-;29230:6;29264:5;29258:12;29248:22;;29237:40;;;:::o;29283:99::-;29335:6;29369:5;29363:12;29353:22;;29342:40;;;:::o;29388:113::-;29458:4;29490;29485:3;29481:14;29473:22;;29463:38;;;:::o;29507:184::-;29606:11;29640:6;29635:3;29628:19;29680:4;29675:3;29671:14;29656:29;;29618:73;;;;:::o;29697:168::-;29780:11;29814:6;29809:3;29802:19;29854:4;29849:3;29845:14;29830:29;;29792:73;;;;:::o;29871:147::-;29972:11;30009:3;29994:18;;29984:34;;;;:::o;30024:169::-;30108:11;30142:6;30137:3;30130:19;30182:4;30177:3;30173:14;30158:29;;30120:73;;;;:::o;30199:148::-;30301:11;30338:3;30323:18;;30313:34;;;;:::o;30353:305::-;30393:3;30412:20;30430:1;30412:20;:::i;:::-;30407:25;;30446:20;30464:1;30446:20;:::i;:::-;30441:25;;30600:1;30532:66;30528:74;30525:1;30522:81;30519:2;;;30606:18;;:::i;:::-;30519:2;30650:1;30647;30643:9;30636:16;;30397:261;;;;:::o;30664:185::-;30704:1;30721:20;30739:1;30721:20;:::i;:::-;30716:25;;30755:20;30773:1;30755:20;:::i;:::-;30750:25;;30794:1;30784:2;;30799:18;;:::i;:::-;30784:2;30841:1;30838;30834:9;30829:14;;30706:143;;;;:::o;30855:348::-;30895:7;30918:20;30936:1;30918:20;:::i;:::-;30913:25;;30952:20;30970:1;30952:20;:::i;:::-;30947:25;;31140:1;31072:66;31068:74;31065:1;31062:81;31057:1;31050:9;31043:17;31039:105;31036:2;;;31147:18;;:::i;:::-;31036:2;31195:1;31192;31188:9;31177:20;;30903:300;;;;:::o;31209:191::-;31249:4;31269:20;31287:1;31269:20;:::i;:::-;31264:25;;31303:20;31321:1;31303:20;:::i;:::-;31298:25;;31342:1;31339;31336:8;31333:2;;;31347:18;;:::i;:::-;31333:2;31392:1;31389;31385:9;31377:17;;31254:146;;;;:::o;31406:96::-;31443:7;31472:24;31490:5;31472:24;:::i;:::-;31461:35;;31451:51;;;:::o;31508:90::-;31542:7;31585:5;31578:13;31571:21;31560:32;;31550:48;;;:::o;31604:149::-;31640:7;31680:66;31673:5;31669:78;31658:89;;31648:105;;;:::o;31759:126::-;31796:7;31836:42;31829:5;31825:54;31814:65;;31804:81;;;:::o;31891:77::-;31928:7;31957:5;31946:16;;31936:32;;;:::o;31974:154::-;32058:6;32053:3;32048;32035:30;32120:1;32111:6;32106:3;32102:16;32095:27;32025:103;;;:::o;32134:307::-;32202:1;32212:113;32226:6;32223:1;32220:13;32212:113;;;32311:1;32306:3;32302:11;32296:18;32292:1;32287:3;32283:11;32276:39;32248:2;32245:1;32241:10;32236:15;;32212:113;;;32343:6;32340:1;32337:13;32334:2;;;32423:1;32414:6;32409:3;32405:16;32398:27;32334:2;32183:258;;;;:::o;32447:320::-;32491:6;32528:1;32522:4;32518:12;32508:22;;32575:1;32569:4;32565:12;32596:18;32586:2;;32652:4;32644:6;32640:17;32630:27;;32586:2;32714;32706:6;32703:14;32683:18;32680:38;32677:2;;;32733:18;;:::i;:::-;32677:2;32498:269;;;;:::o;32773:281::-;32856:27;32878:4;32856:27;:::i;:::-;32848:6;32844:40;32986:6;32974:10;32971:22;32950:18;32938:10;32935:34;32932:62;32929:2;;;32997:18;;:::i;:::-;32929:2;33037:10;33033:2;33026:22;32816:238;;;:::o;33060:233::-;33099:3;33122:24;33140:5;33122:24;:::i;:::-;33113:33;;33168:66;33161:5;33158:77;33155:2;;;33238:18;;:::i;:::-;33155:2;33285:1;33278:5;33274:13;33267:20;;33103:190;;;:::o;33299:176::-;33331:1;33348:20;33366:1;33348:20;:::i;:::-;33343:25;;33382:20;33400:1;33382:20;:::i;:::-;33377:25;;33421:1;33411:2;;33426:18;;:::i;:::-;33411:2;33467:1;33464;33460:9;33455:14;;33333:142;;;;:::o;33481:180::-;33529:77;33526:1;33519:88;33626:4;33623:1;33616:15;33650:4;33647:1;33640:15;33667:180;33715:77;33712:1;33705:88;33812:4;33809:1;33802:15;33836:4;33833:1;33826:15;33853:180;33901:77;33898:1;33891:88;33998:4;33995:1;33988:15;34022:4;34019:1;34012:15;34039:180;34087:77;34084:1;34077:88;34184:4;34181:1;34174:15;34208:4;34205:1;34198:15;34225:102;34266:6;34317:2;34313:7;34308:2;34301:5;34297:14;34293:28;34283:38;;34273:54;;;:::o;34333:237::-;34473:34;34469:1;34461:6;34457:14;34450:58;34542:20;34537:2;34529:6;34525:15;34518:45;34439:131;:::o;34576:225::-;34716:34;34712:1;34704:6;34700:14;34693:58;34785:8;34780:2;34772:6;34768:15;34761:33;34682:119;:::o;34807:224::-;34947:34;34943:1;34935:6;34931:14;34924:58;35016:7;35011:2;35003:6;34999:15;34992:32;34913:118;:::o;35037:178::-;35177:30;35173:1;35165:6;35161:14;35154:54;35143:72;:::o;35221:170::-;35361:22;35357:1;35349:6;35345:14;35338:46;35327:64;:::o;35397:223::-;35537:34;35533:1;35525:6;35521:14;35514:58;35606:6;35601:2;35593:6;35589:15;35582:31;35503:117;:::o;35626:175::-;35766:27;35762:1;35754:6;35750:14;35743:51;35732:69;:::o;35807:228::-;35947:34;35943:1;35935:6;35931:14;35924:58;36016:11;36011:2;36003:6;35999:15;35992:36;35913:122;:::o;36041:249::-;36181:34;36177:1;36169:6;36165:14;36158:58;36250:32;36245:2;36237:6;36233:15;36226:57;36147:143;:::o;36296:182::-;36436:34;36432:1;36424:6;36420:14;36413:58;36402:76;:::o;36484:182::-;36624:34;36620:1;36612:6;36608:14;36601:58;36590:76;:::o;36672:173::-;36812:25;36808:1;36800:6;36796:14;36789:49;36778:67;:::o;36851:234::-;36991:34;36987:1;36979:6;36975:14;36968:58;37060:17;37055:2;37047:6;37043:15;37036:42;36957:128;:::o;37091:174::-;37231:26;37227:1;37219:6;37215:14;37208:50;37197:68;:::o;37271:220::-;37411:34;37407:1;37399:6;37395:14;37388:58;37480:3;37475:2;37467:6;37463:15;37456:28;37377:114;:::o;37497:::-;37603:8;:::o;37617:170::-;37757:22;37753:1;37745:6;37741:14;37734:46;37723:64;:::o;37793:233::-;37933:34;37929:1;37921:6;37917:14;37910:58;38002:16;37997:2;37989:6;37985:15;37978:41;37899:127;:::o;38032:169::-;38172:21;38168:1;38160:6;38156:14;38149:45;38138:63;:::o;38207:122::-;38280:24;38298:5;38280:24;:::i;:::-;38273:5;38270:35;38260:2;;38319:1;38316;38309:12;38260:2;38250:79;:::o;38335:116::-;38405:21;38420:5;38405:21;:::i;:::-;38398:5;38395:32;38385:2;;38441:1;38438;38431:12;38385:2;38375:76;:::o;38457:120::-;38529:23;38546:5;38529:23;:::i;:::-;38522:5;38519:34;38509:2;;38567:1;38564;38557:12;38509:2;38499:78;:::o;38583:122::-;38656:24;38674:5;38656:24;:::i;:::-;38649:5;38646:35;38636:2;;38695:1;38692;38685:12;38636:2;38626:79;:::o

Swarm Source

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