ETH Price: $2,458.00 (+2.62%)

Token

Mfer Squad (MS)
 

Overview

Max Total Supply

650 MS

Holders

165

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 MS
0x1b634275d73ead534ff7d1de15cc6640bf9eccb8
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:
MferSquad

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-03-19
*/

// SPDX-License-Identifier: MIT
// 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 v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.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

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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/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.5.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: balance query for the zero address");
        return _balances[owner];
    }

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _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: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @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/MferSquad.sol





pragma solidity >=0.7.0 <0.9.0;




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

  Counters.Counter private supply;

  string public uriPrefix = "";
  string public uriSuffix = ".json";
  string public hiddenMetadataUri;
  
  uint256 public cost = 0.02 ether;
  uint256 public maxSupply = 6500;
  uint256 public maxMintAmountPerTx = 10;
  uint128 public FREE_MINT_PRICE = 0;  
  uint256 public FREE_MINT_IS_ALLOWED_UNTIL = 650; // Free mint is allowed until x mint

  bool public paused = true;
  bool public revealed = false;

  constructor() ERC721("Mfer Squad", "MS") {
    setHiddenMetadataUri("ipfs://QmfVV5y53eJdKquZx74guNqZGXgM2rdc2JiCYJLzxpbMgN/Hidden_Image_Metadata.json");
  }

  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!");
    uint256 COST;

        if (supply.current() < FREE_MINT_IS_ALLOWED_UNTIL) {
            COST = FREE_MINT_PRICE;        
        }
        else {
            COST = _mintAmount * cost;
        }
    require(msg.value >= COST, "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"
    );

    if (revealed == false) {
      return hiddenMetadataUri;
    }

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

  function setRevealed(bool _state) public onlyOwner {
    revealed = _state;
  }

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

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

  function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
    hiddenMetadataUri = _hiddenMetadataUri;
  }

  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 setFreeMintAllowedUntil(uint256 freeMintIsAllowedUntil) external onlyOwner {
        FREE_MINT_IS_ALLOWED_UNTIL = freeMintIsAllowedUntil;
    }


  

  function withdraw() public onlyOwner {
    
    // This will transfer the remaining contract balance to the owner.
    // Do not remove this otherwise you will not be able to withdraw the funds.
    // =============================================================================
    (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":[],"name":"FREE_MINT_IS_ALLOWED_UNTIL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FREE_MINT_PRICE","outputs":[{"internalType":"uint128","name":"","type":"uint128"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"freeMintIsAllowedUntil","type":"uint256"}],"name":"setFreeMintAllowedUntil","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","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"}]

608060405260405180602001604052806000815250600890805190602001906200002b929190620003a7565b506040518060400160405280600581526020017f2e6a736f6e0000000000000000000000000000000000000000000000000000008152506009908051906020019062000079929190620003a7565b5066470de4df820000600b55611964600c55600a600d556000600e60006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555061028a600f556001601060006101000a81548160ff0219169083151502179055506000601060016101000a81548160ff0219169083151502179055503480156200011357600080fd5b506040518060400160405280600a81526020017f4d666572205371756164000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f4d53000000000000000000000000000000000000000000000000000000000000815250816000908051906020019062000198929190620003a7565b508060019080519060200190620001b1929190620003a7565b505050620001d4620001c86200020460201b60201c565b6200020c60201b60201c565b620001fe6040518060800160405280605081526020016200493060509139620002d260201b60201c565b6200053f565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002e26200020460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003086200037d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000361576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000358906200047e565b60405180910390fd5b80600a908051906020019062000379929190620003a7565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003b590620004b1565b90600052602060002090601f016020900481019282620003d9576000855562000425565b82601f10620003f457805160ff191683800117855562000425565b8280016001018555821562000425579182015b828111156200042457825182559160200191906001019062000407565b5b50905062000434919062000438565b5090565b5b808211156200045357600081600090555060010162000439565b5090565b600062000466602083620004a0565b9150620004738262000516565b602082019050919050565b60006020820190508181036000830152620004998162000457565b9050919050565b600082825260208201905092915050565b60006002820490506001821680620004ca57607f821691505b60208210811415620004e157620004e0620004e7565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6143e1806200054f6000396000f3fe6080604052600436106102305760003560e01c80636352211e1161012e578063a22cb465116100ab578063d5abeb011161006f578063d5abeb0114610808578063e0a8085314610833578063e985e9c51461085c578063efbd73f414610899578063f2fde38b146108c257610230565b8063a22cb46514610725578063a45ba8e71461074e578063b071401b14610779578063b88d4fde146107a2578063c87b56dd146107cb57610230565b80638b85e43d116100f25780638b85e43d1461065f5780638da5cb5b1461068857806394354fd0146106b357806395d89b41146106de578063a0712d681461070957610230565b80636352211e1461057a57806370a08231146105b7578063715018a6146105f45780637471e0d51461060b5780637ec4a6591461063657610230565b80633ccfd60b116101bc5780634fdd43cb116101805780634fdd43cb146104a557806351830227146104ce5780635503a0e8146104f95780635c975abb1461052457806362b99ad41461054f57610230565b80633ccfd60b146103d45780634065b85f146103eb57806342842e0e14610416578063438b63001461043f57806344a0d68a1461047c57610230565b806313faede61161020357806313faede61461030357806316ba10e01461032e57806316c38b3c1461035757806318160ddd1461038057806323b872dd146103ab57610230565b806301ffc9a71461023557806306fdde0314610272578063081812fc1461029d578063095ea7b3146102da575b600080fd5b34801561024157600080fd5b5061025c60048036038101906102579190612fc5565b6108eb565b6040516102699190613666565b60405180910390f35b34801561027e57600080fd5b506102876109cd565b6040516102949190613681565b60405180910390f35b3480156102a957600080fd5b506102c460048036038101906102bf9190613068565b610a5f565b6040516102d191906135dd565b60405180910390f35b3480156102e657600080fd5b5061030160048036038101906102fc9190612f58565b610ae4565b005b34801561030f57600080fd5b50610318610bfc565b604051610325919061393e565b60405180910390f35b34801561033a57600080fd5b506103556004803603810190610350919061301f565b610c02565b005b34801561036357600080fd5b5061037e60048036038101906103799190612f98565b610c98565b005b34801561038c57600080fd5b50610395610d31565b6040516103a2919061393e565b60405180910390f35b3480156103b757600080fd5b506103d260048036038101906103cd9190612e42565b610d42565b005b3480156103e057600080fd5b506103e9610da2565b005b3480156103f757600080fd5b50610400610e9e565b60405161040d919061393e565b60405180910390f35b34801561042257600080fd5b5061043d60048036038101906104389190612e42565b610ea4565b005b34801561044b57600080fd5b5061046660048036038101906104619190612dd5565b610ec4565b6040516104739190613644565b60405180910390f35b34801561048857600080fd5b506104a3600480360381019061049e9190613068565b610fcf565b005b3480156104b157600080fd5b506104cc60048036038101906104c7919061301f565b611055565b005b3480156104da57600080fd5b506104e36110eb565b6040516104f09190613666565b60405180910390f35b34801561050557600080fd5b5061050e6110fe565b60405161051b9190613681565b60405180910390f35b34801561053057600080fd5b5061053961118c565b6040516105469190613666565b60405180910390f35b34801561055b57600080fd5b5061056461119f565b6040516105719190613681565b60405180910390f35b34801561058657600080fd5b506105a1600480360381019061059c9190613068565b61122d565b6040516105ae91906135dd565b60405180910390f35b3480156105c357600080fd5b506105de60048036038101906105d99190612dd5565b6112df565b6040516105eb919061393e565b60405180910390f35b34801561060057600080fd5b50610609611397565b005b34801561061757600080fd5b5061062061141f565b60405161062d9190613923565b60405180910390f35b34801561064257600080fd5b5061065d6004803603810190610658919061301f565b611441565b005b34801561066b57600080fd5b5061068660048036038101906106819190613068565b6114d7565b005b34801561069457600080fd5b5061069d61155d565b6040516106aa91906135dd565b60405180910390f35b3480156106bf57600080fd5b506106c8611587565b6040516106d5919061393e565b60405180910390f35b3480156106ea57600080fd5b506106f361158d565b6040516107009190613681565b60405180910390f35b610723600480360381019061071e9190613068565b61161f565b005b34801561073157600080fd5b5061074c60048036038101906107479190612f18565b6117ca565b005b34801561075a57600080fd5b506107636117e0565b6040516107709190613681565b60405180910390f35b34801561078557600080fd5b506107a0600480360381019061079b9190613068565b61186e565b005b3480156107ae57600080fd5b506107c960048036038101906107c49190612e95565b6118f4565b005b3480156107d757600080fd5b506107f260048036038101906107ed9190613068565b611956565b6040516107ff9190613681565b60405180910390f35b34801561081457600080fd5b5061081d611aaf565b60405161082a919061393e565b60405180910390f35b34801561083f57600080fd5b5061085a60048036038101906108559190612f98565b611ab5565b005b34801561086857600080fd5b50610883600480360381019061087e9190612e02565b611b4e565b6040516108909190613666565b60405180910390f35b3480156108a557600080fd5b506108c060048036038101906108bb9190613095565b611be2565b005b3480156108ce57600080fd5b506108e960048036038101906108e49190612dd5565b611d18565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109b657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109c657506109c582611e10565b5b9050919050565b6060600080546109dc90613c63565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0890613c63565b8015610a555780601f10610a2a57610100808354040283529160200191610a55565b820191906000526020600020905b815481529060010190602001808311610a3857829003601f168201915b5050505050905090565b6000610a6a82611e7a565b610aa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa090613823565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610aef8261122d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b57906138a3565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b7f611ee6565b73ffffffffffffffffffffffffffffffffffffffff161480610bae5750610bad81610ba8611ee6565b611b4e565b5b610bed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be4906137a3565b60405180910390fd5b610bf78383611eee565b505050565b600b5481565b610c0a611ee6565b73ffffffffffffffffffffffffffffffffffffffff16610c2861155d565b73ffffffffffffffffffffffffffffffffffffffff1614610c7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7590613843565b60405180910390fd5b8060099080519060200190610c94929190612be9565b5050565b610ca0611ee6565b73ffffffffffffffffffffffffffffffffffffffff16610cbe61155d565b73ffffffffffffffffffffffffffffffffffffffff1614610d14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0b90613843565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b6000610d3d6007611fa7565b905090565b610d53610d4d611ee6565b82611fb5565b610d92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d89906138e3565b60405180910390fd5b610d9d838383612093565b505050565b610daa611ee6565b73ffffffffffffffffffffffffffffffffffffffff16610dc861155d565b73ffffffffffffffffffffffffffffffffffffffff1614610e1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1590613843565b60405180910390fd5b6000610e2861155d565b73ffffffffffffffffffffffffffffffffffffffff1647604051610e4b906135c8565b60006040518083038185875af1925050503d8060008114610e88576040519150601f19603f3d011682016040523d82523d6000602084013e610e8d565b606091505b5050905080610e9b57600080fd5b50565b600f5481565b610ebf838383604051806020016040528060008152506118f4565b505050565b60606000610ed1836112df565b905060008167ffffffffffffffff811115610eef57610eee613dfc565b5b604051908082528060200260200182016040528015610f1d5781602001602082028036833780820191505090505b50905060006001905060005b8381108015610f3a5750600c548211155b15610fc3576000610f4a8361122d565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610faf5782848381518110610f9457610f93613dcd565b5b6020026020010181815250508180610fab90613cc6565b9250505b8280610fba90613cc6565b93505050610f29565b82945050505050919050565b610fd7611ee6565b73ffffffffffffffffffffffffffffffffffffffff16610ff561155d565b73ffffffffffffffffffffffffffffffffffffffff161461104b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104290613843565b60405180910390fd5b80600b8190555050565b61105d611ee6565b73ffffffffffffffffffffffffffffffffffffffff1661107b61155d565b73ffffffffffffffffffffffffffffffffffffffff16146110d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c890613843565b60405180910390fd5b80600a90805190602001906110e7929190612be9565b5050565b601060019054906101000a900460ff1681565b6009805461110b90613c63565b80601f016020809104026020016040519081016040528092919081815260200182805461113790613c63565b80156111845780601f1061115957610100808354040283529160200191611184565b820191906000526020600020905b81548152906001019060200180831161116757829003601f168201915b505050505081565b601060009054906101000a900460ff1681565b600880546111ac90613c63565b80601f01602080910402602001604051908101604052809291908181526020018280546111d890613c63565b80156112255780601f106111fa57610100808354040283529160200191611225565b820191906000526020600020905b81548152906001019060200180831161120857829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156112d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112cd906137e3565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611350576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611347906137c3565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61139f611ee6565b73ffffffffffffffffffffffffffffffffffffffff166113bd61155d565b73ffffffffffffffffffffffffffffffffffffffff1614611413576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140a90613843565b60405180910390fd5b61141d60006122fa565b565b600e60009054906101000a90046fffffffffffffffffffffffffffffffff1681565b611449611ee6565b73ffffffffffffffffffffffffffffffffffffffff1661146761155d565b73ffffffffffffffffffffffffffffffffffffffff16146114bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b490613843565b60405180910390fd5b80600890805190602001906114d3929190612be9565b5050565b6114df611ee6565b73ffffffffffffffffffffffffffffffffffffffff166114fd61155d565b73ffffffffffffffffffffffffffffffffffffffff1614611553576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154a90613843565b60405180910390fd5b80600f8190555050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d5481565b60606001805461159c90613c63565b80601f01602080910402602001604051908101604052809291908181526020018280546115c890613c63565b80156116155780601f106115ea57610100808354040283529160200191611615565b820191906000526020600020905b8154815290600101906020018083116115f857829003601f168201915b5050505050905090565b806000811180156116325750600d548111155b611671576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166890613723565b60405180910390fd5b600c548161167f6007611fa7565b6116899190613a7c565b11156116ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c1906138c3565b60405180910390fd5b601060009054906101000a900460ff161561171a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171190613863565b60405180910390fd5b6000600f546117296007611fa7565b101561176757600e60009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050611778565b600b54836117759190613b03565b90505b803410156117bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b290613903565b60405180910390fd5b6117c533846123c0565b505050565b6117dc6117d5611ee6565b8383612400565b5050565b600a80546117ed90613c63565b80601f016020809104026020016040519081016040528092919081815260200182805461181990613c63565b80156118665780601f1061183b57610100808354040283529160200191611866565b820191906000526020600020905b81548152906001019060200180831161184957829003601f168201915b505050505081565b611876611ee6565b73ffffffffffffffffffffffffffffffffffffffff1661189461155d565b73ffffffffffffffffffffffffffffffffffffffff16146118ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e190613843565b60405180910390fd5b80600d8190555050565b6119056118ff611ee6565b83611fb5565b611944576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193b906138e3565b60405180910390fd5b6119508484848461256d565b50505050565b606061196182611e7a565b6119a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199790613883565b60405180910390fd5b60001515601060019054906101000a900460ff1615151415611a4e57600a80546119c990613c63565b80601f01602080910402602001604051908101604052809291908181526020018280546119f590613c63565b8015611a425780601f10611a1757610100808354040283529160200191611a42565b820191906000526020600020905b815481529060010190602001808311611a2557829003601f168201915b50505050509050611aaa565b6000611a586125c9565b90506000815111611a785760405180602001604052806000815250611aa6565b80611a828461265b565b6009604051602001611a9693929190613597565b6040516020818303038152906040525b9150505b919050565b600c5481565b611abd611ee6565b73ffffffffffffffffffffffffffffffffffffffff16611adb61155d565b73ffffffffffffffffffffffffffffffffffffffff1614611b31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2890613843565b60405180910390fd5b80601060016101000a81548160ff02191690831515021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b81600081118015611bf55750600d548111155b611c34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2b90613723565b60405180910390fd5b600c5481611c426007611fa7565b611c4c9190613a7c565b1115611c8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c84906138c3565b60405180910390fd5b611c95611ee6565b73ffffffffffffffffffffffffffffffffffffffff16611cb361155d565b73ffffffffffffffffffffffffffffffffffffffff1614611d09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0090613843565b60405180910390fd5b611d1382846123c0565b505050565b611d20611ee6565b73ffffffffffffffffffffffffffffffffffffffff16611d3e61155d565b73ffffffffffffffffffffffffffffffffffffffff1614611d94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8b90613843565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dfb906136c3565b60405180910390fd5b611e0d816122fa565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611f618361122d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6000611fc082611e7a565b611fff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff690613783565b60405180910390fd5b600061200a8361122d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061207957508373ffffffffffffffffffffffffffffffffffffffff1661206184610a5f565b73ffffffffffffffffffffffffffffffffffffffff16145b8061208a57506120898185611b4e565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166120b38261122d565b73ffffffffffffffffffffffffffffffffffffffff1614612109576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612100906136e3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612179576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217090613743565b60405180910390fd5b6121848383836127bc565b61218f600082611eee565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121df9190613b5d565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122369190613a7c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46122f58383836127c1565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60005b818110156123fb576123d560076127c6565b6123e8836123e36007611fa7565b6127dc565b80806123f390613cc6565b9150506123c3565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561246f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246690613763565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516125609190613666565b60405180910390a3505050565b612578848484612093565b612584848484846127fa565b6125c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ba906136a3565b60405180910390fd5b50505050565b6060600880546125d890613c63565b80601f016020809104026020016040519081016040528092919081815260200182805461260490613c63565b80156126515780601f1061262657610100808354040283529160200191612651565b820191906000526020600020905b81548152906001019060200180831161263457829003601f168201915b5050505050905090565b606060008214156126a3576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506127b7565b600082905060005b600082146126d55780806126be90613cc6565b915050600a826126ce9190613ad2565b91506126ab565b60008167ffffffffffffffff8111156126f1576126f0613dfc565b5b6040519080825280601f01601f1916602001820160405280156127235781602001600182028036833780820191505090505b5090505b600085146127b05760018261273c9190613b5d565b9150600a8561274b9190613d0f565b60306127579190613a7c565b60f81b81838151811061276d5761276c613dcd565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856127a99190613ad2565b9450612727565b8093505050505b919050565b505050565b505050565b6001816000016000828254019250508190555050565b6127f6828260405180602001604052806000815250612991565b5050565b600061281b8473ffffffffffffffffffffffffffffffffffffffff166129ec565b15612984578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612844611ee6565b8786866040518563ffffffff1660e01b815260040161286694939291906135f8565b602060405180830381600087803b15801561288057600080fd5b505af19250505080156128b157506040513d601f19601f820116820180604052508101906128ae9190612ff2565b60015b612934573d80600081146128e1576040519150601f19603f3d011682016040523d82523d6000602084013e6128e6565b606091505b5060008151141561292c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612923906136a3565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612989565b600190505b949350505050565b61299b8383612a0f565b6129a860008484846127fa565b6129e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129de906136a3565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7690613803565b60405180910390fd5b612a8881611e7a565b15612ac8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612abf90613703565b60405180910390fd5b612ad4600083836127bc565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b249190613a7c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612be5600083836127c1565b5050565b828054612bf590613c63565b90600052602060002090601f016020900481019282612c175760008555612c5e565b82601f10612c3057805160ff1916838001178555612c5e565b82800160010185558215612c5e579182015b82811115612c5d578251825591602001919060010190612c42565b5b509050612c6b9190612c6f565b5090565b5b80821115612c88576000816000905550600101612c70565b5090565b6000612c9f612c9a8461397e565b613959565b905082815260208101848484011115612cbb57612cba613e30565b5b612cc6848285613c21565b509392505050565b6000612ce1612cdc846139af565b613959565b905082815260208101848484011115612cfd57612cfc613e30565b5b612d08848285613c21565b509392505050565b600081359050612d1f8161434f565b92915050565b600081359050612d3481614366565b92915050565b600081359050612d498161437d565b92915050565b600081519050612d5e8161437d565b92915050565b600082601f830112612d7957612d78613e2b565b5b8135612d89848260208601612c8c565b91505092915050565b600082601f830112612da757612da6613e2b565b5b8135612db7848260208601612cce565b91505092915050565b600081359050612dcf81614394565b92915050565b600060208284031215612deb57612dea613e3a565b5b6000612df984828501612d10565b91505092915050565b60008060408385031215612e1957612e18613e3a565b5b6000612e2785828601612d10565b9250506020612e3885828601612d10565b9150509250929050565b600080600060608486031215612e5b57612e5a613e3a565b5b6000612e6986828701612d10565b9350506020612e7a86828701612d10565b9250506040612e8b86828701612dc0565b9150509250925092565b60008060008060808587031215612eaf57612eae613e3a565b5b6000612ebd87828801612d10565b9450506020612ece87828801612d10565b9350506040612edf87828801612dc0565b925050606085013567ffffffffffffffff811115612f0057612eff613e35565b5b612f0c87828801612d64565b91505092959194509250565b60008060408385031215612f2f57612f2e613e3a565b5b6000612f3d85828601612d10565b9250506020612f4e85828601612d25565b9150509250929050565b60008060408385031215612f6f57612f6e613e3a565b5b6000612f7d85828601612d10565b9250506020612f8e85828601612dc0565b9150509250929050565b600060208284031215612fae57612fad613e3a565b5b6000612fbc84828501612d25565b91505092915050565b600060208284031215612fdb57612fda613e3a565b5b6000612fe984828501612d3a565b91505092915050565b60006020828403121561300857613007613e3a565b5b600061301684828501612d4f565b91505092915050565b60006020828403121561303557613034613e3a565b5b600082013567ffffffffffffffff81111561305357613052613e35565b5b61305f84828501612d92565b91505092915050565b60006020828403121561307e5761307d613e3a565b5b600061308c84828501612dc0565b91505092915050565b600080604083850312156130ac576130ab613e3a565b5b60006130ba85828601612dc0565b92505060206130cb85828601612d10565b9150509250929050565b60006130e18383613579565b60208301905092915050565b6130f681613b91565b82525050565b600061310782613a05565b6131118185613a33565b935061311c836139e0565b8060005b8381101561314d57815161313488826130d5565b975061313f83613a26565b925050600181019050613120565b5085935050505092915050565b61316381613ba3565b82525050565b600061317482613a10565b61317e8185613a44565b935061318e818560208601613c30565b61319781613e3f565b840191505092915050565b60006131ad82613a1b565b6131b78185613a60565b93506131c7818560208601613c30565b6131d081613e3f565b840191505092915050565b60006131e682613a1b565b6131f08185613a71565b9350613200818560208601613c30565b80840191505092915050565b6000815461321981613c63565b6132238186613a71565b9450600182166000811461323e576001811461324f57613282565b60ff19831686528186019350613282565b613258856139f0565b60005b8381101561327a5781548189015260018201915060208101905061325b565b838801955050505b50505092915050565b6000613298603283613a60565b91506132a382613e50565b604082019050919050565b60006132bb602683613a60565b91506132c682613e9f565b604082019050919050565b60006132de602583613a60565b91506132e982613eee565b604082019050919050565b6000613301601c83613a60565b915061330c82613f3d565b602082019050919050565b6000613324601483613a60565b915061332f82613f66565b602082019050919050565b6000613347602483613a60565b915061335282613f8f565b604082019050919050565b600061336a601983613a60565b915061337582613fde565b602082019050919050565b600061338d602c83613a60565b915061339882614007565b604082019050919050565b60006133b0603883613a60565b91506133bb82614056565b604082019050919050565b60006133d3602a83613a60565b91506133de826140a5565b604082019050919050565b60006133f6602983613a60565b9150613401826140f4565b604082019050919050565b6000613419602083613a60565b915061342482614143565b602082019050919050565b600061343c602c83613a60565b91506134478261416c565b604082019050919050565b600061345f602083613a60565b915061346a826141bb565b602082019050919050565b6000613482601783613a60565b915061348d826141e4565b602082019050919050565b60006134a5602f83613a60565b91506134b08261420d565b604082019050919050565b60006134c8602183613a60565b91506134d38261425c565b604082019050919050565b60006134eb600083613a55565b91506134f6826142ab565b600082019050919050565b600061350e601483613a60565b9150613519826142ae565b602082019050919050565b6000613531603183613a60565b915061353c826142d7565b604082019050919050565b6000613554601383613a60565b915061355f82614326565b602082019050919050565b61357381613bdb565b82525050565b61358281613c17565b82525050565b61359181613c17565b82525050565b60006135a382866131db565b91506135af82856131db565b91506135bb828461320c565b9150819050949350505050565b60006135d3826134de565b9150819050919050565b60006020820190506135f260008301846130ed565b92915050565b600060808201905061360d60008301876130ed565b61361a60208301866130ed565b6136276040830185613588565b81810360608301526136398184613169565b905095945050505050565b6000602082019050818103600083015261365e81846130fc565b905092915050565b600060208201905061367b600083018461315a565b92915050565b6000602082019050818103600083015261369b81846131a2565b905092915050565b600060208201905081810360008301526136bc8161328b565b9050919050565b600060208201905081810360008301526136dc816132ae565b9050919050565b600060208201905081810360008301526136fc816132d1565b9050919050565b6000602082019050818103600083015261371c816132f4565b9050919050565b6000602082019050818103600083015261373c81613317565b9050919050565b6000602082019050818103600083015261375c8161333a565b9050919050565b6000602082019050818103600083015261377c8161335d565b9050919050565b6000602082019050818103600083015261379c81613380565b9050919050565b600060208201905081810360008301526137bc816133a3565b9050919050565b600060208201905081810360008301526137dc816133c6565b9050919050565b600060208201905081810360008301526137fc816133e9565b9050919050565b6000602082019050818103600083015261381c8161340c565b9050919050565b6000602082019050818103600083015261383c8161342f565b9050919050565b6000602082019050818103600083015261385c81613452565b9050919050565b6000602082019050818103600083015261387c81613475565b9050919050565b6000602082019050818103600083015261389c81613498565b9050919050565b600060208201905081810360008301526138bc816134bb565b9050919050565b600060208201905081810360008301526138dc81613501565b9050919050565b600060208201905081810360008301526138fc81613524565b9050919050565b6000602082019050818103600083015261391c81613547565b9050919050565b6000602082019050613938600083018461356a565b92915050565b60006020820190506139536000830184613588565b92915050565b6000613963613974565b905061396f8282613c95565b919050565b6000604051905090565b600067ffffffffffffffff82111561399957613998613dfc565b5b6139a282613e3f565b9050602081019050919050565b600067ffffffffffffffff8211156139ca576139c9613dfc565b5b6139d382613e3f565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613a8782613c17565b9150613a9283613c17565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ac757613ac6613d40565b5b828201905092915050565b6000613add82613c17565b9150613ae883613c17565b925082613af857613af7613d6f565b5b828204905092915050565b6000613b0e82613c17565b9150613b1983613c17565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613b5257613b51613d40565b5b828202905092915050565b6000613b6882613c17565b9150613b7383613c17565b925082821015613b8657613b85613d40565b5b828203905092915050565b6000613b9c82613bf7565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613c4e578082015181840152602081019050613c33565b83811115613c5d576000848401525b50505050565b60006002820490506001821680613c7b57607f821691505b60208210811415613c8f57613c8e613d9e565b5b50919050565b613c9e82613e3f565b810181811067ffffffffffffffff82111715613cbd57613cbc613dfc565b5b80604052505050565b6000613cd182613c17565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613d0457613d03613d40565b5b600182019050919050565b6000613d1a82613c17565b9150613d2583613c17565b925082613d3557613d34613d6f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b61435881613b91565b811461436357600080fd5b50565b61436f81613ba3565b811461437a57600080fd5b50565b61438681613baf565b811461439157600080fd5b50565b61439d81613c17565b81146143a857600080fd5b5056fea26469706673582212208314ffc50ac017625b2e25cc66b62022ea7c312ddae77c59824778acf290667b64736f6c63430008070033697066733a2f2f516d66565635793533654a644b71755a78373467754e715a4758674d32726463324a6943594a4c7a7870624d674e2f48696464656e5f496d6167655f4d657461646174612e6a736f6e

Deployed Bytecode

0x6080604052600436106102305760003560e01c80636352211e1161012e578063a22cb465116100ab578063d5abeb011161006f578063d5abeb0114610808578063e0a8085314610833578063e985e9c51461085c578063efbd73f414610899578063f2fde38b146108c257610230565b8063a22cb46514610725578063a45ba8e71461074e578063b071401b14610779578063b88d4fde146107a2578063c87b56dd146107cb57610230565b80638b85e43d116100f25780638b85e43d1461065f5780638da5cb5b1461068857806394354fd0146106b357806395d89b41146106de578063a0712d681461070957610230565b80636352211e1461057a57806370a08231146105b7578063715018a6146105f45780637471e0d51461060b5780637ec4a6591461063657610230565b80633ccfd60b116101bc5780634fdd43cb116101805780634fdd43cb146104a557806351830227146104ce5780635503a0e8146104f95780635c975abb1461052457806362b99ad41461054f57610230565b80633ccfd60b146103d45780634065b85f146103eb57806342842e0e14610416578063438b63001461043f57806344a0d68a1461047c57610230565b806313faede61161020357806313faede61461030357806316ba10e01461032e57806316c38b3c1461035757806318160ddd1461038057806323b872dd146103ab57610230565b806301ffc9a71461023557806306fdde0314610272578063081812fc1461029d578063095ea7b3146102da575b600080fd5b34801561024157600080fd5b5061025c60048036038101906102579190612fc5565b6108eb565b6040516102699190613666565b60405180910390f35b34801561027e57600080fd5b506102876109cd565b6040516102949190613681565b60405180910390f35b3480156102a957600080fd5b506102c460048036038101906102bf9190613068565b610a5f565b6040516102d191906135dd565b60405180910390f35b3480156102e657600080fd5b5061030160048036038101906102fc9190612f58565b610ae4565b005b34801561030f57600080fd5b50610318610bfc565b604051610325919061393e565b60405180910390f35b34801561033a57600080fd5b506103556004803603810190610350919061301f565b610c02565b005b34801561036357600080fd5b5061037e60048036038101906103799190612f98565b610c98565b005b34801561038c57600080fd5b50610395610d31565b6040516103a2919061393e565b60405180910390f35b3480156103b757600080fd5b506103d260048036038101906103cd9190612e42565b610d42565b005b3480156103e057600080fd5b506103e9610da2565b005b3480156103f757600080fd5b50610400610e9e565b60405161040d919061393e565b60405180910390f35b34801561042257600080fd5b5061043d60048036038101906104389190612e42565b610ea4565b005b34801561044b57600080fd5b5061046660048036038101906104619190612dd5565b610ec4565b6040516104739190613644565b60405180910390f35b34801561048857600080fd5b506104a3600480360381019061049e9190613068565b610fcf565b005b3480156104b157600080fd5b506104cc60048036038101906104c7919061301f565b611055565b005b3480156104da57600080fd5b506104e36110eb565b6040516104f09190613666565b60405180910390f35b34801561050557600080fd5b5061050e6110fe565b60405161051b9190613681565b60405180910390f35b34801561053057600080fd5b5061053961118c565b6040516105469190613666565b60405180910390f35b34801561055b57600080fd5b5061056461119f565b6040516105719190613681565b60405180910390f35b34801561058657600080fd5b506105a1600480360381019061059c9190613068565b61122d565b6040516105ae91906135dd565b60405180910390f35b3480156105c357600080fd5b506105de60048036038101906105d99190612dd5565b6112df565b6040516105eb919061393e565b60405180910390f35b34801561060057600080fd5b50610609611397565b005b34801561061757600080fd5b5061062061141f565b60405161062d9190613923565b60405180910390f35b34801561064257600080fd5b5061065d6004803603810190610658919061301f565b611441565b005b34801561066b57600080fd5b5061068660048036038101906106819190613068565b6114d7565b005b34801561069457600080fd5b5061069d61155d565b6040516106aa91906135dd565b60405180910390f35b3480156106bf57600080fd5b506106c8611587565b6040516106d5919061393e565b60405180910390f35b3480156106ea57600080fd5b506106f361158d565b6040516107009190613681565b60405180910390f35b610723600480360381019061071e9190613068565b61161f565b005b34801561073157600080fd5b5061074c60048036038101906107479190612f18565b6117ca565b005b34801561075a57600080fd5b506107636117e0565b6040516107709190613681565b60405180910390f35b34801561078557600080fd5b506107a0600480360381019061079b9190613068565b61186e565b005b3480156107ae57600080fd5b506107c960048036038101906107c49190612e95565b6118f4565b005b3480156107d757600080fd5b506107f260048036038101906107ed9190613068565b611956565b6040516107ff9190613681565b60405180910390f35b34801561081457600080fd5b5061081d611aaf565b60405161082a919061393e565b60405180910390f35b34801561083f57600080fd5b5061085a60048036038101906108559190612f98565b611ab5565b005b34801561086857600080fd5b50610883600480360381019061087e9190612e02565b611b4e565b6040516108909190613666565b60405180910390f35b3480156108a557600080fd5b506108c060048036038101906108bb9190613095565b611be2565b005b3480156108ce57600080fd5b506108e960048036038101906108e49190612dd5565b611d18565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109b657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109c657506109c582611e10565b5b9050919050565b6060600080546109dc90613c63565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0890613c63565b8015610a555780601f10610a2a57610100808354040283529160200191610a55565b820191906000526020600020905b815481529060010190602001808311610a3857829003601f168201915b5050505050905090565b6000610a6a82611e7a565b610aa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa090613823565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610aef8261122d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b57906138a3565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b7f611ee6565b73ffffffffffffffffffffffffffffffffffffffff161480610bae5750610bad81610ba8611ee6565b611b4e565b5b610bed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be4906137a3565b60405180910390fd5b610bf78383611eee565b505050565b600b5481565b610c0a611ee6565b73ffffffffffffffffffffffffffffffffffffffff16610c2861155d565b73ffffffffffffffffffffffffffffffffffffffff1614610c7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7590613843565b60405180910390fd5b8060099080519060200190610c94929190612be9565b5050565b610ca0611ee6565b73ffffffffffffffffffffffffffffffffffffffff16610cbe61155d565b73ffffffffffffffffffffffffffffffffffffffff1614610d14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0b90613843565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b6000610d3d6007611fa7565b905090565b610d53610d4d611ee6565b82611fb5565b610d92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d89906138e3565b60405180910390fd5b610d9d838383612093565b505050565b610daa611ee6565b73ffffffffffffffffffffffffffffffffffffffff16610dc861155d565b73ffffffffffffffffffffffffffffffffffffffff1614610e1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1590613843565b60405180910390fd5b6000610e2861155d565b73ffffffffffffffffffffffffffffffffffffffff1647604051610e4b906135c8565b60006040518083038185875af1925050503d8060008114610e88576040519150601f19603f3d011682016040523d82523d6000602084013e610e8d565b606091505b5050905080610e9b57600080fd5b50565b600f5481565b610ebf838383604051806020016040528060008152506118f4565b505050565b60606000610ed1836112df565b905060008167ffffffffffffffff811115610eef57610eee613dfc565b5b604051908082528060200260200182016040528015610f1d5781602001602082028036833780820191505090505b50905060006001905060005b8381108015610f3a5750600c548211155b15610fc3576000610f4a8361122d565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610faf5782848381518110610f9457610f93613dcd565b5b6020026020010181815250508180610fab90613cc6565b9250505b8280610fba90613cc6565b93505050610f29565b82945050505050919050565b610fd7611ee6565b73ffffffffffffffffffffffffffffffffffffffff16610ff561155d565b73ffffffffffffffffffffffffffffffffffffffff161461104b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104290613843565b60405180910390fd5b80600b8190555050565b61105d611ee6565b73ffffffffffffffffffffffffffffffffffffffff1661107b61155d565b73ffffffffffffffffffffffffffffffffffffffff16146110d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c890613843565b60405180910390fd5b80600a90805190602001906110e7929190612be9565b5050565b601060019054906101000a900460ff1681565b6009805461110b90613c63565b80601f016020809104026020016040519081016040528092919081815260200182805461113790613c63565b80156111845780601f1061115957610100808354040283529160200191611184565b820191906000526020600020905b81548152906001019060200180831161116757829003601f168201915b505050505081565b601060009054906101000a900460ff1681565b600880546111ac90613c63565b80601f01602080910402602001604051908101604052809291908181526020018280546111d890613c63565b80156112255780601f106111fa57610100808354040283529160200191611225565b820191906000526020600020905b81548152906001019060200180831161120857829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156112d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112cd906137e3565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611350576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611347906137c3565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61139f611ee6565b73ffffffffffffffffffffffffffffffffffffffff166113bd61155d565b73ffffffffffffffffffffffffffffffffffffffff1614611413576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140a90613843565b60405180910390fd5b61141d60006122fa565b565b600e60009054906101000a90046fffffffffffffffffffffffffffffffff1681565b611449611ee6565b73ffffffffffffffffffffffffffffffffffffffff1661146761155d565b73ffffffffffffffffffffffffffffffffffffffff16146114bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b490613843565b60405180910390fd5b80600890805190602001906114d3929190612be9565b5050565b6114df611ee6565b73ffffffffffffffffffffffffffffffffffffffff166114fd61155d565b73ffffffffffffffffffffffffffffffffffffffff1614611553576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154a90613843565b60405180910390fd5b80600f8190555050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d5481565b60606001805461159c90613c63565b80601f01602080910402602001604051908101604052809291908181526020018280546115c890613c63565b80156116155780601f106115ea57610100808354040283529160200191611615565b820191906000526020600020905b8154815290600101906020018083116115f857829003601f168201915b5050505050905090565b806000811180156116325750600d548111155b611671576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166890613723565b60405180910390fd5b600c548161167f6007611fa7565b6116899190613a7c565b11156116ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c1906138c3565b60405180910390fd5b601060009054906101000a900460ff161561171a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171190613863565b60405180910390fd5b6000600f546117296007611fa7565b101561176757600e60009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050611778565b600b54836117759190613b03565b90505b803410156117bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b290613903565b60405180910390fd5b6117c533846123c0565b505050565b6117dc6117d5611ee6565b8383612400565b5050565b600a80546117ed90613c63565b80601f016020809104026020016040519081016040528092919081815260200182805461181990613c63565b80156118665780601f1061183b57610100808354040283529160200191611866565b820191906000526020600020905b81548152906001019060200180831161184957829003601f168201915b505050505081565b611876611ee6565b73ffffffffffffffffffffffffffffffffffffffff1661189461155d565b73ffffffffffffffffffffffffffffffffffffffff16146118ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e190613843565b60405180910390fd5b80600d8190555050565b6119056118ff611ee6565b83611fb5565b611944576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193b906138e3565b60405180910390fd5b6119508484848461256d565b50505050565b606061196182611e7a565b6119a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199790613883565b60405180910390fd5b60001515601060019054906101000a900460ff1615151415611a4e57600a80546119c990613c63565b80601f01602080910402602001604051908101604052809291908181526020018280546119f590613c63565b8015611a425780601f10611a1757610100808354040283529160200191611a42565b820191906000526020600020905b815481529060010190602001808311611a2557829003601f168201915b50505050509050611aaa565b6000611a586125c9565b90506000815111611a785760405180602001604052806000815250611aa6565b80611a828461265b565b6009604051602001611a9693929190613597565b6040516020818303038152906040525b9150505b919050565b600c5481565b611abd611ee6565b73ffffffffffffffffffffffffffffffffffffffff16611adb61155d565b73ffffffffffffffffffffffffffffffffffffffff1614611b31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2890613843565b60405180910390fd5b80601060016101000a81548160ff02191690831515021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b81600081118015611bf55750600d548111155b611c34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2b90613723565b60405180910390fd5b600c5481611c426007611fa7565b611c4c9190613a7c565b1115611c8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c84906138c3565b60405180910390fd5b611c95611ee6565b73ffffffffffffffffffffffffffffffffffffffff16611cb361155d565b73ffffffffffffffffffffffffffffffffffffffff1614611d09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0090613843565b60405180910390fd5b611d1382846123c0565b505050565b611d20611ee6565b73ffffffffffffffffffffffffffffffffffffffff16611d3e61155d565b73ffffffffffffffffffffffffffffffffffffffff1614611d94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8b90613843565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dfb906136c3565b60405180910390fd5b611e0d816122fa565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611f618361122d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6000611fc082611e7a565b611fff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff690613783565b60405180910390fd5b600061200a8361122d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061207957508373ffffffffffffffffffffffffffffffffffffffff1661206184610a5f565b73ffffffffffffffffffffffffffffffffffffffff16145b8061208a57506120898185611b4e565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166120b38261122d565b73ffffffffffffffffffffffffffffffffffffffff1614612109576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612100906136e3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612179576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217090613743565b60405180910390fd5b6121848383836127bc565b61218f600082611eee565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121df9190613b5d565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122369190613a7c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46122f58383836127c1565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60005b818110156123fb576123d560076127c6565b6123e8836123e36007611fa7565b6127dc565b80806123f390613cc6565b9150506123c3565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561246f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246690613763565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516125609190613666565b60405180910390a3505050565b612578848484612093565b612584848484846127fa565b6125c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ba906136a3565b60405180910390fd5b50505050565b6060600880546125d890613c63565b80601f016020809104026020016040519081016040528092919081815260200182805461260490613c63565b80156126515780601f1061262657610100808354040283529160200191612651565b820191906000526020600020905b81548152906001019060200180831161263457829003601f168201915b5050505050905090565b606060008214156126a3576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506127b7565b600082905060005b600082146126d55780806126be90613cc6565b915050600a826126ce9190613ad2565b91506126ab565b60008167ffffffffffffffff8111156126f1576126f0613dfc565b5b6040519080825280601f01601f1916602001820160405280156127235781602001600182028036833780820191505090505b5090505b600085146127b05760018261273c9190613b5d565b9150600a8561274b9190613d0f565b60306127579190613a7c565b60f81b81838151811061276d5761276c613dcd565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856127a99190613ad2565b9450612727565b8093505050505b919050565b505050565b505050565b6001816000016000828254019250508190555050565b6127f6828260405180602001604052806000815250612991565b5050565b600061281b8473ffffffffffffffffffffffffffffffffffffffff166129ec565b15612984578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612844611ee6565b8786866040518563ffffffff1660e01b815260040161286694939291906135f8565b602060405180830381600087803b15801561288057600080fd5b505af19250505080156128b157506040513d601f19601f820116820180604052508101906128ae9190612ff2565b60015b612934573d80600081146128e1576040519150601f19603f3d011682016040523d82523d6000602084013e6128e6565b606091505b5060008151141561292c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612923906136a3565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612989565b600190505b949350505050565b61299b8383612a0f565b6129a860008484846127fa565b6129e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129de906136a3565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7690613803565b60405180910390fd5b612a8881611e7a565b15612ac8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612abf90613703565b60405180910390fd5b612ad4600083836127bc565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b249190613a7c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612be5600083836127c1565b5050565b828054612bf590613c63565b90600052602060002090601f016020900481019282612c175760008555612c5e565b82601f10612c3057805160ff1916838001178555612c5e565b82800160010185558215612c5e579182015b82811115612c5d578251825591602001919060010190612c42565b5b509050612c6b9190612c6f565b5090565b5b80821115612c88576000816000905550600101612c70565b5090565b6000612c9f612c9a8461397e565b613959565b905082815260208101848484011115612cbb57612cba613e30565b5b612cc6848285613c21565b509392505050565b6000612ce1612cdc846139af565b613959565b905082815260208101848484011115612cfd57612cfc613e30565b5b612d08848285613c21565b509392505050565b600081359050612d1f8161434f565b92915050565b600081359050612d3481614366565b92915050565b600081359050612d498161437d565b92915050565b600081519050612d5e8161437d565b92915050565b600082601f830112612d7957612d78613e2b565b5b8135612d89848260208601612c8c565b91505092915050565b600082601f830112612da757612da6613e2b565b5b8135612db7848260208601612cce565b91505092915050565b600081359050612dcf81614394565b92915050565b600060208284031215612deb57612dea613e3a565b5b6000612df984828501612d10565b91505092915050565b60008060408385031215612e1957612e18613e3a565b5b6000612e2785828601612d10565b9250506020612e3885828601612d10565b9150509250929050565b600080600060608486031215612e5b57612e5a613e3a565b5b6000612e6986828701612d10565b9350506020612e7a86828701612d10565b9250506040612e8b86828701612dc0565b9150509250925092565b60008060008060808587031215612eaf57612eae613e3a565b5b6000612ebd87828801612d10565b9450506020612ece87828801612d10565b9350506040612edf87828801612dc0565b925050606085013567ffffffffffffffff811115612f0057612eff613e35565b5b612f0c87828801612d64565b91505092959194509250565b60008060408385031215612f2f57612f2e613e3a565b5b6000612f3d85828601612d10565b9250506020612f4e85828601612d25565b9150509250929050565b60008060408385031215612f6f57612f6e613e3a565b5b6000612f7d85828601612d10565b9250506020612f8e85828601612dc0565b9150509250929050565b600060208284031215612fae57612fad613e3a565b5b6000612fbc84828501612d25565b91505092915050565b600060208284031215612fdb57612fda613e3a565b5b6000612fe984828501612d3a565b91505092915050565b60006020828403121561300857613007613e3a565b5b600061301684828501612d4f565b91505092915050565b60006020828403121561303557613034613e3a565b5b600082013567ffffffffffffffff81111561305357613052613e35565b5b61305f84828501612d92565b91505092915050565b60006020828403121561307e5761307d613e3a565b5b600061308c84828501612dc0565b91505092915050565b600080604083850312156130ac576130ab613e3a565b5b60006130ba85828601612dc0565b92505060206130cb85828601612d10565b9150509250929050565b60006130e18383613579565b60208301905092915050565b6130f681613b91565b82525050565b600061310782613a05565b6131118185613a33565b935061311c836139e0565b8060005b8381101561314d57815161313488826130d5565b975061313f83613a26565b925050600181019050613120565b5085935050505092915050565b61316381613ba3565b82525050565b600061317482613a10565b61317e8185613a44565b935061318e818560208601613c30565b61319781613e3f565b840191505092915050565b60006131ad82613a1b565b6131b78185613a60565b93506131c7818560208601613c30565b6131d081613e3f565b840191505092915050565b60006131e682613a1b565b6131f08185613a71565b9350613200818560208601613c30565b80840191505092915050565b6000815461321981613c63565b6132238186613a71565b9450600182166000811461323e576001811461324f57613282565b60ff19831686528186019350613282565b613258856139f0565b60005b8381101561327a5781548189015260018201915060208101905061325b565b838801955050505b50505092915050565b6000613298603283613a60565b91506132a382613e50565b604082019050919050565b60006132bb602683613a60565b91506132c682613e9f565b604082019050919050565b60006132de602583613a60565b91506132e982613eee565b604082019050919050565b6000613301601c83613a60565b915061330c82613f3d565b602082019050919050565b6000613324601483613a60565b915061332f82613f66565b602082019050919050565b6000613347602483613a60565b915061335282613f8f565b604082019050919050565b600061336a601983613a60565b915061337582613fde565b602082019050919050565b600061338d602c83613a60565b915061339882614007565b604082019050919050565b60006133b0603883613a60565b91506133bb82614056565b604082019050919050565b60006133d3602a83613a60565b91506133de826140a5565b604082019050919050565b60006133f6602983613a60565b9150613401826140f4565b604082019050919050565b6000613419602083613a60565b915061342482614143565b602082019050919050565b600061343c602c83613a60565b91506134478261416c565b604082019050919050565b600061345f602083613a60565b915061346a826141bb565b602082019050919050565b6000613482601783613a60565b915061348d826141e4565b602082019050919050565b60006134a5602f83613a60565b91506134b08261420d565b604082019050919050565b60006134c8602183613a60565b91506134d38261425c565b604082019050919050565b60006134eb600083613a55565b91506134f6826142ab565b600082019050919050565b600061350e601483613a60565b9150613519826142ae565b602082019050919050565b6000613531603183613a60565b915061353c826142d7565b604082019050919050565b6000613554601383613a60565b915061355f82614326565b602082019050919050565b61357381613bdb565b82525050565b61358281613c17565b82525050565b61359181613c17565b82525050565b60006135a382866131db565b91506135af82856131db565b91506135bb828461320c565b9150819050949350505050565b60006135d3826134de565b9150819050919050565b60006020820190506135f260008301846130ed565b92915050565b600060808201905061360d60008301876130ed565b61361a60208301866130ed565b6136276040830185613588565b81810360608301526136398184613169565b905095945050505050565b6000602082019050818103600083015261365e81846130fc565b905092915050565b600060208201905061367b600083018461315a565b92915050565b6000602082019050818103600083015261369b81846131a2565b905092915050565b600060208201905081810360008301526136bc8161328b565b9050919050565b600060208201905081810360008301526136dc816132ae565b9050919050565b600060208201905081810360008301526136fc816132d1565b9050919050565b6000602082019050818103600083015261371c816132f4565b9050919050565b6000602082019050818103600083015261373c81613317565b9050919050565b6000602082019050818103600083015261375c8161333a565b9050919050565b6000602082019050818103600083015261377c8161335d565b9050919050565b6000602082019050818103600083015261379c81613380565b9050919050565b600060208201905081810360008301526137bc816133a3565b9050919050565b600060208201905081810360008301526137dc816133c6565b9050919050565b600060208201905081810360008301526137fc816133e9565b9050919050565b6000602082019050818103600083015261381c8161340c565b9050919050565b6000602082019050818103600083015261383c8161342f565b9050919050565b6000602082019050818103600083015261385c81613452565b9050919050565b6000602082019050818103600083015261387c81613475565b9050919050565b6000602082019050818103600083015261389c81613498565b9050919050565b600060208201905081810360008301526138bc816134bb565b9050919050565b600060208201905081810360008301526138dc81613501565b9050919050565b600060208201905081810360008301526138fc81613524565b9050919050565b6000602082019050818103600083015261391c81613547565b9050919050565b6000602082019050613938600083018461356a565b92915050565b60006020820190506139536000830184613588565b92915050565b6000613963613974565b905061396f8282613c95565b919050565b6000604051905090565b600067ffffffffffffffff82111561399957613998613dfc565b5b6139a282613e3f565b9050602081019050919050565b600067ffffffffffffffff8211156139ca576139c9613dfc565b5b6139d382613e3f565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613a8782613c17565b9150613a9283613c17565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ac757613ac6613d40565b5b828201905092915050565b6000613add82613c17565b9150613ae883613c17565b925082613af857613af7613d6f565b5b828204905092915050565b6000613b0e82613c17565b9150613b1983613c17565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613b5257613b51613d40565b5b828202905092915050565b6000613b6882613c17565b9150613b7383613c17565b925082821015613b8657613b85613d40565b5b828203905092915050565b6000613b9c82613bf7565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613c4e578082015181840152602081019050613c33565b83811115613c5d576000848401525b50505050565b60006002820490506001821680613c7b57607f821691505b60208210811415613c8f57613c8e613d9e565b5b50919050565b613c9e82613e3f565b810181811067ffffffffffffffff82111715613cbd57613cbc613dfc565b5b80604052505050565b6000613cd182613c17565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613d0457613d03613d40565b5b600182019050919050565b6000613d1a82613c17565b9150613d2583613c17565b925082613d3557613d34613d6f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b61435881613b91565b811461436357600080fd5b50565b61436f81613ba3565b811461437a57600080fd5b50565b61438681613baf565b811461439157600080fd5b50565b61439d81613c17565b81146143a857600080fd5b5056fea26469706673582212208314ffc50ac017625b2e25cc66b62022ea7c312ddae77c59824778acf290667b64736f6c63430008070033

Deployed Bytecode Sourcemap

38806:4519:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25607:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26552:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28111:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27634:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39070:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42178:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42284:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39787:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28861:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42534:468;;;;;;;;;;;;;:::i;:::-;;39227:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29271:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40490:635;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41718:74;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41934:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39348:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38992:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39318:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38959:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26246:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25976:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6228:103;;;;;;;;;;;;;:::i;:::-;;39186:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42072:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42366:154;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5577:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39143:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26721:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39882:439;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28404:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39030:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41798:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29527:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41131:494;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39107:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41631:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28630:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40329:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6486:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25607:305;25709:4;25761:25;25746:40;;;:11;:40;;;;:105;;;;25818:33;25803:48;;;:11;:48;;;;25746:105;:158;;;;25868:36;25892:11;25868:23;:36::i;:::-;25746:158;25726:178;;25607:305;;;:::o;26552:100::-;26606:13;26639:5;26632:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26552:100;:::o;28111:221::-;28187:7;28215:16;28223:7;28215;:16::i;:::-;28207:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;28300:15;:24;28316:7;28300:24;;;;;;;;;;;;;;;;;;;;;28293:31;;28111:221;;;:::o;27634:411::-;27715:13;27731:23;27746:7;27731:14;:23::i;:::-;27715:39;;27779:5;27773:11;;:2;:11;;;;27765:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;27873:5;27857:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;27882:37;27899:5;27906:12;:10;:12::i;:::-;27882:16;:37::i;:::-;27857:62;27835:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;28016:21;28025:2;28029:7;28016:8;:21::i;:::-;27704:341;27634:411;;:::o;39070:32::-;;;;:::o;42178:100::-;5808:12;:10;:12::i;:::-;5797:23;;:7;:5;:7::i;:::-;:23;;;5789:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42262:10:::1;42250:9;:22;;;;;;;;;;;;:::i;:::-;;42178:100:::0;:::o;42284:77::-;5808:12;:10;:12::i;:::-;5797:23;;:7;:5;:7::i;:::-;:23;;;5789:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42349:6:::1;42340;;:15;;;;;;;;;;;;;;;;;;42284:77:::0;:::o;39787:89::-;39831:7;39854:16;:6;:14;:16::i;:::-;39847:23;;39787:89;:::o;28861:339::-;29056:41;29075:12;:10;:12::i;:::-;29089:7;29056:18;:41::i;:::-;29048:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;29164:28;29174:4;29180:2;29184:7;29164:9;:28::i;:::-;28861:339;;;:::o;42534:468::-;5808:12;:10;:12::i;:::-;5797:23;;:7;:5;:7::i;:::-;:23;;;5789:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42824:7:::1;42845;:5;:7::i;:::-;42837:21;;42866;42837:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42823:69;;;42907:2;42899:11;;;::::0;::::1;;42571:431;42534:468::o:0;39227:47::-;;;;:::o;29271:185::-;29409:39;29426:4;29432:2;29436:7;29409:39;;;;;;;;;;;;:16;:39::i;:::-;29271:185;;;:::o;40490:635::-;40565:16;40593:23;40619:17;40629:6;40619:9;:17::i;:::-;40593:43;;40643:30;40690:15;40676:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40643:63;;40713:22;40738:1;40713:26;;40746:23;40782:309;40807:15;40789;:33;:64;;;;;40844:9;;40826:14;:27;;40789:64;40782:309;;;40864:25;40892:23;40900:14;40892:7;:23::i;:::-;40864:51;;40951:6;40930:27;;:17;:27;;;40926:131;;;41003:14;40970:13;40984:15;40970:30;;;;;;;;:::i;:::-;;;;;;;:47;;;;;41030:17;;;;;:::i;:::-;;;;40926:131;41067:16;;;;;:::i;:::-;;;;40855:236;40782:309;;;41106:13;41099:20;;;;;;40490:635;;;:::o;41718:74::-;5808:12;:10;:12::i;:::-;5797:23;;:7;:5;:7::i;:::-;:23;;;5789:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41781:5:::1;41774:4;:12;;;;41718:74:::0;:::o;41934:132::-;5808:12;:10;:12::i;:::-;5797:23;;:7;:5;:7::i;:::-;:23;;;5789:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42042:18:::1;42022:17;:38;;;;;;;;;;;;:::i;:::-;;41934:132:::0;:::o;39348:28::-;;;;;;;;;;;;;:::o;38992:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;39318:25::-;;;;;;;;;;;;;:::o;38959:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;26246:239::-;26318:7;26338:13;26354:7;:16;26362:7;26354:16;;;;;;;;;;;;;;;;;;;;;26338:32;;26406:1;26389:19;;:5;:19;;;;26381:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26472:5;26465:12;;;26246:239;;;:::o;25976:208::-;26048:7;26093:1;26076:19;;:5;:19;;;;26068:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;26160:9;:16;26170:5;26160:16;;;;;;;;;;;;;;;;26153:23;;25976:208;;;:::o;6228:103::-;5808:12;:10;:12::i;:::-;5797:23;;:7;:5;:7::i;:::-;:23;;;5789:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6293:30:::1;6320:1;6293:18;:30::i;:::-;6228:103::o:0;39186:34::-;;;;;;;;;;;;;:::o;42072:100::-;5808:12;:10;:12::i;:::-;5797:23;;:7;:5;:7::i;:::-;:23;;;5789:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42156:10:::1;42144:9;:22;;;;;;;;;;;;:::i;:::-;;42072:100:::0;:::o;42366:154::-;5808:12;:10;:12::i;:::-;5797:23;;:7;:5;:7::i;:::-;:23;;;5789:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42490:22:::1;42461:26;:51;;;;42366:154:::0;:::o;5577:87::-;5623:7;5650:6;;;;;;;;;;;5643:13;;5577:87;:::o;39143:38::-;;;;:::o;26721:104::-;26777:13;26810:7;26803:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26721:104;:::o;39882:439::-;39947:11;39621:1;39607:11;:15;:52;;;;;39641:18;;39626:11;:33;;39607:52;39599:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;39733:9;;39718:11;39699:16;:6;:14;:16::i;:::-;:30;;;;:::i;:::-;:43;;39691:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;39976:6:::1;;;;;;;;;;;39975:7;39967:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;40017:12;40065:26;;40046:16;:6;:14;:16::i;:::-;:45;40042:175;;;40115:15;;;;;;;;;;;40108:22;;;;40042:175;;;40201:4;;40187:11;:18;;;;:::i;:::-;40180:25;;40042:175;40244:4;40231:9;:17;;40223:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;40281:34;40291:10;40303:11;40281:9;:34::i;:::-;39960:361;39882:439:::0;;:::o;28404:155::-;28499:52;28518:12;:10;:12::i;:::-;28532:8;28542;28499:18;:52::i;:::-;28404:155;;:::o;39030:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;41798:130::-;5808:12;:10;:12::i;:::-;5797:23;;:7;:5;:7::i;:::-;:23;;;5789:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41903:19:::1;41882:18;:40;;;;41798:130:::0;:::o;29527:328::-;29702:41;29721:12;:10;:12::i;:::-;29735:7;29702:18;:41::i;:::-;29694:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;29808:39;29822:4;29828:2;29832:7;29841:5;29808:13;:39::i;:::-;29527:328;;;;:::o;41131:494::-;41230:13;41271:17;41279:8;41271:7;:17::i;:::-;41255:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;41378:5;41366:17;;:8;;;;;;;;;;;:17;;;41362:64;;;41401:17;41394:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41362:64;41434:28;41465:10;:8;:10::i;:::-;41434:41;;41520:1;41495:14;41489:28;:32;:130;;;;;;;;;;;;;;;;;41557:14;41573:19;:8;:17;:19::i;:::-;41594:9;41540:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;41489:130;41482:137;;;41131:494;;;;:::o;39107:31::-;;;;:::o;41631:81::-;5808:12;:10;:12::i;:::-;5797:23;;:7;:5;:7::i;:::-;:23;;;5789:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41700:6:::1;41689:8;;:17;;;;;;;;;;;;;;;;;;41631:81:::0;:::o;28630:164::-;28727:4;28751:18;:25;28770:5;28751:25;;;;;;;;;;;;;;;:35;28777:8;28751:35;;;;;;;;;;;;;;;;;;;;;;;;;28744:42;;28630:164;;;;:::o;40329:155::-;40415:11;39621:1;39607:11;:15;:52;;;;;39641:18;;39626:11;:33;;39607:52;39599:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;39733:9;;39718:11;39699:16;:6;:14;:16::i;:::-;:30;;;;:::i;:::-;:43;;39691:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;5808:12:::1;:10;:12::i;:::-;5797:23;;:7;:5;:7::i;:::-;:23;;;5789:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40445:33:::2;40455:9;40466:11;40445:9;:33::i;:::-;40329:155:::0;;;:::o;6486:201::-;5808:12;:10;:12::i;:::-;5797:23;;:7;:5;:7::i;:::-;:23;;;5789:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6595:1:::1;6575:22;;:8;:22;;;;6567:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;6651:28;6670:8;6651:18;:28::i;:::-;6486:201:::0;:::o;18361:157::-;18446:4;18485:25;18470:40;;;:11;:40;;;;18463:47;;18361:157;;;:::o;31365:127::-;31430:4;31482:1;31454:30;;:7;:16;31462:7;31454:16;;;;;;;;;;;;;;;;;;;;;:30;;;;31447:37;;31365:127;;;:::o;4301:98::-;4354:7;4381:10;4374:17;;4301:98;:::o;35511:174::-;35613:2;35586:15;:24;35602:7;35586:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;35669:7;35665:2;35631:46;;35640:23;35655:7;35640:14;:23::i;:::-;35631:46;;;;;;;;;;;;35511:174;;:::o;905:114::-;970:7;997;:14;;;990:21;;905:114;;;:::o;31659:348::-;31752:4;31777:16;31785:7;31777;:16::i;:::-;31769:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31853:13;31869:23;31884:7;31869:14;:23::i;:::-;31853:39;;31922:5;31911:16;;:7;:16;;;:51;;;;31955:7;31931:31;;:20;31943:7;31931:11;:20::i;:::-;:31;;;31911:51;:87;;;;31966:32;31983:5;31990:7;31966:16;:32::i;:::-;31911:87;31903:96;;;31659:348;;;;:::o;34768:625::-;34927:4;34900:31;;:23;34915:7;34900:14;:23::i;:::-;:31;;;34892:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;35006:1;34992:16;;:2;:16;;;;34984:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;35062:39;35083:4;35089:2;35093:7;35062:20;:39::i;:::-;35166:29;35183:1;35187:7;35166:8;:29::i;:::-;35227:1;35208:9;:15;35218:4;35208:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;35256:1;35239:9;:13;35249:2;35239:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;35287:2;35268:7;:16;35276:7;35268:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;35326:7;35322:2;35307:27;;35316:4;35307:27;;;;;;;;;;;;35347:38;35367:4;35373:2;35377:7;35347:19;:38::i;:::-;34768:625;;;:::o;6847:191::-;6921:16;6940:6;;;;;;;;;;;6921:25;;6966:8;6957:6;;:17;;;;;;;;;;;;;;;;;;7021:8;6990:40;;7011:8;6990:40;;;;;;;;;;;;6910:128;6847:191;:::o;43008:204::-;43088:9;43083:124;43107:11;43103:1;:15;43083:124;;;43134:18;:6;:16;:18::i;:::-;43161:38;43171:9;43182:16;:6;:14;:16::i;:::-;43161:9;:38::i;:::-;43120:3;;;;;:::i;:::-;;;;43083:124;;;;43008:204;;:::o;35827:315::-;35982:8;35973:17;;:5;:17;;;;35965:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;36069:8;36031:18;:25;36050:5;36031:25;;;;;;;;;;;;;;;:35;36057:8;36031:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;36115:8;36093:41;;36108:5;36093:41;;;36125:8;36093:41;;;;;;:::i;:::-;;;;;;;;35827:315;;;:::o;30737:::-;30894:28;30904:4;30910:2;30914:7;30894:9;:28::i;:::-;30941:48;30964:4;30970:2;30974:7;30983:5;30941:22;:48::i;:::-;30933:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;30737:315;;;;:::o;43218:104::-;43278:13;43307:9;43300:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43218:104;:::o;1863:723::-;1919:13;2149:1;2140:5;:10;2136:53;;;2167:10;;;;;;;;;;;;;;;;;;;;;2136:53;2199:12;2214:5;2199:20;;2230:14;2255:78;2270:1;2262:4;:9;2255:78;;2288:8;;;;;:::i;:::-;;;;2319:2;2311:10;;;;;:::i;:::-;;;2255:78;;;2343:19;2375:6;2365:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2343:39;;2393:154;2409:1;2400:5;:10;2393:154;;2437:1;2427:11;;;;;:::i;:::-;;;2504:2;2496:5;:10;;;;:::i;:::-;2483:2;:24;;;;:::i;:::-;2470:39;;2453:6;2460;2453:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;2533:2;2524:11;;;;;:::i;:::-;;;2393:154;;;2571:6;2557:21;;;;;1863:723;;;;:::o;38078:126::-;;;;:::o;38589:125::-;;;;:::o;1027:127::-;1134:1;1116:7;:14;;;:19;;;;;;;;;;;1027:127;:::o;32349:110::-;32425:26;32435:2;32439:7;32425:26;;;;;;;;;;;;:9;:26::i;:::-;32349:110;;:::o;36707:799::-;36862:4;36883:15;:2;:13;;;:15::i;:::-;36879:620;;;36935:2;36919:36;;;36956:12;:10;:12::i;:::-;36970:4;36976:7;36985:5;36919:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36915:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37178:1;37161:6;:13;:18;37157:272;;;37204:60;;;;;;;;;;:::i;:::-;;;;;;;;37157:272;37379:6;37373:13;37364:6;37360:2;37356:15;37349:38;36915:529;37052:41;;;37042:51;;;:6;:51;;;;37035:58;;;;;36879:620;37483:4;37476:11;;36707:799;;;;;;;:::o;32686:321::-;32816:18;32822:2;32826:7;32816:5;:18::i;:::-;32867:54;32898:1;32902:2;32906:7;32915:5;32867:22;:54::i;:::-;32845:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;32686:321;;;:::o;8278:326::-;8338:4;8595:1;8573:7;:19;;;:23;8566:30;;8278:326;;;:::o;33343:439::-;33437:1;33423:16;;:2;:16;;;;33415:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;33496:16;33504:7;33496;:16::i;:::-;33495:17;33487:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;33558:45;33587:1;33591:2;33595:7;33558:20;:45::i;:::-;33633:1;33616:9;:13;33626:2;33616:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;33664:2;33645:7;:16;33653:7;33645:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;33709:7;33705:2;33684:33;;33701:1;33684:33;;;;;;;;;;;;33730:44;33758:1;33762:2;33766:7;33730:19;:44::i;:::-;33343:439;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:474::-;7555:6;7563;7612:2;7600:9;7591:7;7587:23;7583:32;7580:119;;;7618:79;;:::i;:::-;7580:119;7738:1;7763:53;7808:7;7799:6;7788:9;7784:22;7763:53;:::i;:::-;7753:63;;7709:117;7865:2;7891:53;7936:7;7927:6;7916:9;7912:22;7891:53;:::i;:::-;7881:63;;7836:118;7487:474;;;;;:::o;7967:179::-;8036:10;8057:46;8099:3;8091:6;8057:46;:::i;:::-;8135:4;8130:3;8126:14;8112:28;;7967:179;;;;:::o;8152:118::-;8239:24;8257:5;8239:24;:::i;:::-;8234:3;8227:37;8152:118;;:::o;8306:732::-;8425:3;8454:54;8502:5;8454:54;:::i;:::-;8524:86;8603:6;8598:3;8524:86;:::i;:::-;8517:93;;8634:56;8684:5;8634:56;:::i;:::-;8713:7;8744:1;8729:284;8754:6;8751:1;8748:13;8729:284;;;8830:6;8824:13;8857:63;8916:3;8901:13;8857:63;:::i;:::-;8850:70;;8943:60;8996:6;8943:60;:::i;:::-;8933:70;;8789:224;8776:1;8773;8769:9;8764:14;;8729:284;;;8733:14;9029:3;9022:10;;8430:608;;;8306:732;;;;:::o;9044:109::-;9125:21;9140:5;9125:21;:::i;:::-;9120:3;9113:34;9044:109;;:::o;9159:360::-;9245:3;9273:38;9305:5;9273:38;:::i;:::-;9327:70;9390:6;9385:3;9327:70;:::i;:::-;9320:77;;9406:52;9451:6;9446:3;9439:4;9432:5;9428:16;9406:52;:::i;:::-;9483:29;9505:6;9483:29;:::i;:::-;9478:3;9474:39;9467:46;;9249:270;9159:360;;;;:::o;9525:364::-;9613:3;9641:39;9674:5;9641:39;:::i;:::-;9696:71;9760:6;9755:3;9696:71;:::i;:::-;9689:78;;9776:52;9821:6;9816:3;9809:4;9802:5;9798:16;9776:52;:::i;:::-;9853:29;9875:6;9853:29;:::i;:::-;9848:3;9844:39;9837:46;;9617:272;9525:364;;;;:::o;9895:377::-;10001:3;10029:39;10062:5;10029:39;:::i;:::-;10084:89;10166:6;10161:3;10084:89;:::i;:::-;10077:96;;10182:52;10227:6;10222:3;10215:4;10208:5;10204:16;10182:52;:::i;:::-;10259:6;10254:3;10250:16;10243:23;;10005:267;9895:377;;;;:::o;10302:845::-;10405:3;10442:5;10436:12;10471:36;10497:9;10471:36;:::i;:::-;10523:89;10605:6;10600:3;10523:89;:::i;:::-;10516:96;;10643:1;10632:9;10628:17;10659:1;10654:137;;;;10805:1;10800:341;;;;10621:520;;10654:137;10738:4;10734:9;10723;10719:25;10714:3;10707:38;10774:6;10769:3;10765:16;10758:23;;10654:137;;10800:341;10867:38;10899:5;10867:38;:::i;:::-;10927:1;10941:154;10955:6;10952:1;10949:13;10941:154;;;11029:7;11023:14;11019:1;11014:3;11010:11;11003:35;11079:1;11070:7;11066:15;11055:26;;10977:4;10974:1;10970:12;10965:17;;10941:154;;;11124:6;11119:3;11115:16;11108:23;;10807:334;;10621:520;;10409:738;;10302:845;;;;:::o;11153:366::-;11295:3;11316:67;11380:2;11375:3;11316:67;:::i;:::-;11309:74;;11392:93;11481:3;11392:93;:::i;:::-;11510:2;11505:3;11501:12;11494:19;;11153:366;;;:::o;11525:::-;11667:3;11688:67;11752:2;11747:3;11688:67;:::i;:::-;11681:74;;11764:93;11853:3;11764:93;:::i;:::-;11882:2;11877:3;11873:12;11866:19;;11525:366;;;:::o;11897:::-;12039:3;12060:67;12124:2;12119:3;12060:67;:::i;:::-;12053:74;;12136:93;12225:3;12136:93;:::i;:::-;12254:2;12249:3;12245:12;12238:19;;11897:366;;;:::o;12269:::-;12411:3;12432:67;12496:2;12491:3;12432:67;:::i;:::-;12425:74;;12508:93;12597:3;12508:93;:::i;:::-;12626:2;12621:3;12617:12;12610:19;;12269:366;;;:::o;12641:::-;12783:3;12804:67;12868:2;12863:3;12804:67;:::i;:::-;12797:74;;12880:93;12969:3;12880:93;:::i;:::-;12998:2;12993:3;12989:12;12982:19;;12641:366;;;:::o;13013:::-;13155:3;13176:67;13240:2;13235:3;13176:67;:::i;:::-;13169:74;;13252:93;13341:3;13252:93;:::i;:::-;13370:2;13365:3;13361:12;13354:19;;13013:366;;;:::o;13385:::-;13527:3;13548:67;13612:2;13607:3;13548:67;:::i;:::-;13541:74;;13624:93;13713:3;13624:93;:::i;:::-;13742:2;13737:3;13733:12;13726:19;;13385:366;;;:::o;13757:::-;13899:3;13920:67;13984:2;13979:3;13920:67;:::i;:::-;13913:74;;13996:93;14085:3;13996:93;:::i;:::-;14114:2;14109:3;14105:12;14098:19;;13757:366;;;:::o;14129:::-;14271:3;14292:67;14356:2;14351:3;14292:67;:::i;:::-;14285:74;;14368:93;14457:3;14368:93;:::i;:::-;14486:2;14481:3;14477:12;14470:19;;14129:366;;;:::o;14501:::-;14643:3;14664:67;14728:2;14723:3;14664:67;:::i;:::-;14657:74;;14740:93;14829:3;14740:93;:::i;:::-;14858:2;14853:3;14849:12;14842:19;;14501:366;;;:::o;14873:::-;15015:3;15036:67;15100:2;15095:3;15036:67;:::i;:::-;15029:74;;15112:93;15201:3;15112:93;:::i;:::-;15230:2;15225:3;15221:12;15214:19;;14873:366;;;:::o;15245:::-;15387:3;15408:67;15472:2;15467:3;15408:67;:::i;:::-;15401:74;;15484:93;15573:3;15484:93;:::i;:::-;15602:2;15597:3;15593:12;15586:19;;15245:366;;;:::o;15617:::-;15759:3;15780:67;15844:2;15839:3;15780:67;:::i;:::-;15773:74;;15856:93;15945:3;15856:93;:::i;:::-;15974:2;15969:3;15965:12;15958:19;;15617:366;;;:::o;15989:::-;16131:3;16152:67;16216:2;16211:3;16152:67;:::i;:::-;16145:74;;16228:93;16317:3;16228:93;:::i;:::-;16346:2;16341:3;16337:12;16330:19;;15989:366;;;:::o;16361:::-;16503:3;16524:67;16588:2;16583:3;16524:67;:::i;:::-;16517:74;;16600:93;16689:3;16600:93;:::i;:::-;16718:2;16713:3;16709:12;16702:19;;16361:366;;;:::o;16733:::-;16875:3;16896:67;16960:2;16955:3;16896:67;:::i;:::-;16889:74;;16972:93;17061:3;16972:93;:::i;:::-;17090:2;17085:3;17081:12;17074:19;;16733:366;;;:::o;17105:::-;17247:3;17268:67;17332:2;17327:3;17268:67;:::i;:::-;17261:74;;17344:93;17433:3;17344:93;:::i;:::-;17462:2;17457:3;17453:12;17446:19;;17105:366;;;:::o;17477:398::-;17636:3;17657:83;17738:1;17733:3;17657:83;:::i;:::-;17650:90;;17749:93;17838:3;17749:93;:::i;:::-;17867:1;17862:3;17858:11;17851:18;;17477:398;;;:::o;17881:366::-;18023:3;18044:67;18108:2;18103:3;18044:67;:::i;:::-;18037:74;;18120:93;18209:3;18120:93;:::i;:::-;18238:2;18233:3;18229:12;18222:19;;17881:366;;;:::o;18253:::-;18395:3;18416:67;18480:2;18475:3;18416:67;:::i;:::-;18409:74;;18492:93;18581:3;18492:93;:::i;:::-;18610:2;18605:3;18601:12;18594:19;;18253:366;;;:::o;18625:::-;18767:3;18788:67;18852:2;18847:3;18788:67;:::i;:::-;18781:74;;18864:93;18953:3;18864:93;:::i;:::-;18982:2;18977:3;18973:12;18966:19;;18625:366;;;:::o;18997:118::-;19084:24;19102:5;19084:24;:::i;:::-;19079:3;19072:37;18997:118;;:::o;19121:108::-;19198:24;19216:5;19198:24;:::i;:::-;19193:3;19186:37;19121:108;;:::o;19235:118::-;19322:24;19340:5;19322:24;:::i;:::-;19317:3;19310:37;19235:118;;:::o;19359:589::-;19584:3;19606:95;19697:3;19688:6;19606:95;:::i;:::-;19599:102;;19718:95;19809:3;19800:6;19718:95;:::i;:::-;19711:102;;19830:92;19918:3;19909:6;19830:92;:::i;:::-;19823:99;;19939:3;19932:10;;19359:589;;;;;;:::o;19954:379::-;20138:3;20160:147;20303:3;20160:147;:::i;:::-;20153:154;;20324:3;20317:10;;19954:379;;;:::o;20339:222::-;20432:4;20470:2;20459:9;20455:18;20447:26;;20483:71;20551:1;20540:9;20536:17;20527:6;20483:71;:::i;:::-;20339:222;;;;:::o;20567:640::-;20762:4;20800:3;20789:9;20785:19;20777:27;;20814:71;20882:1;20871:9;20867:17;20858:6;20814:71;:::i;:::-;20895:72;20963:2;20952:9;20948:18;20939:6;20895:72;:::i;:::-;20977;21045:2;21034:9;21030:18;21021:6;20977:72;:::i;:::-;21096:9;21090:4;21086:20;21081:2;21070:9;21066:18;21059:48;21124:76;21195:4;21186:6;21124:76;:::i;:::-;21116:84;;20567:640;;;;;;;:::o;21213:373::-;21356:4;21394:2;21383:9;21379:18;21371:26;;21443:9;21437:4;21433:20;21429:1;21418:9;21414:17;21407:47;21471:108;21574:4;21565:6;21471:108;:::i;:::-;21463:116;;21213:373;;;;:::o;21592:210::-;21679:4;21717:2;21706:9;21702:18;21694:26;;21730:65;21792:1;21781:9;21777:17;21768:6;21730:65;:::i;:::-;21592:210;;;;:::o;21808:313::-;21921:4;21959:2;21948:9;21944:18;21936:26;;22008:9;22002:4;21998:20;21994:1;21983:9;21979:17;21972:47;22036:78;22109:4;22100:6;22036:78;:::i;:::-;22028:86;;21808:313;;;;:::o;22127:419::-;22293:4;22331:2;22320:9;22316:18;22308:26;;22380:9;22374:4;22370:20;22366:1;22355:9;22351:17;22344:47;22408:131;22534:4;22408:131;:::i;:::-;22400:139;;22127:419;;;:::o;22552:::-;22718:4;22756:2;22745:9;22741:18;22733:26;;22805:9;22799:4;22795:20;22791:1;22780:9;22776:17;22769:47;22833:131;22959:4;22833:131;:::i;:::-;22825:139;;22552:419;;;:::o;22977:::-;23143:4;23181:2;23170:9;23166:18;23158:26;;23230:9;23224:4;23220:20;23216:1;23205:9;23201:17;23194:47;23258:131;23384:4;23258:131;:::i;:::-;23250:139;;22977:419;;;:::o;23402:::-;23568:4;23606:2;23595:9;23591:18;23583:26;;23655:9;23649:4;23645:20;23641:1;23630:9;23626:17;23619:47;23683:131;23809:4;23683:131;:::i;:::-;23675:139;;23402:419;;;:::o;23827:::-;23993:4;24031:2;24020:9;24016:18;24008:26;;24080:9;24074:4;24070:20;24066:1;24055:9;24051:17;24044:47;24108:131;24234:4;24108:131;:::i;:::-;24100:139;;23827:419;;;:::o;24252:::-;24418:4;24456:2;24445:9;24441:18;24433:26;;24505:9;24499:4;24495:20;24491:1;24480:9;24476:17;24469:47;24533:131;24659:4;24533:131;:::i;:::-;24525:139;;24252:419;;;:::o;24677:::-;24843:4;24881:2;24870:9;24866:18;24858:26;;24930:9;24924:4;24920:20;24916:1;24905:9;24901:17;24894:47;24958:131;25084:4;24958:131;:::i;:::-;24950:139;;24677:419;;;:::o;25102:::-;25268:4;25306:2;25295:9;25291:18;25283:26;;25355:9;25349:4;25345:20;25341:1;25330:9;25326:17;25319:47;25383:131;25509:4;25383:131;:::i;:::-;25375:139;;25102:419;;;:::o;25527:::-;25693:4;25731:2;25720:9;25716:18;25708:26;;25780:9;25774:4;25770:20;25766:1;25755:9;25751:17;25744:47;25808:131;25934:4;25808:131;:::i;:::-;25800:139;;25527:419;;;:::o;25952:::-;26118:4;26156:2;26145:9;26141:18;26133:26;;26205:9;26199:4;26195:20;26191:1;26180:9;26176:17;26169:47;26233:131;26359:4;26233:131;:::i;:::-;26225:139;;25952:419;;;:::o;26377:::-;26543:4;26581:2;26570:9;26566:18;26558:26;;26630:9;26624:4;26620:20;26616:1;26605:9;26601:17;26594:47;26658:131;26784:4;26658:131;:::i;:::-;26650:139;;26377:419;;;:::o;26802:::-;26968:4;27006:2;26995:9;26991:18;26983:26;;27055:9;27049:4;27045:20;27041:1;27030:9;27026:17;27019:47;27083:131;27209:4;27083:131;:::i;:::-;27075:139;;26802:419;;;:::o;27227:::-;27393:4;27431:2;27420:9;27416:18;27408:26;;27480:9;27474:4;27470:20;27466:1;27455:9;27451:17;27444:47;27508:131;27634:4;27508:131;:::i;:::-;27500:139;;27227:419;;;:::o;27652:::-;27818:4;27856:2;27845:9;27841:18;27833:26;;27905:9;27899:4;27895:20;27891:1;27880:9;27876:17;27869:47;27933:131;28059:4;27933:131;:::i;:::-;27925:139;;27652:419;;;:::o;28077:::-;28243:4;28281:2;28270:9;28266:18;28258:26;;28330:9;28324:4;28320:20;28316:1;28305:9;28301:17;28294:47;28358:131;28484:4;28358:131;:::i;:::-;28350:139;;28077:419;;;:::o;28502:::-;28668:4;28706:2;28695:9;28691:18;28683:26;;28755:9;28749:4;28745:20;28741:1;28730:9;28726:17;28719:47;28783:131;28909:4;28783:131;:::i;:::-;28775:139;;28502:419;;;:::o;28927:::-;29093:4;29131:2;29120:9;29116:18;29108:26;;29180:9;29174:4;29170:20;29166:1;29155:9;29151:17;29144:47;29208:131;29334:4;29208:131;:::i;:::-;29200:139;;28927:419;;;:::o;29352:::-;29518:4;29556:2;29545:9;29541:18;29533:26;;29605:9;29599:4;29595:20;29591:1;29580:9;29576:17;29569:47;29633:131;29759:4;29633:131;:::i;:::-;29625:139;;29352:419;;;:::o;29777:::-;29943:4;29981:2;29970:9;29966:18;29958:26;;30030:9;30024:4;30020:20;30016:1;30005:9;30001:17;29994:47;30058:131;30184:4;30058:131;:::i;:::-;30050:139;;29777:419;;;:::o;30202:::-;30368:4;30406:2;30395:9;30391:18;30383:26;;30455:9;30449:4;30445:20;30441:1;30430:9;30426:17;30419:47;30483:131;30609:4;30483:131;:::i;:::-;30475:139;;30202:419;;;:::o;30627:222::-;30720:4;30758:2;30747:9;30743:18;30735:26;;30771:71;30839:1;30828:9;30824:17;30815:6;30771:71;:::i;:::-;30627:222;;;;:::o;30855:::-;30948:4;30986:2;30975:9;30971:18;30963:26;;30999:71;31067:1;31056:9;31052:17;31043:6;30999:71;:::i;:::-;30855:222;;;;:::o;31083:129::-;31117:6;31144:20;;:::i;:::-;31134:30;;31173:33;31201:4;31193:6;31173:33;:::i;:::-;31083:129;;;:::o;31218:75::-;31251:6;31284:2;31278:9;31268:19;;31218:75;:::o;31299:307::-;31360:4;31450:18;31442:6;31439:30;31436:56;;;31472:18;;:::i;:::-;31436:56;31510:29;31532:6;31510:29;:::i;:::-;31502:37;;31594:4;31588;31584:15;31576:23;;31299:307;;;:::o;31612:308::-;31674:4;31764:18;31756:6;31753:30;31750:56;;;31786:18;;:::i;:::-;31750:56;31824:29;31846:6;31824:29;:::i;:::-;31816:37;;31908:4;31902;31898:15;31890:23;;31612:308;;;:::o;31926:132::-;31993:4;32016:3;32008:11;;32046:4;32041:3;32037:14;32029:22;;31926:132;;;:::o;32064:141::-;32113:4;32136:3;32128:11;;32159:3;32156:1;32149:14;32193:4;32190:1;32180:18;32172:26;;32064:141;;;:::o;32211:114::-;32278:6;32312:5;32306:12;32296:22;;32211:114;;;:::o;32331:98::-;32382:6;32416:5;32410:12;32400:22;;32331:98;;;:::o;32435:99::-;32487:6;32521:5;32515:12;32505:22;;32435:99;;;:::o;32540:113::-;32610:4;32642;32637:3;32633:14;32625:22;;32540:113;;;:::o;32659:184::-;32758:11;32792:6;32787:3;32780:19;32832:4;32827:3;32823:14;32808:29;;32659:184;;;;:::o;32849:168::-;32932:11;32966:6;32961:3;32954:19;33006:4;33001:3;32997:14;32982:29;;32849:168;;;;:::o;33023:147::-;33124:11;33161:3;33146:18;;33023:147;;;;:::o;33176:169::-;33260:11;33294:6;33289:3;33282:19;33334:4;33329:3;33325:14;33310:29;;33176:169;;;;:::o;33351:148::-;33453:11;33490:3;33475:18;;33351:148;;;;:::o;33505:305::-;33545:3;33564:20;33582:1;33564:20;:::i;:::-;33559:25;;33598:20;33616:1;33598:20;:::i;:::-;33593:25;;33752:1;33684:66;33680:74;33677:1;33674:81;33671:107;;;33758:18;;:::i;:::-;33671:107;33802:1;33799;33795:9;33788:16;;33505:305;;;;:::o;33816:185::-;33856:1;33873:20;33891:1;33873:20;:::i;:::-;33868:25;;33907:20;33925:1;33907:20;:::i;:::-;33902:25;;33946:1;33936:35;;33951:18;;:::i;:::-;33936:35;33993:1;33990;33986:9;33981:14;;33816:185;;;;:::o;34007:348::-;34047:7;34070:20;34088:1;34070:20;:::i;:::-;34065:25;;34104:20;34122:1;34104:20;:::i;:::-;34099:25;;34292:1;34224:66;34220:74;34217:1;34214:81;34209:1;34202:9;34195:17;34191:105;34188:131;;;34299:18;;:::i;:::-;34188:131;34347:1;34344;34340:9;34329:20;;34007:348;;;;:::o;34361:191::-;34401:4;34421:20;34439:1;34421:20;:::i;:::-;34416:25;;34455:20;34473:1;34455:20;:::i;:::-;34450:25;;34494:1;34491;34488:8;34485:34;;;34499:18;;:::i;:::-;34485:34;34544:1;34541;34537:9;34529:17;;34361:191;;;;:::o;34558:96::-;34595:7;34624:24;34642:5;34624:24;:::i;:::-;34613:35;;34558:96;;;:::o;34660:90::-;34694:7;34737:5;34730:13;34723:21;34712:32;;34660:90;;;:::o;34756:149::-;34792:7;34832:66;34825:5;34821:78;34810:89;;34756:149;;;:::o;34911:118::-;34948:7;34988:34;34981:5;34977:46;34966:57;;34911:118;;;:::o;35035:126::-;35072:7;35112:42;35105:5;35101:54;35090:65;;35035:126;;;:::o;35167:77::-;35204:7;35233:5;35222:16;;35167:77;;;:::o;35250:154::-;35334:6;35329:3;35324;35311:30;35396:1;35387:6;35382:3;35378:16;35371:27;35250:154;;;:::o;35410:307::-;35478:1;35488:113;35502:6;35499:1;35496:13;35488:113;;;35587:1;35582:3;35578:11;35572:18;35568:1;35563:3;35559:11;35552:39;35524:2;35521:1;35517:10;35512:15;;35488:113;;;35619:6;35616:1;35613:13;35610:101;;;35699:1;35690:6;35685:3;35681:16;35674:27;35610:101;35459:258;35410:307;;;:::o;35723:320::-;35767:6;35804:1;35798:4;35794:12;35784:22;;35851:1;35845:4;35841:12;35872:18;35862:81;;35928:4;35920:6;35916:17;35906:27;;35862:81;35990:2;35982:6;35979:14;35959:18;35956:38;35953:84;;;36009:18;;:::i;:::-;35953:84;35774:269;35723:320;;;:::o;36049:281::-;36132:27;36154:4;36132:27;:::i;:::-;36124:6;36120:40;36262:6;36250:10;36247:22;36226:18;36214:10;36211:34;36208:62;36205:88;;;36273:18;;:::i;:::-;36205:88;36313:10;36309:2;36302:22;36092:238;36049:281;;:::o;36336:233::-;36375:3;36398:24;36416:5;36398:24;:::i;:::-;36389:33;;36444:66;36437:5;36434:77;36431:103;;;36514:18;;:::i;:::-;36431:103;36561:1;36554:5;36550:13;36543:20;;36336:233;;;:::o;36575:176::-;36607:1;36624:20;36642:1;36624:20;:::i;:::-;36619:25;;36658:20;36676:1;36658:20;:::i;:::-;36653:25;;36697:1;36687:35;;36702:18;;:::i;:::-;36687:35;36743:1;36740;36736:9;36731:14;;36575:176;;;;:::o;36757:180::-;36805:77;36802:1;36795:88;36902:4;36899:1;36892:15;36926:4;36923:1;36916:15;36943:180;36991:77;36988:1;36981:88;37088:4;37085:1;37078:15;37112:4;37109:1;37102:15;37129:180;37177:77;37174:1;37167:88;37274:4;37271:1;37264:15;37298:4;37295:1;37288:15;37315:180;37363:77;37360:1;37353:88;37460:4;37457:1;37450:15;37484:4;37481:1;37474:15;37501:180;37549:77;37546:1;37539:88;37646:4;37643:1;37636:15;37670:4;37667:1;37660:15;37687:117;37796:1;37793;37786:12;37810:117;37919:1;37916;37909:12;37933:117;38042:1;38039;38032:12;38056:117;38165:1;38162;38155:12;38179:102;38220:6;38271:2;38267:7;38262:2;38255:5;38251:14;38247:28;38237:38;;38179:102;;;:::o;38287:237::-;38427:34;38423:1;38415:6;38411:14;38404:58;38496:20;38491:2;38483:6;38479:15;38472:45;38287:237;:::o;38530:225::-;38670:34;38666:1;38658:6;38654:14;38647:58;38739:8;38734:2;38726:6;38722:15;38715:33;38530:225;:::o;38761:224::-;38901:34;38897:1;38889:6;38885:14;38878:58;38970:7;38965:2;38957:6;38953:15;38946:32;38761:224;:::o;38991:178::-;39131:30;39127:1;39119:6;39115:14;39108:54;38991:178;:::o;39175:170::-;39315:22;39311:1;39303:6;39299:14;39292:46;39175:170;:::o;39351:223::-;39491:34;39487:1;39479:6;39475:14;39468:58;39560:6;39555:2;39547:6;39543:15;39536:31;39351:223;:::o;39580:175::-;39720:27;39716:1;39708:6;39704:14;39697:51;39580:175;:::o;39761:231::-;39901:34;39897:1;39889:6;39885:14;39878:58;39970:14;39965:2;39957:6;39953:15;39946:39;39761:231;:::o;39998:243::-;40138:34;40134:1;40126:6;40122:14;40115:58;40207:26;40202:2;40194:6;40190:15;40183:51;39998:243;:::o;40247:229::-;40387:34;40383:1;40375:6;40371:14;40364:58;40456:12;40451:2;40443:6;40439:15;40432:37;40247:229;:::o;40482:228::-;40622:34;40618:1;40610:6;40606:14;40599:58;40691:11;40686:2;40678:6;40674:15;40667:36;40482:228;:::o;40716:182::-;40856:34;40852:1;40844:6;40840:14;40833:58;40716:182;:::o;40904:231::-;41044:34;41040:1;41032:6;41028:14;41021:58;41113:14;41108:2;41100:6;41096:15;41089:39;40904:231;:::o;41141:182::-;41281:34;41277:1;41269:6;41265:14;41258:58;41141:182;:::o;41329:173::-;41469:25;41465:1;41457:6;41453:14;41446:49;41329:173;:::o;41508:234::-;41648:34;41644:1;41636:6;41632:14;41625:58;41717:17;41712:2;41704:6;41700:15;41693:42;41508:234;:::o;41748:220::-;41888:34;41884:1;41876:6;41872:14;41865:58;41957:3;41952:2;41944:6;41940:15;41933:28;41748:220;:::o;41974:114::-;;:::o;42094:170::-;42234:22;42230:1;42222:6;42218:14;42211:46;42094:170;:::o;42270:236::-;42410:34;42406:1;42398:6;42394:14;42387:58;42479:19;42474:2;42466:6;42462:15;42455:44;42270:236;:::o;42512:169::-;42652:21;42648:1;42640:6;42636:14;42629:45;42512:169;:::o;42687:122::-;42760:24;42778:5;42760:24;:::i;:::-;42753:5;42750:35;42740:63;;42799:1;42796;42789:12;42740:63;42687:122;:::o;42815:116::-;42885:21;42900:5;42885:21;:::i;:::-;42878:5;42875:32;42865:60;;42921:1;42918;42911:12;42865:60;42815:116;:::o;42937:120::-;43009:23;43026:5;43009:23;:::i;:::-;43002:5;42999:34;42989:62;;43047:1;43044;43037:12;42989:62;42937:120;:::o;43063:122::-;43136:24;43154:5;43136:24;:::i;:::-;43129:5;43126:35;43116:63;;43175:1;43172;43165:12;43116:63;43063:122;:::o

Swarm Source

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