ETH Price: $3,061.23 (+2.34%)
Gas: 5 Gwei

Token

Elongated Mustrat (EMX)
 

Overview

Max Total Supply

1,133 EMX

Holders

123

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
jelykim.eth
Balance
10 EMX
0xbc810a177aca168f4574ea75eedee8289bde76e0
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:
ElongatedMuskrat

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-05-03
*/

// 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/contract.sol


pragma solidity >=0.7.0 <0.9.0;



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

  Counters.Counter private supply;

  string public uriPrefix = "ipfs://QmaEmSgpRDskkP9GAv4NpU1tv64sxaMJjMUBRTd4yZ3BhN/";
  string public uriSuffix = ".json";
  string public hiddenMetadataUri;
  
  uint256 public cost = 0.042 ether;
  uint256 public maxSupply = 4862;
  uint256 public maxMintAmountPerTx = 10;
  uint256 public presaleMaxMint=10;

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

  address[] internal whiteListedAddresses;
    mapping(address =>uint256) public addressMintedBalance;

  constructor() ERC721("Elongated Mustrat", "EMX") {
    setHiddenMetadataUri("ipfs://QmRE81BQNaL3tNZuUxc9wKoV1uWFBURgHGPAbfRSfiLrm1/hidden.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 setWhiteListedUsers(address[] calldata _users) public onlyOwner{
  delete whiteListedAddresses;
  whiteListedAddresses= _users;
}

function setPresaleMaxMint(uint256 _newLimit) public onlyOwner {
  presaleMaxMint= _newLimit;
}

// function setIsPresale(bool _state) public onlyOwner {
//   isPresale= _state;
// }
function setNewCost(uint256 _newCost) internal {
    cost=_newCost;
}
  function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) {
    require(!paused, "The contract is paused!");
    // if(isPresale==true && msg.sender != owner()){
    // //   require(isWhiteListed(msg.sender),"You are not whiteListed");
    //   uint256 ownerTokenCount= addressMintedBalance[msg.sender];
    //   require(ownerTokenCount+ _mintAmount <= presaleMaxMint,"max presale mint reached");
    // }
    if(msg.sender != owner()) require(msg.value >= cost * _mintAmount, "Insufficient funds!");
if(supply.current()>=1000){
setNewCost(80000000000000000);
}
    _mintLoop(msg.sender, _mintAmount);
  }

  function isWhiteListed(address _userAddress) internal view returns(bool isListed) {
    
  for(uint256 i=0; i < whiteListedAddresses.length; i++){
  if(whiteListedAddresses[i]==_userAddress)return true;
  }
  return false;
  }
  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 withdraw() public onlyOwner {
    
 
    (bool community, ) = payable(0x2e57762F9A5eC8dE3cA226ab9bC93BDAEea1C68C).call{value: address(this).balance * 10 / 100}("");
    require(community);
   
   
    (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();
      addressMintedBalance[msg.sender]++;
      _safeMint(_receiver, supply.current());
    }
  }

  function _baseURI() internal view virtual override returns (string memory) {
    return uriPrefix;
  }
}
// ["0xAb8483F64d9C6d1EcF9b849Ae677dD3315835cb2","0x4B20993Bc481177ec7E8f571ceCaE8A9e22C02db","0x78731D3Ca6b7E34aC0F824c42a7cC18A495cabaB"]

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"presaleMaxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"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":"uint256","name":"_newLimit","type":"uint256"}],"name":"setPresaleMaxMint","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":"address[]","name":"_users","type":"address[]"}],"name":"setWhiteListedUsers","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"}]

608060405260405180606001604052806036815260200162004c1260369139600890805190602001906200003592919062000376565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600990805190602001906200008392919062000376565b50669536c708910000600b556112fe600c55600a600d55600a600e556000600f60006101000a81548160ff0219169083151502179055506000600f60016101000a81548160ff021916908315150217905550348015620000e257600080fd5b506040518060400160405280601181526020017f456c6f6e6761746564204d7573747261740000000000000000000000000000008152506040518060400160405280600381526020017f454d58000000000000000000000000000000000000000000000000000000000081525081600090805190602001906200016792919062000376565b5080600190805190602001906200018092919062000376565b505050620001a362000197620001d360201b60201c565b620001db60201b60201c565b620001cd60405180608001604052806041815260200162004c4860419139620002a160201b60201c565b6200050e565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002b1620001d360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002d76200034c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000330576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000327906200044d565b60405180910390fd5b80600a90805190602001906200034892919062000376565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003849062000480565b90600052602060002090601f016020900481019282620003a85760008555620003f4565b82601f10620003c357805160ff1916838001178555620003f4565b82800160010185558215620003f4579182015b82811115620003f3578251825591602001919060010190620003d6565b5b50905062000403919062000407565b5090565b5b808211156200042257600081600090555060010162000408565b5090565b6000620004356020836200046f565b91506200044282620004e5565b602082019050919050565b60006020820190508181036000830152620004688162000426565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200049957607f821691505b60208210811415620004b057620004af620004b6565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6146f4806200051e6000396000f3fe60806040526004361061023b5760003560e01c80636352211e1161012e578063a45ba8e7116100ab578063df4305d21161006f578063df4305d214610850578063e0a8085314610879578063e985e9c5146108a2578063efbd73f4146108df578063f2fde38b146109085761023b565b8063a45ba8e71461076b578063b071401b14610796578063b88d4fde146107bf578063c87b56dd146107e8578063d5abeb01146108255761023b565b806394354fd0116100f257806394354fd0146106a5578063946ef42a146106d057806395d89b41146106fb578063a0712d6814610726578063a22cb465146107425761023b565b80636352211e146105c057806370a08231146105fd578063715018a61461063a5780637ec4a659146106515780638da5cb5b1461067a5761023b565b80633ccfd60b116101bc578063518302271161018057806351830227146104eb5780635503a0e8146105165780635c975abb1461054157806360372ef81461056c57806362b99ad4146105955761023b565b80633ccfd60b1461041c57806342842e0e14610433578063438b63001461045c57806344a0d68a146104995780634fdd43cb146104c25761023b565b806316ba10e01161020357806316ba10e01461033957806316c38b3c1461036257806318160ddd1461038b57806318cae269146103b657806323b872dd146103f35761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063095ea7b3146102e557806313faede61461030e575b600080fd5b34801561024c57600080fd5b5061026760048036038101906102629190613314565b610931565b60405161027491906139a6565b60405180910390f35b34801561028957600080fd5b50610292610a13565b60405161029f91906139c1565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca91906133b7565b610aa5565b6040516102dc919061391d565b60405180910390f35b3480156102f157600080fd5b5061030c6004803603810190610307919061325a565b610b2a565b005b34801561031a57600080fd5b50610323610c42565b6040516103309190613c63565b60405180910390f35b34801561034557600080fd5b50610360600480360381019061035b919061336e565b610c48565b005b34801561036e57600080fd5b50610389600480360381019061038491906132e7565b610cde565b005b34801561039757600080fd5b506103a0610d77565b6040516103ad9190613c63565b60405180910390f35b3480156103c257600080fd5b506103dd60048036038101906103d891906130d7565b610d88565b6040516103ea9190613c63565b60405180910390f35b3480156103ff57600080fd5b5061041a60048036038101906104159190613144565b610da0565b005b34801561042857600080fd5b50610431610e00565b005b34801561043f57600080fd5b5061045a60048036038101906104559190613144565b610f9f565b005b34801561046857600080fd5b50610483600480360381019061047e91906130d7565b610fbf565b6040516104909190613984565b60405180910390f35b3480156104a557600080fd5b506104c060048036038101906104bb91906133b7565b6110ca565b005b3480156104ce57600080fd5b506104e960048036038101906104e4919061336e565b611150565b005b3480156104f757600080fd5b506105006111e6565b60405161050d91906139a6565b60405180910390f35b34801561052257600080fd5b5061052b6111f9565b60405161053891906139c1565b60405180910390f35b34801561054d57600080fd5b50610556611287565b60405161056391906139a6565b60405180910390f35b34801561057857600080fd5b50610593600480360381019061058e919061329a565b61129a565b005b3480156105a157600080fd5b506105aa61133a565b6040516105b791906139c1565b60405180910390f35b3480156105cc57600080fd5b506105e760048036038101906105e291906133b7565b6113c8565b6040516105f4919061391d565b60405180910390f35b34801561060957600080fd5b50610624600480360381019061061f91906130d7565b61147a565b6040516106319190613c63565b60405180910390f35b34801561064657600080fd5b5061064f611532565b005b34801561065d57600080fd5b506106786004803603810190610673919061336e565b6115ba565b005b34801561068657600080fd5b5061068f611650565b60405161069c919061391d565b60405180910390f35b3480156106b157600080fd5b506106ba61167a565b6040516106c79190613c63565b60405180910390f35b3480156106dc57600080fd5b506106e5611680565b6040516106f29190613c63565b60405180910390f35b34801561070757600080fd5b50610710611686565b60405161071d91906139c1565b60405180910390f35b610740600480360381019061073b91906133b7565b611718565b005b34801561074e57600080fd5b506107696004803603810190610764919061321a565b6118d0565b005b34801561077757600080fd5b506107806118e6565b60405161078d91906139c1565b60405180910390f35b3480156107a257600080fd5b506107bd60048036038101906107b891906133b7565b611974565b005b3480156107cb57600080fd5b506107e660048036038101906107e19190613197565b6119fa565b005b3480156107f457600080fd5b5061080f600480360381019061080a91906133b7565b611a5c565b60405161081c91906139c1565b60405180910390f35b34801561083157600080fd5b5061083a611bb5565b6040516108479190613c63565b60405180910390f35b34801561085c57600080fd5b50610877600480360381019061087291906133b7565b611bbb565b005b34801561088557600080fd5b506108a0600480360381019061089b91906132e7565b611c41565b005b3480156108ae57600080fd5b506108c960048036038101906108c49190613104565b611cda565b6040516108d691906139a6565b60405180910390f35b3480156108eb57600080fd5b50610906600480360381019061090191906133e4565b611d6e565b005b34801561091457600080fd5b5061092f600480360381019061092a91906130d7565b611ea4565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109fc57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a0c5750610a0b82611f9c565b5b9050919050565b606060008054610a2290613f6c565b80601f0160208091040260200160405190810160405280929190818152602001828054610a4e90613f6c565b8015610a9b5780601f10610a7057610100808354040283529160200191610a9b565b820191906000526020600020905b815481529060010190602001808311610a7e57829003601f168201915b5050505050905090565b6000610ab082612006565b610aef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae690613b63565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b35826113c8565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ba6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9d90613be3565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bc5612072565b73ffffffffffffffffffffffffffffffffffffffff161480610bf45750610bf381610bee612072565b611cda565b5b610c33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2a90613ae3565b60405180910390fd5b610c3d838361207a565b505050565b600b5481565b610c50612072565b73ffffffffffffffffffffffffffffffffffffffff16610c6e611650565b73ffffffffffffffffffffffffffffffffffffffff1614610cc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbb90613b83565b60405180910390fd5b8060099080519060200190610cda929190612dd4565b5050565b610ce6612072565b73ffffffffffffffffffffffffffffffffffffffff16610d04611650565b73ffffffffffffffffffffffffffffffffffffffff1614610d5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5190613b83565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b6000610d836007612133565b905090565b60116020528060005260406000206000915090505481565b610db1610dab612072565b82612141565b610df0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de790613c23565b60405180910390fd5b610dfb83838361221f565b505050565b610e08612072565b73ffffffffffffffffffffffffffffffffffffffff16610e26611650565b73ffffffffffffffffffffffffffffffffffffffff1614610e7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7390613b83565b60405180910390fd5b6000732e57762f9a5ec8de3ca226ab9bc93bdaeea1c68c73ffffffffffffffffffffffffffffffffffffffff166064600a47610eb89190613e28565b610ec29190613df7565b604051610ece90613908565b60006040518083038185875af1925050503d8060008114610f0b576040519150601f19603f3d011682016040523d82523d6000602084013e610f10565b606091505b5050905080610f1e57600080fd5b6000610f28611650565b73ffffffffffffffffffffffffffffffffffffffff1647604051610f4b90613908565b60006040518083038185875af1925050503d8060008114610f88576040519150601f19603f3d011682016040523d82523d6000602084013e610f8d565b606091505b5050905080610f9b57600080fd5b5050565b610fba838383604051806020016040528060008152506119fa565b505050565b60606000610fcc8361147a565b905060008167ffffffffffffffff811115610fea57610fe9614105565b5b6040519080825280602002602001820160405280156110185781602001602082028036833780820191505090505b50905060006001905060005b83811080156110355750600c548211155b156110be576000611045836113c8565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156110aa578284838151811061108f5761108e6140d6565b5b60200260200101818152505081806110a690613fcf565b9250505b82806110b590613fcf565b93505050611024565b82945050505050919050565b6110d2612072565b73ffffffffffffffffffffffffffffffffffffffff166110f0611650565b73ffffffffffffffffffffffffffffffffffffffff1614611146576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113d90613b83565b60405180910390fd5b80600b8190555050565b611158612072565b73ffffffffffffffffffffffffffffffffffffffff16611176611650565b73ffffffffffffffffffffffffffffffffffffffff16146111cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c390613b83565b60405180910390fd5b80600a90805190602001906111e2929190612dd4565b5050565b600f60019054906101000a900460ff1681565b6009805461120690613f6c565b80601f016020809104026020016040519081016040528092919081815260200182805461123290613f6c565b801561127f5780601f106112545761010080835404028352916020019161127f565b820191906000526020600020905b81548152906001019060200180831161126257829003601f168201915b505050505081565b600f60009054906101000a900460ff1681565b6112a2612072565b73ffffffffffffffffffffffffffffffffffffffff166112c0611650565b73ffffffffffffffffffffffffffffffffffffffff1614611316576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130d90613b83565b60405180910390fd5b601060006113249190612e5a565b818160109190611335929190612e7b565b505050565b6008805461134790613f6c565b80601f016020809104026020016040519081016040528092919081815260200182805461137390613f6c565b80156113c05780601f10611395576101008083540402835291602001916113c0565b820191906000526020600020905b8154815290600101906020018083116113a357829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611471576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146890613b23565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e290613b03565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61153a612072565b73ffffffffffffffffffffffffffffffffffffffff16611558611650565b73ffffffffffffffffffffffffffffffffffffffff16146115ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a590613b83565b60405180910390fd5b6115b86000612486565b565b6115c2612072565b73ffffffffffffffffffffffffffffffffffffffff166115e0611650565b73ffffffffffffffffffffffffffffffffffffffff1614611636576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162d90613b83565b60405180910390fd5b806008908051906020019061164c929190612dd4565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d5481565b600e5481565b60606001805461169590613f6c565b80601f01602080910402602001604051908101604052809291908181526020018280546116c190613f6c565b801561170e5780601f106116e35761010080835404028352916020019161170e565b820191906000526020600020905b8154815290600101906020018083116116f157829003601f168201915b5050505050905090565b8060008111801561172b5750600d548111155b61176a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176190613a63565b60405180910390fd5b600c54816117786007612133565b6117829190613da1565b11156117c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ba90613c03565b60405180910390fd5b600f60009054906101000a900460ff1615611813576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180a90613ba3565b60405180910390fd5b61181b611650565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461189e5781600b5461185b9190613e28565b34101561189d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189490613c43565b60405180910390fd5b5b6103e86118ab6007612133565b106118c2576118c167011c37937e08000061254c565b5b6118cc3383612556565b5050565b6118e26118db612072565b83836125eb565b5050565b600a80546118f390613f6c565b80601f016020809104026020016040519081016040528092919081815260200182805461191f90613f6c565b801561196c5780601f106119415761010080835404028352916020019161196c565b820191906000526020600020905b81548152906001019060200180831161194f57829003601f168201915b505050505081565b61197c612072565b73ffffffffffffffffffffffffffffffffffffffff1661199a611650565b73ffffffffffffffffffffffffffffffffffffffff16146119f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e790613b83565b60405180910390fd5b80600d8190555050565b611a0b611a05612072565b83612141565b611a4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4190613c23565b60405180910390fd5b611a5684848484612758565b50505050565b6060611a6782612006565b611aa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9d90613bc3565b60405180910390fd5b60001515600f60019054906101000a900460ff1615151415611b5457600a8054611acf90613f6c565b80601f0160208091040260200160405190810160405280929190818152602001828054611afb90613f6c565b8015611b485780601f10611b1d57610100808354040283529160200191611b48565b820191906000526020600020905b815481529060010190602001808311611b2b57829003601f168201915b50505050509050611bb0565b6000611b5e6127b4565b90506000815111611b7e5760405180602001604052806000815250611bac565b80611b8884612846565b6009604051602001611b9c939291906138d7565b6040516020818303038152906040525b9150505b919050565b600c5481565b611bc3612072565b73ffffffffffffffffffffffffffffffffffffffff16611be1611650565b73ffffffffffffffffffffffffffffffffffffffff1614611c37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2e90613b83565b60405180910390fd5b80600e8190555050565b611c49612072565b73ffffffffffffffffffffffffffffffffffffffff16611c67611650565b73ffffffffffffffffffffffffffffffffffffffff1614611cbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb490613b83565b60405180910390fd5b80600f60016101000a81548160ff02191690831515021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b81600081118015611d815750600d548111155b611dc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db790613a63565b60405180910390fd5b600c5481611dce6007612133565b611dd89190613da1565b1115611e19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1090613c03565b60405180910390fd5b611e21612072565b73ffffffffffffffffffffffffffffffffffffffff16611e3f611650565b73ffffffffffffffffffffffffffffffffffffffff1614611e95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8c90613b83565b60405180910390fd5b611e9f8284612556565b505050565b611eac612072565b73ffffffffffffffffffffffffffffffffffffffff16611eca611650565b73ffffffffffffffffffffffffffffffffffffffff1614611f20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1790613b83565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8790613a03565b60405180910390fd5b611f9981612486565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166120ed836113c8565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b600061214c82612006565b61218b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218290613ac3565b60405180910390fd5b6000612196836113c8565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061220557508373ffffffffffffffffffffffffffffffffffffffff166121ed84610aa5565b73ffffffffffffffffffffffffffffffffffffffff16145b8061221657506122158185611cda565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661223f826113c8565b73ffffffffffffffffffffffffffffffffffffffff1614612295576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228c90613a23565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612305576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122fc90613a83565b60405180910390fd5b6123108383836129a7565b61231b60008261207a565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461236b9190613e82565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123c29190613da1565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124818383836129ac565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80600b8190555050565b60005b818110156125e65761256b60076129b1565b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906125bb90613fcf565b91905055506125d3836125ce6007612133565b6129c7565b80806125de90613fcf565b915050612559565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561265a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265190613aa3565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161274b91906139a6565b60405180910390a3505050565b61276384848461221f565b61276f848484846129e5565b6127ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a5906139e3565b60405180910390fd5b50505050565b6060600880546127c390613f6c565b80601f01602080910402602001604051908101604052809291908181526020018280546127ef90613f6c565b801561283c5780601f106128115761010080835404028352916020019161283c565b820191906000526020600020905b81548152906001019060200180831161281f57829003601f168201915b5050505050905090565b6060600082141561288e576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506129a2565b600082905060005b600082146128c05780806128a990613fcf565b915050600a826128b99190613df7565b9150612896565b60008167ffffffffffffffff8111156128dc576128db614105565b5b6040519080825280601f01601f19166020018201604052801561290e5781602001600182028036833780820191505090505b5090505b6000851461299b576001826129279190613e82565b9150600a856129369190614018565b60306129429190613da1565b60f81b818381518110612958576129576140d6565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129949190613df7565b9450612912565b8093505050505b919050565b505050565b505050565b6001816000016000828254019250508190555050565b6129e1828260405180602001604052806000815250612b7c565b5050565b6000612a068473ffffffffffffffffffffffffffffffffffffffff16612bd7565b15612b6f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a2f612072565b8786866040518563ffffffff1660e01b8152600401612a519493929190613938565b602060405180830381600087803b158015612a6b57600080fd5b505af1925050508015612a9c57506040513d601f19601f82011682018060405250810190612a999190613341565b60015b612b1f573d8060008114612acc576040519150601f19603f3d011682016040523d82523d6000602084013e612ad1565b606091505b50600081511415612b17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b0e906139e3565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612b74565b600190505b949350505050565b612b868383612bfa565b612b9360008484846129e5565b612bd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bc9906139e3565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c6190613b43565b60405180910390fd5b612c7381612006565b15612cb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612caa90613a43565b60405180910390fd5b612cbf600083836129a7565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d0f9190613da1565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612dd0600083836129ac565b5050565b828054612de090613f6c565b90600052602060002090601f016020900481019282612e025760008555612e49565b82601f10612e1b57805160ff1916838001178555612e49565b82800160010185558215612e49579182015b82811115612e48578251825591602001919060010190612e2d565b5b509050612e569190612f1b565b5090565b5080546000825590600052602060002090810190612e789190612f1b565b50565b828054828255906000526020600020908101928215612f0a579160200282015b82811115612f0957823573ffffffffffffffffffffffffffffffffffffffff168260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555091602001919060010190612e9b565b5b509050612f179190612f1b565b5090565b5b80821115612f34576000816000905550600101612f1c565b5090565b6000612f4b612f4684613ca3565b613c7e565b905082815260208101848484011115612f6757612f66614143565b5b612f72848285613f2a565b509392505050565b6000612f8d612f8884613cd4565b613c7e565b905082815260208101848484011115612fa957612fa8614143565b5b612fb4848285613f2a565b509392505050565b600081359050612fcb81614662565b92915050565b60008083601f840112612fe757612fe6614139565b5b8235905067ffffffffffffffff81111561300457613003614134565b5b6020830191508360208202830111156130205761301f61413e565b5b9250929050565b60008135905061303681614679565b92915050565b60008135905061304b81614690565b92915050565b60008151905061306081614690565b92915050565b600082601f83011261307b5761307a614139565b5b813561308b848260208601612f38565b91505092915050565b600082601f8301126130a9576130a8614139565b5b81356130b9848260208601612f7a565b91505092915050565b6000813590506130d1816146a7565b92915050565b6000602082840312156130ed576130ec61414d565b5b60006130fb84828501612fbc565b91505092915050565b6000806040838503121561311b5761311a61414d565b5b600061312985828601612fbc565b925050602061313a85828601612fbc565b9150509250929050565b60008060006060848603121561315d5761315c61414d565b5b600061316b86828701612fbc565b935050602061317c86828701612fbc565b925050604061318d868287016130c2565b9150509250925092565b600080600080608085870312156131b1576131b061414d565b5b60006131bf87828801612fbc565b94505060206131d087828801612fbc565b93505060406131e1878288016130c2565b925050606085013567ffffffffffffffff81111561320257613201614148565b5b61320e87828801613066565b91505092959194509250565b600080604083850312156132315761323061414d565b5b600061323f85828601612fbc565b925050602061325085828601613027565b9150509250929050565b600080604083850312156132715761327061414d565b5b600061327f85828601612fbc565b9250506020613290858286016130c2565b9150509250929050565b600080602083850312156132b1576132b061414d565b5b600083013567ffffffffffffffff8111156132cf576132ce614148565b5b6132db85828601612fd1565b92509250509250929050565b6000602082840312156132fd576132fc61414d565b5b600061330b84828501613027565b91505092915050565b60006020828403121561332a5761332961414d565b5b60006133388482850161303c565b91505092915050565b6000602082840312156133575761335661414d565b5b600061336584828501613051565b91505092915050565b6000602082840312156133845761338361414d565b5b600082013567ffffffffffffffff8111156133a2576133a1614148565b5b6133ae84828501613094565b91505092915050565b6000602082840312156133cd576133cc61414d565b5b60006133db848285016130c2565b91505092915050565b600080604083850312156133fb576133fa61414d565b5b6000613409858286016130c2565b925050602061341a85828601612fbc565b9150509250929050565b600061343083836138b9565b60208301905092915050565b61344581613eb6565b82525050565b600061345682613d2a565b6134608185613d58565b935061346b83613d05565b8060005b8381101561349c5781516134838882613424565b975061348e83613d4b565b92505060018101905061346f565b5085935050505092915050565b6134b281613ec8565b82525050565b60006134c382613d35565b6134cd8185613d69565b93506134dd818560208601613f39565b6134e681614152565b840191505092915050565b60006134fc82613d40565b6135068185613d85565b9350613516818560208601613f39565b61351f81614152565b840191505092915050565b600061353582613d40565b61353f8185613d96565b935061354f818560208601613f39565b80840191505092915050565b6000815461356881613f6c565b6135728186613d96565b9450600182166000811461358d576001811461359e576135d1565b60ff198316865281860193506135d1565b6135a785613d15565b60005b838110156135c9578154818901526001820191506020810190506135aa565b838801955050505b50505092915050565b60006135e7603283613d85565b91506135f282614163565b604082019050919050565b600061360a602683613d85565b9150613615826141b2565b604082019050919050565b600061362d602583613d85565b915061363882614201565b604082019050919050565b6000613650601c83613d85565b915061365b82614250565b602082019050919050565b6000613673601483613d85565b915061367e82614279565b602082019050919050565b6000613696602483613d85565b91506136a1826142a2565b604082019050919050565b60006136b9601983613d85565b91506136c4826142f1565b602082019050919050565b60006136dc602c83613d85565b91506136e78261431a565b604082019050919050565b60006136ff603883613d85565b915061370a82614369565b604082019050919050565b6000613722602a83613d85565b915061372d826143b8565b604082019050919050565b6000613745602983613d85565b915061375082614407565b604082019050919050565b6000613768602083613d85565b915061377382614456565b602082019050919050565b600061378b602c83613d85565b91506137968261447f565b604082019050919050565b60006137ae602083613d85565b91506137b9826144ce565b602082019050919050565b60006137d1601783613d85565b91506137dc826144f7565b602082019050919050565b60006137f4602f83613d85565b91506137ff82614520565b604082019050919050565b6000613817602183613d85565b91506138228261456f565b604082019050919050565b600061383a600083613d7a565b9150613845826145be565b600082019050919050565b600061385d601483613d85565b9150613868826145c1565b602082019050919050565b6000613880603183613d85565b915061388b826145ea565b604082019050919050565b60006138a3601383613d85565b91506138ae82614639565b602082019050919050565b6138c281613f20565b82525050565b6138d181613f20565b82525050565b60006138e3828661352a565b91506138ef828561352a565b91506138fb828461355b565b9150819050949350505050565b60006139138261382d565b9150819050919050565b6000602082019050613932600083018461343c565b92915050565b600060808201905061394d600083018761343c565b61395a602083018661343c565b61396760408301856138c8565b818103606083015261397981846134b8565b905095945050505050565b6000602082019050818103600083015261399e818461344b565b905092915050565b60006020820190506139bb60008301846134a9565b92915050565b600060208201905081810360008301526139db81846134f1565b905092915050565b600060208201905081810360008301526139fc816135da565b9050919050565b60006020820190508181036000830152613a1c816135fd565b9050919050565b60006020820190508181036000830152613a3c81613620565b9050919050565b60006020820190508181036000830152613a5c81613643565b9050919050565b60006020820190508181036000830152613a7c81613666565b9050919050565b60006020820190508181036000830152613a9c81613689565b9050919050565b60006020820190508181036000830152613abc816136ac565b9050919050565b60006020820190508181036000830152613adc816136cf565b9050919050565b60006020820190508181036000830152613afc816136f2565b9050919050565b60006020820190508181036000830152613b1c81613715565b9050919050565b60006020820190508181036000830152613b3c81613738565b9050919050565b60006020820190508181036000830152613b5c8161375b565b9050919050565b60006020820190508181036000830152613b7c8161377e565b9050919050565b60006020820190508181036000830152613b9c816137a1565b9050919050565b60006020820190508181036000830152613bbc816137c4565b9050919050565b60006020820190508181036000830152613bdc816137e7565b9050919050565b60006020820190508181036000830152613bfc8161380a565b9050919050565b60006020820190508181036000830152613c1c81613850565b9050919050565b60006020820190508181036000830152613c3c81613873565b9050919050565b60006020820190508181036000830152613c5c81613896565b9050919050565b6000602082019050613c7860008301846138c8565b92915050565b6000613c88613c99565b9050613c948282613f9e565b919050565b6000604051905090565b600067ffffffffffffffff821115613cbe57613cbd614105565b5b613cc782614152565b9050602081019050919050565b600067ffffffffffffffff821115613cef57613cee614105565b5b613cf882614152565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613dac82613f20565b9150613db783613f20565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613dec57613deb614049565b5b828201905092915050565b6000613e0282613f20565b9150613e0d83613f20565b925082613e1d57613e1c614078565b5b828204905092915050565b6000613e3382613f20565b9150613e3e83613f20565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613e7757613e76614049565b5b828202905092915050565b6000613e8d82613f20565b9150613e9883613f20565b925082821015613eab57613eaa614049565b5b828203905092915050565b6000613ec182613f00565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613f57578082015181840152602081019050613f3c565b83811115613f66576000848401525b50505050565b60006002820490506001821680613f8457607f821691505b60208210811415613f9857613f976140a7565b5b50919050565b613fa782614152565b810181811067ffffffffffffffff82111715613fc657613fc5614105565b5b80604052505050565b6000613fda82613f20565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561400d5761400c614049565b5b600182019050919050565b600061402382613f20565b915061402e83613f20565b92508261403e5761403d614078565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b61466b81613eb6565b811461467657600080fd5b50565b61468281613ec8565b811461468d57600080fd5b50565b61469981613ed4565b81146146a457600080fd5b50565b6146b081613f20565b81146146bb57600080fd5b5056fea26469706673582212208f79244be272d2ebb88c1f5b0753537c8a9671974793c12fa1b06e7bd3623e9464736f6c63430008070033697066733a2f2f516d61456d5367705244736b6b5039474176344e705531747636347378614d4a6a4d554252546434795a3342684e2f697066733a2f2f516d5245383142514e614c33744e5a7555786339774b6f563175574642555267484750416266525366694c726d312f68696464656e2e6a736f6e

Deployed Bytecode

0x60806040526004361061023b5760003560e01c80636352211e1161012e578063a45ba8e7116100ab578063df4305d21161006f578063df4305d214610850578063e0a8085314610879578063e985e9c5146108a2578063efbd73f4146108df578063f2fde38b146109085761023b565b8063a45ba8e71461076b578063b071401b14610796578063b88d4fde146107bf578063c87b56dd146107e8578063d5abeb01146108255761023b565b806394354fd0116100f257806394354fd0146106a5578063946ef42a146106d057806395d89b41146106fb578063a0712d6814610726578063a22cb465146107425761023b565b80636352211e146105c057806370a08231146105fd578063715018a61461063a5780637ec4a659146106515780638da5cb5b1461067a5761023b565b80633ccfd60b116101bc578063518302271161018057806351830227146104eb5780635503a0e8146105165780635c975abb1461054157806360372ef81461056c57806362b99ad4146105955761023b565b80633ccfd60b1461041c57806342842e0e14610433578063438b63001461045c57806344a0d68a146104995780634fdd43cb146104c25761023b565b806316ba10e01161020357806316ba10e01461033957806316c38b3c1461036257806318160ddd1461038b57806318cae269146103b657806323b872dd146103f35761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063095ea7b3146102e557806313faede61461030e575b600080fd5b34801561024c57600080fd5b5061026760048036038101906102629190613314565b610931565b60405161027491906139a6565b60405180910390f35b34801561028957600080fd5b50610292610a13565b60405161029f91906139c1565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca91906133b7565b610aa5565b6040516102dc919061391d565b60405180910390f35b3480156102f157600080fd5b5061030c6004803603810190610307919061325a565b610b2a565b005b34801561031a57600080fd5b50610323610c42565b6040516103309190613c63565b60405180910390f35b34801561034557600080fd5b50610360600480360381019061035b919061336e565b610c48565b005b34801561036e57600080fd5b50610389600480360381019061038491906132e7565b610cde565b005b34801561039757600080fd5b506103a0610d77565b6040516103ad9190613c63565b60405180910390f35b3480156103c257600080fd5b506103dd60048036038101906103d891906130d7565b610d88565b6040516103ea9190613c63565b60405180910390f35b3480156103ff57600080fd5b5061041a60048036038101906104159190613144565b610da0565b005b34801561042857600080fd5b50610431610e00565b005b34801561043f57600080fd5b5061045a60048036038101906104559190613144565b610f9f565b005b34801561046857600080fd5b50610483600480360381019061047e91906130d7565b610fbf565b6040516104909190613984565b60405180910390f35b3480156104a557600080fd5b506104c060048036038101906104bb91906133b7565b6110ca565b005b3480156104ce57600080fd5b506104e960048036038101906104e4919061336e565b611150565b005b3480156104f757600080fd5b506105006111e6565b60405161050d91906139a6565b60405180910390f35b34801561052257600080fd5b5061052b6111f9565b60405161053891906139c1565b60405180910390f35b34801561054d57600080fd5b50610556611287565b60405161056391906139a6565b60405180910390f35b34801561057857600080fd5b50610593600480360381019061058e919061329a565b61129a565b005b3480156105a157600080fd5b506105aa61133a565b6040516105b791906139c1565b60405180910390f35b3480156105cc57600080fd5b506105e760048036038101906105e291906133b7565b6113c8565b6040516105f4919061391d565b60405180910390f35b34801561060957600080fd5b50610624600480360381019061061f91906130d7565b61147a565b6040516106319190613c63565b60405180910390f35b34801561064657600080fd5b5061064f611532565b005b34801561065d57600080fd5b506106786004803603810190610673919061336e565b6115ba565b005b34801561068657600080fd5b5061068f611650565b60405161069c919061391d565b60405180910390f35b3480156106b157600080fd5b506106ba61167a565b6040516106c79190613c63565b60405180910390f35b3480156106dc57600080fd5b506106e5611680565b6040516106f29190613c63565b60405180910390f35b34801561070757600080fd5b50610710611686565b60405161071d91906139c1565b60405180910390f35b610740600480360381019061073b91906133b7565b611718565b005b34801561074e57600080fd5b506107696004803603810190610764919061321a565b6118d0565b005b34801561077757600080fd5b506107806118e6565b60405161078d91906139c1565b60405180910390f35b3480156107a257600080fd5b506107bd60048036038101906107b891906133b7565b611974565b005b3480156107cb57600080fd5b506107e660048036038101906107e19190613197565b6119fa565b005b3480156107f457600080fd5b5061080f600480360381019061080a91906133b7565b611a5c565b60405161081c91906139c1565b60405180910390f35b34801561083157600080fd5b5061083a611bb5565b6040516108479190613c63565b60405180910390f35b34801561085c57600080fd5b50610877600480360381019061087291906133b7565b611bbb565b005b34801561088557600080fd5b506108a0600480360381019061089b91906132e7565b611c41565b005b3480156108ae57600080fd5b506108c960048036038101906108c49190613104565b611cda565b6040516108d691906139a6565b60405180910390f35b3480156108eb57600080fd5b50610906600480360381019061090191906133e4565b611d6e565b005b34801561091457600080fd5b5061092f600480360381019061092a91906130d7565b611ea4565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109fc57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a0c5750610a0b82611f9c565b5b9050919050565b606060008054610a2290613f6c565b80601f0160208091040260200160405190810160405280929190818152602001828054610a4e90613f6c565b8015610a9b5780601f10610a7057610100808354040283529160200191610a9b565b820191906000526020600020905b815481529060010190602001808311610a7e57829003601f168201915b5050505050905090565b6000610ab082612006565b610aef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae690613b63565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b35826113c8565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ba6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9d90613be3565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bc5612072565b73ffffffffffffffffffffffffffffffffffffffff161480610bf45750610bf381610bee612072565b611cda565b5b610c33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2a90613ae3565b60405180910390fd5b610c3d838361207a565b505050565b600b5481565b610c50612072565b73ffffffffffffffffffffffffffffffffffffffff16610c6e611650565b73ffffffffffffffffffffffffffffffffffffffff1614610cc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbb90613b83565b60405180910390fd5b8060099080519060200190610cda929190612dd4565b5050565b610ce6612072565b73ffffffffffffffffffffffffffffffffffffffff16610d04611650565b73ffffffffffffffffffffffffffffffffffffffff1614610d5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5190613b83565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b6000610d836007612133565b905090565b60116020528060005260406000206000915090505481565b610db1610dab612072565b82612141565b610df0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de790613c23565b60405180910390fd5b610dfb83838361221f565b505050565b610e08612072565b73ffffffffffffffffffffffffffffffffffffffff16610e26611650565b73ffffffffffffffffffffffffffffffffffffffff1614610e7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7390613b83565b60405180910390fd5b6000732e57762f9a5ec8de3ca226ab9bc93bdaeea1c68c73ffffffffffffffffffffffffffffffffffffffff166064600a47610eb89190613e28565b610ec29190613df7565b604051610ece90613908565b60006040518083038185875af1925050503d8060008114610f0b576040519150601f19603f3d011682016040523d82523d6000602084013e610f10565b606091505b5050905080610f1e57600080fd5b6000610f28611650565b73ffffffffffffffffffffffffffffffffffffffff1647604051610f4b90613908565b60006040518083038185875af1925050503d8060008114610f88576040519150601f19603f3d011682016040523d82523d6000602084013e610f8d565b606091505b5050905080610f9b57600080fd5b5050565b610fba838383604051806020016040528060008152506119fa565b505050565b60606000610fcc8361147a565b905060008167ffffffffffffffff811115610fea57610fe9614105565b5b6040519080825280602002602001820160405280156110185781602001602082028036833780820191505090505b50905060006001905060005b83811080156110355750600c548211155b156110be576000611045836113c8565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156110aa578284838151811061108f5761108e6140d6565b5b60200260200101818152505081806110a690613fcf565b9250505b82806110b590613fcf565b93505050611024565b82945050505050919050565b6110d2612072565b73ffffffffffffffffffffffffffffffffffffffff166110f0611650565b73ffffffffffffffffffffffffffffffffffffffff1614611146576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113d90613b83565b60405180910390fd5b80600b8190555050565b611158612072565b73ffffffffffffffffffffffffffffffffffffffff16611176611650565b73ffffffffffffffffffffffffffffffffffffffff16146111cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c390613b83565b60405180910390fd5b80600a90805190602001906111e2929190612dd4565b5050565b600f60019054906101000a900460ff1681565b6009805461120690613f6c565b80601f016020809104026020016040519081016040528092919081815260200182805461123290613f6c565b801561127f5780601f106112545761010080835404028352916020019161127f565b820191906000526020600020905b81548152906001019060200180831161126257829003601f168201915b505050505081565b600f60009054906101000a900460ff1681565b6112a2612072565b73ffffffffffffffffffffffffffffffffffffffff166112c0611650565b73ffffffffffffffffffffffffffffffffffffffff1614611316576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130d90613b83565b60405180910390fd5b601060006113249190612e5a565b818160109190611335929190612e7b565b505050565b6008805461134790613f6c565b80601f016020809104026020016040519081016040528092919081815260200182805461137390613f6c565b80156113c05780601f10611395576101008083540402835291602001916113c0565b820191906000526020600020905b8154815290600101906020018083116113a357829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611471576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146890613b23565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e290613b03565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61153a612072565b73ffffffffffffffffffffffffffffffffffffffff16611558611650565b73ffffffffffffffffffffffffffffffffffffffff16146115ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a590613b83565b60405180910390fd5b6115b86000612486565b565b6115c2612072565b73ffffffffffffffffffffffffffffffffffffffff166115e0611650565b73ffffffffffffffffffffffffffffffffffffffff1614611636576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162d90613b83565b60405180910390fd5b806008908051906020019061164c929190612dd4565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d5481565b600e5481565b60606001805461169590613f6c565b80601f01602080910402602001604051908101604052809291908181526020018280546116c190613f6c565b801561170e5780601f106116e35761010080835404028352916020019161170e565b820191906000526020600020905b8154815290600101906020018083116116f157829003601f168201915b5050505050905090565b8060008111801561172b5750600d548111155b61176a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176190613a63565b60405180910390fd5b600c54816117786007612133565b6117829190613da1565b11156117c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ba90613c03565b60405180910390fd5b600f60009054906101000a900460ff1615611813576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180a90613ba3565b60405180910390fd5b61181b611650565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461189e5781600b5461185b9190613e28565b34101561189d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189490613c43565b60405180910390fd5b5b6103e86118ab6007612133565b106118c2576118c167011c37937e08000061254c565b5b6118cc3383612556565b5050565b6118e26118db612072565b83836125eb565b5050565b600a80546118f390613f6c565b80601f016020809104026020016040519081016040528092919081815260200182805461191f90613f6c565b801561196c5780601f106119415761010080835404028352916020019161196c565b820191906000526020600020905b81548152906001019060200180831161194f57829003601f168201915b505050505081565b61197c612072565b73ffffffffffffffffffffffffffffffffffffffff1661199a611650565b73ffffffffffffffffffffffffffffffffffffffff16146119f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e790613b83565b60405180910390fd5b80600d8190555050565b611a0b611a05612072565b83612141565b611a4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4190613c23565b60405180910390fd5b611a5684848484612758565b50505050565b6060611a6782612006565b611aa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9d90613bc3565b60405180910390fd5b60001515600f60019054906101000a900460ff1615151415611b5457600a8054611acf90613f6c565b80601f0160208091040260200160405190810160405280929190818152602001828054611afb90613f6c565b8015611b485780601f10611b1d57610100808354040283529160200191611b48565b820191906000526020600020905b815481529060010190602001808311611b2b57829003601f168201915b50505050509050611bb0565b6000611b5e6127b4565b90506000815111611b7e5760405180602001604052806000815250611bac565b80611b8884612846565b6009604051602001611b9c939291906138d7565b6040516020818303038152906040525b9150505b919050565b600c5481565b611bc3612072565b73ffffffffffffffffffffffffffffffffffffffff16611be1611650565b73ffffffffffffffffffffffffffffffffffffffff1614611c37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2e90613b83565b60405180910390fd5b80600e8190555050565b611c49612072565b73ffffffffffffffffffffffffffffffffffffffff16611c67611650565b73ffffffffffffffffffffffffffffffffffffffff1614611cbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb490613b83565b60405180910390fd5b80600f60016101000a81548160ff02191690831515021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b81600081118015611d815750600d548111155b611dc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db790613a63565b60405180910390fd5b600c5481611dce6007612133565b611dd89190613da1565b1115611e19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1090613c03565b60405180910390fd5b611e21612072565b73ffffffffffffffffffffffffffffffffffffffff16611e3f611650565b73ffffffffffffffffffffffffffffffffffffffff1614611e95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8c90613b83565b60405180910390fd5b611e9f8284612556565b505050565b611eac612072565b73ffffffffffffffffffffffffffffffffffffffff16611eca611650565b73ffffffffffffffffffffffffffffffffffffffff1614611f20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1790613b83565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8790613a03565b60405180910390fd5b611f9981612486565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166120ed836113c8565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b600061214c82612006565b61218b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218290613ac3565b60405180910390fd5b6000612196836113c8565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061220557508373ffffffffffffffffffffffffffffffffffffffff166121ed84610aa5565b73ffffffffffffffffffffffffffffffffffffffff16145b8061221657506122158185611cda565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661223f826113c8565b73ffffffffffffffffffffffffffffffffffffffff1614612295576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228c90613a23565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612305576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122fc90613a83565b60405180910390fd5b6123108383836129a7565b61231b60008261207a565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461236b9190613e82565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123c29190613da1565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124818383836129ac565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80600b8190555050565b60005b818110156125e65761256b60076129b1565b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906125bb90613fcf565b91905055506125d3836125ce6007612133565b6129c7565b80806125de90613fcf565b915050612559565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561265a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265190613aa3565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161274b91906139a6565b60405180910390a3505050565b61276384848461221f565b61276f848484846129e5565b6127ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a5906139e3565b60405180910390fd5b50505050565b6060600880546127c390613f6c565b80601f01602080910402602001604051908101604052809291908181526020018280546127ef90613f6c565b801561283c5780601f106128115761010080835404028352916020019161283c565b820191906000526020600020905b81548152906001019060200180831161281f57829003601f168201915b5050505050905090565b6060600082141561288e576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506129a2565b600082905060005b600082146128c05780806128a990613fcf565b915050600a826128b99190613df7565b9150612896565b60008167ffffffffffffffff8111156128dc576128db614105565b5b6040519080825280601f01601f19166020018201604052801561290e5781602001600182028036833780820191505090505b5090505b6000851461299b576001826129279190613e82565b9150600a856129369190614018565b60306129429190613da1565b60f81b818381518110612958576129576140d6565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129949190613df7565b9450612912565b8093505050505b919050565b505050565b505050565b6001816000016000828254019250508190555050565b6129e1828260405180602001604052806000815250612b7c565b5050565b6000612a068473ffffffffffffffffffffffffffffffffffffffff16612bd7565b15612b6f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a2f612072565b8786866040518563ffffffff1660e01b8152600401612a519493929190613938565b602060405180830381600087803b158015612a6b57600080fd5b505af1925050508015612a9c57506040513d601f19601f82011682018060405250810190612a999190613341565b60015b612b1f573d8060008114612acc576040519150601f19603f3d011682016040523d82523d6000602084013e612ad1565b606091505b50600081511415612b17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b0e906139e3565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612b74565b600190505b949350505050565b612b868383612bfa565b612b9360008484846129e5565b612bd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bc9906139e3565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c6190613b43565b60405180910390fd5b612c7381612006565b15612cb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612caa90613a43565b60405180910390fd5b612cbf600083836129a7565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d0f9190613da1565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612dd0600083836129ac565b5050565b828054612de090613f6c565b90600052602060002090601f016020900481019282612e025760008555612e49565b82601f10612e1b57805160ff1916838001178555612e49565b82800160010185558215612e49579182015b82811115612e48578251825591602001919060010190612e2d565b5b509050612e569190612f1b565b5090565b5080546000825590600052602060002090810190612e789190612f1b565b50565b828054828255906000526020600020908101928215612f0a579160200282015b82811115612f0957823573ffffffffffffffffffffffffffffffffffffffff168260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555091602001919060010190612e9b565b5b509050612f179190612f1b565b5090565b5b80821115612f34576000816000905550600101612f1c565b5090565b6000612f4b612f4684613ca3565b613c7e565b905082815260208101848484011115612f6757612f66614143565b5b612f72848285613f2a565b509392505050565b6000612f8d612f8884613cd4565b613c7e565b905082815260208101848484011115612fa957612fa8614143565b5b612fb4848285613f2a565b509392505050565b600081359050612fcb81614662565b92915050565b60008083601f840112612fe757612fe6614139565b5b8235905067ffffffffffffffff81111561300457613003614134565b5b6020830191508360208202830111156130205761301f61413e565b5b9250929050565b60008135905061303681614679565b92915050565b60008135905061304b81614690565b92915050565b60008151905061306081614690565b92915050565b600082601f83011261307b5761307a614139565b5b813561308b848260208601612f38565b91505092915050565b600082601f8301126130a9576130a8614139565b5b81356130b9848260208601612f7a565b91505092915050565b6000813590506130d1816146a7565b92915050565b6000602082840312156130ed576130ec61414d565b5b60006130fb84828501612fbc565b91505092915050565b6000806040838503121561311b5761311a61414d565b5b600061312985828601612fbc565b925050602061313a85828601612fbc565b9150509250929050565b60008060006060848603121561315d5761315c61414d565b5b600061316b86828701612fbc565b935050602061317c86828701612fbc565b925050604061318d868287016130c2565b9150509250925092565b600080600080608085870312156131b1576131b061414d565b5b60006131bf87828801612fbc565b94505060206131d087828801612fbc565b93505060406131e1878288016130c2565b925050606085013567ffffffffffffffff81111561320257613201614148565b5b61320e87828801613066565b91505092959194509250565b600080604083850312156132315761323061414d565b5b600061323f85828601612fbc565b925050602061325085828601613027565b9150509250929050565b600080604083850312156132715761327061414d565b5b600061327f85828601612fbc565b9250506020613290858286016130c2565b9150509250929050565b600080602083850312156132b1576132b061414d565b5b600083013567ffffffffffffffff8111156132cf576132ce614148565b5b6132db85828601612fd1565b92509250509250929050565b6000602082840312156132fd576132fc61414d565b5b600061330b84828501613027565b91505092915050565b60006020828403121561332a5761332961414d565b5b60006133388482850161303c565b91505092915050565b6000602082840312156133575761335661414d565b5b600061336584828501613051565b91505092915050565b6000602082840312156133845761338361414d565b5b600082013567ffffffffffffffff8111156133a2576133a1614148565b5b6133ae84828501613094565b91505092915050565b6000602082840312156133cd576133cc61414d565b5b60006133db848285016130c2565b91505092915050565b600080604083850312156133fb576133fa61414d565b5b6000613409858286016130c2565b925050602061341a85828601612fbc565b9150509250929050565b600061343083836138b9565b60208301905092915050565b61344581613eb6565b82525050565b600061345682613d2a565b6134608185613d58565b935061346b83613d05565b8060005b8381101561349c5781516134838882613424565b975061348e83613d4b565b92505060018101905061346f565b5085935050505092915050565b6134b281613ec8565b82525050565b60006134c382613d35565b6134cd8185613d69565b93506134dd818560208601613f39565b6134e681614152565b840191505092915050565b60006134fc82613d40565b6135068185613d85565b9350613516818560208601613f39565b61351f81614152565b840191505092915050565b600061353582613d40565b61353f8185613d96565b935061354f818560208601613f39565b80840191505092915050565b6000815461356881613f6c565b6135728186613d96565b9450600182166000811461358d576001811461359e576135d1565b60ff198316865281860193506135d1565b6135a785613d15565b60005b838110156135c9578154818901526001820191506020810190506135aa565b838801955050505b50505092915050565b60006135e7603283613d85565b91506135f282614163565b604082019050919050565b600061360a602683613d85565b9150613615826141b2565b604082019050919050565b600061362d602583613d85565b915061363882614201565b604082019050919050565b6000613650601c83613d85565b915061365b82614250565b602082019050919050565b6000613673601483613d85565b915061367e82614279565b602082019050919050565b6000613696602483613d85565b91506136a1826142a2565b604082019050919050565b60006136b9601983613d85565b91506136c4826142f1565b602082019050919050565b60006136dc602c83613d85565b91506136e78261431a565b604082019050919050565b60006136ff603883613d85565b915061370a82614369565b604082019050919050565b6000613722602a83613d85565b915061372d826143b8565b604082019050919050565b6000613745602983613d85565b915061375082614407565b604082019050919050565b6000613768602083613d85565b915061377382614456565b602082019050919050565b600061378b602c83613d85565b91506137968261447f565b604082019050919050565b60006137ae602083613d85565b91506137b9826144ce565b602082019050919050565b60006137d1601783613d85565b91506137dc826144f7565b602082019050919050565b60006137f4602f83613d85565b91506137ff82614520565b604082019050919050565b6000613817602183613d85565b91506138228261456f565b604082019050919050565b600061383a600083613d7a565b9150613845826145be565b600082019050919050565b600061385d601483613d85565b9150613868826145c1565b602082019050919050565b6000613880603183613d85565b915061388b826145ea565b604082019050919050565b60006138a3601383613d85565b91506138ae82614639565b602082019050919050565b6138c281613f20565b82525050565b6138d181613f20565b82525050565b60006138e3828661352a565b91506138ef828561352a565b91506138fb828461355b565b9150819050949350505050565b60006139138261382d565b9150819050919050565b6000602082019050613932600083018461343c565b92915050565b600060808201905061394d600083018761343c565b61395a602083018661343c565b61396760408301856138c8565b818103606083015261397981846134b8565b905095945050505050565b6000602082019050818103600083015261399e818461344b565b905092915050565b60006020820190506139bb60008301846134a9565b92915050565b600060208201905081810360008301526139db81846134f1565b905092915050565b600060208201905081810360008301526139fc816135da565b9050919050565b60006020820190508181036000830152613a1c816135fd565b9050919050565b60006020820190508181036000830152613a3c81613620565b9050919050565b60006020820190508181036000830152613a5c81613643565b9050919050565b60006020820190508181036000830152613a7c81613666565b9050919050565b60006020820190508181036000830152613a9c81613689565b9050919050565b60006020820190508181036000830152613abc816136ac565b9050919050565b60006020820190508181036000830152613adc816136cf565b9050919050565b60006020820190508181036000830152613afc816136f2565b9050919050565b60006020820190508181036000830152613b1c81613715565b9050919050565b60006020820190508181036000830152613b3c81613738565b9050919050565b60006020820190508181036000830152613b5c8161375b565b9050919050565b60006020820190508181036000830152613b7c8161377e565b9050919050565b60006020820190508181036000830152613b9c816137a1565b9050919050565b60006020820190508181036000830152613bbc816137c4565b9050919050565b60006020820190508181036000830152613bdc816137e7565b9050919050565b60006020820190508181036000830152613bfc8161380a565b9050919050565b60006020820190508181036000830152613c1c81613850565b9050919050565b60006020820190508181036000830152613c3c81613873565b9050919050565b60006020820190508181036000830152613c5c81613896565b9050919050565b6000602082019050613c7860008301846138c8565b92915050565b6000613c88613c99565b9050613c948282613f9e565b919050565b6000604051905090565b600067ffffffffffffffff821115613cbe57613cbd614105565b5b613cc782614152565b9050602081019050919050565b600067ffffffffffffffff821115613cef57613cee614105565b5b613cf882614152565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613dac82613f20565b9150613db783613f20565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613dec57613deb614049565b5b828201905092915050565b6000613e0282613f20565b9150613e0d83613f20565b925082613e1d57613e1c614078565b5b828204905092915050565b6000613e3382613f20565b9150613e3e83613f20565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613e7757613e76614049565b5b828202905092915050565b6000613e8d82613f20565b9150613e9883613f20565b925082821015613eab57613eaa614049565b5b828203905092915050565b6000613ec182613f00565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613f57578082015181840152602081019050613f3c565b83811115613f66576000848401525b50505050565b60006002820490506001821680613f8457607f821691505b60208210811415613f9857613f976140a7565b5b50919050565b613fa782614152565b810181811067ffffffffffffffff82111715613fc657613fc5614105565b5b80604052505050565b6000613fda82613f20565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561400d5761400c614049565b5b600182019050919050565b600061402382613f20565b915061402e83613f20565b92508261403e5761403d614078565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b61466b81613eb6565b811461467657600080fd5b50565b61468281613ec8565b811461468d57600080fd5b50565b61469981613ed4565b81146146a457600080fd5b50565b6146b081613f20565b81146146bb57600080fd5b5056fea26469706673582212208f79244be272d2ebb88c1f5b0753537c8a9671974793c12fa1b06e7bd3623e9464736f6c63430008070033

Deployed Bytecode Sourcemap

38765:5266:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25575:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26520:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28079:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27602:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39090:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43080:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43186:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39851:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39393:54;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28829:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43269:396;;;;;;;;;;;;;:::i;:::-;;29239:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41392:635;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42620:74;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42836:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39277:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39012:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39246:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39942:141;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38925:82;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26214:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25944:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6218:103;;;;;;;;;;;;;:::i;:::-;;42974:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5567:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39164:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39207:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26689:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40352:637;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28372:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39050:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42700:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29495:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42033:494;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39128:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40087:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42533:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28598:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41231:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6476:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25575:305;25677:4;25729:25;25714:40;;;:11;:40;;;;:105;;;;25786:33;25771:48;;;:11;:48;;;;25714:105;:158;;;;25836:36;25860:11;25836:23;:36::i;:::-;25714:158;25694:178;;25575:305;;;:::o;26520:100::-;26574:13;26607:5;26600:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26520:100;:::o;28079:221::-;28155:7;28183:16;28191:7;28183;:16::i;:::-;28175:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;28268:15;:24;28284:7;28268:24;;;;;;;;;;;;;;;;;;;;;28261:31;;28079:221;;;:::o;27602:411::-;27683:13;27699:23;27714:7;27699:14;:23::i;:::-;27683:39;;27747:5;27741:11;;:2;:11;;;;27733:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;27841:5;27825:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;27850:37;27867:5;27874:12;:10;:12::i;:::-;27850:16;:37::i;:::-;27825:62;27803:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;27984:21;27993:2;27997:7;27984:8;:21::i;:::-;27672:341;27602:411;;:::o;39090:33::-;;;;:::o;43080:100::-;5798:12;:10;:12::i;:::-;5787:23;;:7;:5;:7::i;:::-;:23;;;5779:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43164:10:::1;43152:9;:22;;;;;;;;;;;;:::i;:::-;;43080:100:::0;:::o;43186:77::-;5798:12;:10;:12::i;:::-;5787:23;;:7;:5;:7::i;:::-;:23;;;5779:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43251:6:::1;43242;;:15;;;;;;;;;;;;;;;;;;43186:77:::0;:::o;39851:89::-;39895:7;39918:16;:6;:14;:16::i;:::-;39911:23;;39851:89;:::o;39393:54::-;;;;;;;;;;;;;;;;;:::o;28829:339::-;29024:41;29043:12;:10;:12::i;:::-;29057:7;29024:18;:41::i;:::-;29016:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;29132:28;29142:4;29148:2;29152:7;29132:9;:28::i;:::-;28829:339;;;:::o;43269:396::-;5798:12;:10;:12::i;:::-;5787:23;;:7;:5;:7::i;:::-;:23;;;5779:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43323:14:::1;43351:42;43343:56;;43436:3;43431:2;43407:21;:26;;;;:::i;:::-;:32;;;;:::i;:::-;43343:101;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43322:122;;;43459:9;43451:18;;;::::0;::::1;;43487:7;43508;:5;:7::i;:::-;43500:21;;43529;43500:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43486:69;;;43570:2;43562:11;;;::::0;::::1;;43306:359;;43269:396::o:0;29239:185::-;29377:39;29394:4;29400:2;29404:7;29377:39;;;;;;;;;;;;:16;:39::i;:::-;29239:185;;;:::o;41392:635::-;41467:16;41495:23;41521:17;41531:6;41521:9;:17::i;:::-;41495:43;;41545:30;41592:15;41578:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41545:63;;41615:22;41640:1;41615:26;;41648:23;41684:309;41709:15;41691;:33;:64;;;;;41746:9;;41728:14;:27;;41691:64;41684:309;;;41766:25;41794:23;41802:14;41794:7;:23::i;:::-;41766:51;;41853:6;41832:27;;:17;:27;;;41828:131;;;41905:14;41872:13;41886:15;41872:30;;;;;;;;:::i;:::-;;;;;;;:47;;;;;41932:17;;;;;:::i;:::-;;;;41828:131;41969:16;;;;;:::i;:::-;;;;41757:236;41684:309;;;42008:13;42001:20;;;;;;41392:635;;;:::o;42620:74::-;5798:12;:10;:12::i;:::-;5787:23;;:7;:5;:7::i;:::-;:23;;;5779:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42683:5:::1;42676:4;:12;;;;42620:74:::0;:::o;42836:132::-;5798:12;:10;:12::i;:::-;5787:23;;:7;:5;:7::i;:::-;:23;;;5779:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42944:18:::1;42924:17;:38;;;;;;;;;;;;:::i;:::-;;42836:132:::0;:::o;39277:28::-;;;;;;;;;;;;;:::o;39012:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;39246:26::-;;;;;;;;;;;;;:::o;39942:141::-;5798:12;:10;:12::i;:::-;5787:23;;:7;:5;:7::i;:::-;:23;;;5779:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40026:20:::1;;40019:27;;;;:::i;:::-;40073:6;;40051:20;:28;;;;;;;:::i;:::-;;39942:141:::0;;:::o;38925:82::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;26214:239::-;26286:7;26306:13;26322:7;:16;26330:7;26322:16;;;;;;;;;;;;;;;;;;;;;26306:32;;26374:1;26357:19;;:5;:19;;;;26349:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26440:5;26433:12;;;26214:239;;;:::o;25944:208::-;26016:7;26061:1;26044:19;;:5;:19;;;;26036:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;26128:9;:16;26138:5;26128:16;;;;;;;;;;;;;;;;26121:23;;25944:208;;;:::o;6218:103::-;5798:12;:10;:12::i;:::-;5787:23;;:7;:5;:7::i;:::-;:23;;;5779:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6283:30:::1;6310:1;6283:18;:30::i;:::-;6218:103::o:0;42974:100::-;5798:12;:10;:12::i;:::-;5787:23;;:7;:5;:7::i;:::-;:23;;;5779:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43058:10:::1;43046:9;:22;;;;;;;;;;;;:::i;:::-;;42974:100:::0;:::o;5567:87::-;5613:7;5640:6;;;;;;;;;;;5633:13;;5567:87;:::o;39164:38::-;;;;:::o;39207:32::-;;;;:::o;26689:104::-;26745:13;26778:7;26771:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26689:104;:::o;40352:637::-;40417:11;39685:1;39671:11;:15;:52;;;;;39705:18;;39690:11;:33;;39671:52;39663:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;39797:9;;39782:11;39763:16;:6;:14;:16::i;:::-;:30;;;;:::i;:::-;:43;;39755:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;40446:6:::1;;;;;;;;;;;40445:7;40437:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;40806:7;:5;:7::i;:::-;40792:21;;:10;:21;;;40789:89;;40843:11;40836:4;;:18;;;;:::i;:::-;40823:9;:31;;40815:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;40789:89;40902:4;40884:16;:6;:14;:16::i;:::-;:22;40881:62;;40910:29;40921:17;40910:10;:29::i;:::-;40881:62;40949:34;40959:10;40971:11;40949:9;:34::i;:::-;40352:637:::0;;:::o;28372:155::-;28467:52;28486:12;:10;:12::i;:::-;28500:8;28510;28467:18;:52::i;:::-;28372:155;;:::o;39050:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;42700:130::-;5798:12;:10;:12::i;:::-;5787:23;;:7;:5;:7::i;:::-;:23;;;5779:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42805:19:::1;42784:18;:40;;;;42700:130:::0;:::o;29495:328::-;29670:41;29689:12;:10;:12::i;:::-;29703:7;29670:18;:41::i;:::-;29662:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;29776:39;29790:4;29796:2;29800:7;29809:5;29776:13;:39::i;:::-;29495:328;;;;:::o;42033:494::-;42132:13;42173:17;42181:8;42173:7;:17::i;:::-;42157:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;42280:5;42268:17;;:8;;;;;;;;;;;:17;;;42264:64;;;42303:17;42296:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42264:64;42336:28;42367:10;:8;:10::i;:::-;42336:41;;42422:1;42397:14;42391:28;:32;:130;;;;;;;;;;;;;;;;;42459:14;42475:19;:8;:17;:19::i;:::-;42496:9;42442:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;42391:130;42384:137;;;42033:494;;;;:::o;39128:31::-;;;;:::o;40087:97::-;5798:12;:10;:12::i;:::-;5787:23;;:7;:5;:7::i;:::-;:23;;;5779:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40171:9:::1;40155:14;:25;;;;40087:97:::0;:::o;42533:81::-;5798:12;:10;:12::i;:::-;5787:23;;:7;:5;:7::i;:::-;:23;;;5779:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42602:6:::1;42591:8;;:17;;;;;;;;;;;;;;;;;;42533:81:::0;:::o;28598:164::-;28695:4;28719:18;:25;28738:5;28719:25;;;;;;;;;;;;;;;:35;28745:8;28719:35;;;;;;;;;;;;;;;;;;;;;;;;;28712:42;;28598:164;;;;:::o;41231:155::-;41317:11;39685:1;39671:11;:15;:52;;;;;39705:18;;39690:11;:33;;39671:52;39663:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;39797:9;;39782:11;39763:16;:6;:14;:16::i;:::-;:30;;;;:::i;:::-;:43;;39755:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;5798:12:::1;:10;:12::i;:::-;5787:23;;:7;:5;:7::i;:::-;:23;;;5779:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41347:33:::2;41357:9;41368:11;41347:9;:33::i;:::-;41231:155:::0;;;:::o;6476:201::-;5798:12;:10;:12::i;:::-;5787:23;;:7;:5;:7::i;:::-;:23;;;5779:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6585:1:::1;6565:22;;:8;:22;;;;6557:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;6641:28;6660:8;6641:18;:28::i;:::-;6476:201:::0;:::o;18341:157::-;18426:4;18465:25;18450:40;;;:11;:40;;;;18443:47;;18341:157;;;:::o;31333:127::-;31398:4;31450:1;31422:30;;:7;:16;31430:7;31422:16;;;;;;;;;;;;;;;;;;;;;:30;;;;31415:37;;31333:127;;;:::o;4295:98::-;4348:7;4375:10;4368:17;;4295:98;:::o;35479:174::-;35581:2;35554:15;:24;35570:7;35554:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;35637:7;35633:2;35599:46;;35608:23;35623:7;35608:14;:23::i;:::-;35599:46;;;;;;;;;;;;35479:174;;:::o;903:114::-;968:7;995;:14;;;988:21;;903:114;;;:::o;31627:348::-;31720:4;31745:16;31753:7;31745;:16::i;:::-;31737:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31821:13;31837:23;31852:7;31837:14;:23::i;:::-;31821:39;;31890:5;31879:16;;:7;:16;;;:51;;;;31923:7;31899:31;;:20;31911:7;31899:11;:20::i;:::-;:31;;;31879:51;:87;;;;31934:32;31951:5;31958:7;31934:16;:32::i;:::-;31879:87;31871:96;;;31627:348;;;;:::o;34736:625::-;34895:4;34868:31;;:23;34883:7;34868:14;:23::i;:::-;:31;;;34860:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;34974:1;34960:16;;:2;:16;;;;34952:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;35030:39;35051:4;35057:2;35061:7;35030:20;:39::i;:::-;35134:29;35151:1;35155:7;35134:8;:29::i;:::-;35195:1;35176:9;:15;35186:4;35176:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;35224:1;35207:9;:13;35217:2;35207:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;35255:2;35236:7;:16;35244:7;35236:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;35294:7;35290:2;35275:27;;35284:4;35275:27;;;;;;;;;;;;35315:38;35335:4;35341:2;35345:7;35315:19;:38::i;:::-;34736:625;;;:::o;6837:191::-;6911:16;6930:6;;;;;;;;;;;6911:25;;6956:8;6947:6;;:17;;;;;;;;;;;;;;;;;;7011:8;6980:40;;7001:8;6980:40;;;;;;;;;;;;6900:128;6837:191;:::o;40277:71::-;40336:8;40331:4;:13;;;;40277:71;:::o;43671:247::-;43751:9;43746:167;43770:11;43766:1;:15;43746:167;;;43797:18;:6;:16;:18::i;:::-;43824:20;:32;43845:10;43824:32;;;;;;;;;;;;;;;;:34;;;;;;;;;:::i;:::-;;;;;;43867:38;43877:9;43888:16;:6;:14;:16::i;:::-;43867:9;:38::i;:::-;43783:3;;;;;:::i;:::-;;;;43746:167;;;;43671:247;;:::o;35795:315::-;35950:8;35941:17;;:5;:17;;;;35933:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;36037:8;35999:18;:25;36018:5;35999:25;;;;;;;;;;;;;;;:35;36025:8;35999:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;36083:8;36061:41;;36076:5;36061:41;;;36093:8;36061:41;;;;;;:::i;:::-;;;;;;;;35795:315;;;:::o;30705:::-;30862:28;30872:4;30878:2;30882:7;30862:9;:28::i;:::-;30909:48;30932:4;30938:2;30942:7;30951:5;30909:22;:48::i;:::-;30901:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;30705:315;;;;:::o;43924:104::-;43984:13;44013:9;44006:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43924:104;:::o;1859:723::-;1915:13;2145:1;2136:5;:10;2132:53;;;2163:10;;;;;;;;;;;;;;;;;;;;;2132:53;2195:12;2210:5;2195:20;;2226:14;2251:78;2266:1;2258:4;:9;2251:78;;2284:8;;;;;:::i;:::-;;;;2315:2;2307:10;;;;;:::i;:::-;;;2251:78;;;2339:19;2371:6;2361:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2339:39;;2389:154;2405:1;2396:5;:10;2389:154;;2433:1;2423:11;;;;;:::i;:::-;;;2500:2;2492:5;:10;;;;:::i;:::-;2479:2;:24;;;;:::i;:::-;2466:39;;2449:6;2456;2449:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;2529:2;2520:11;;;;;:::i;:::-;;;2389:154;;;2567:6;2553:21;;;;;1859:723;;;;:::o;38046:126::-;;;;:::o;38557:125::-;;;;:::o;1025:127::-;1132:1;1114:7;:14;;;:19;;;;;;;;;;;1025:127;:::o;32317:110::-;32393:26;32403:2;32407:7;32393:26;;;;;;;;;;;;:9;:26::i;:::-;32317:110;;:::o;36675:799::-;36830:4;36851:15;:2;:13;;;:15::i;:::-;36847:620;;;36903:2;36887:36;;;36924:12;:10;:12::i;:::-;36938:4;36944:7;36953:5;36887:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36883:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37146:1;37129:6;:13;:18;37125:272;;;37172:60;;;;;;;;;;:::i;:::-;;;;;;;;37125:272;37347:6;37341:13;37332:6;37328:2;37324:15;37317:38;36883:529;37020:41;;;37010:51;;;:6;:51;;;;37003:58;;;;;36847:620;37451:4;37444:11;;36675:799;;;;;;;:::o;32654:321::-;32784:18;32790:2;32794:7;32784:5;:18::i;:::-;32835:54;32866:1;32870:2;32874:7;32883:5;32835:22;:54::i;:::-;32813:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;32654:321;;;:::o;8266:326::-;8326:4;8583:1;8561:7;:19;;;:23;8554:30;;8266:326;;;:::o;33311:439::-;33405:1;33391:16;;:2;:16;;;;33383:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;33464:16;33472:7;33464;:16::i;:::-;33463:17;33455:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;33526:45;33555:1;33559:2;33563:7;33526:20;:45::i;:::-;33601:1;33584:9;:13;33594:2;33584:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;33632:2;33613:7;:16;33621:7;33613:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;33677:7;33673:2;33652:33;;33669:1;33652:33;;;;;;;;;;;;33698:44;33726:1;33730:2;33734:7;33698:19;:44::i;:::-;33311:439;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::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;1003:568::-;1076:8;1086:6;1136:3;1129:4;1121:6;1117:17;1113:27;1103:122;;1144:79;;:::i;:::-;1103:122;1257:6;1244:20;1234:30;;1287:18;1279:6;1276:30;1273:117;;;1309:79;;:::i;:::-;1273:117;1423:4;1415:6;1411:17;1399:29;;1477:3;1469:4;1461:6;1457:17;1447:8;1443:32;1440:41;1437:128;;;1484:79;;:::i;:::-;1437:128;1003:568;;;;;:::o;1577:133::-;1620:5;1658:6;1645:20;1636:29;;1674:30;1698:5;1674:30;:::i;:::-;1577:133;;;;:::o;1716:137::-;1761:5;1799:6;1786:20;1777:29;;1815:32;1841:5;1815:32;:::i;:::-;1716:137;;;;:::o;1859:141::-;1915:5;1946:6;1940:13;1931:22;;1962:32;1988:5;1962:32;:::i;:::-;1859:141;;;;:::o;2019:338::-;2074:5;2123:3;2116:4;2108:6;2104:17;2100:27;2090:122;;2131:79;;:::i;:::-;2090:122;2248:6;2235:20;2273:78;2347:3;2339:6;2332:4;2324:6;2320:17;2273:78;:::i;:::-;2264:87;;2080:277;2019:338;;;;:::o;2377:340::-;2433:5;2482:3;2475:4;2467:6;2463:17;2459:27;2449:122;;2490:79;;:::i;:::-;2449:122;2607:6;2594:20;2632:79;2707:3;2699:6;2692:4;2684:6;2680:17;2632:79;:::i;:::-;2623:88;;2439:278;2377:340;;;;:::o;2723:139::-;2769:5;2807:6;2794:20;2785:29;;2823:33;2850:5;2823:33;:::i;:::-;2723:139;;;;:::o;2868:329::-;2927:6;2976:2;2964:9;2955:7;2951:23;2947:32;2944:119;;;2982:79;;:::i;:::-;2944:119;3102:1;3127:53;3172:7;3163:6;3152:9;3148:22;3127:53;:::i;:::-;3117:63;;3073:117;2868:329;;;;:::o;3203:474::-;3271:6;3279;3328:2;3316:9;3307:7;3303:23;3299:32;3296:119;;;3334:79;;:::i;:::-;3296:119;3454:1;3479:53;3524:7;3515:6;3504:9;3500:22;3479:53;:::i;:::-;3469:63;;3425:117;3581:2;3607:53;3652:7;3643:6;3632:9;3628:22;3607:53;:::i;:::-;3597:63;;3552:118;3203:474;;;;;:::o;3683:619::-;3760:6;3768;3776;3825:2;3813:9;3804:7;3800:23;3796:32;3793:119;;;3831:79;;:::i;:::-;3793:119;3951:1;3976:53;4021:7;4012:6;4001:9;3997:22;3976:53;:::i;:::-;3966:63;;3922:117;4078:2;4104:53;4149:7;4140:6;4129:9;4125:22;4104:53;:::i;:::-;4094:63;;4049:118;4206:2;4232:53;4277:7;4268:6;4257:9;4253:22;4232:53;:::i;:::-;4222:63;;4177:118;3683:619;;;;;:::o;4308:943::-;4403:6;4411;4419;4427;4476:3;4464:9;4455:7;4451:23;4447:33;4444:120;;;4483:79;;:::i;:::-;4444:120;4603:1;4628:53;4673:7;4664:6;4653:9;4649:22;4628:53;:::i;:::-;4618:63;;4574:117;4730:2;4756:53;4801:7;4792:6;4781:9;4777:22;4756:53;:::i;:::-;4746:63;;4701:118;4858:2;4884:53;4929:7;4920:6;4909:9;4905:22;4884:53;:::i;:::-;4874:63;;4829:118;5014:2;5003:9;4999:18;4986:32;5045:18;5037:6;5034:30;5031:117;;;5067:79;;:::i;:::-;5031:117;5172:62;5226:7;5217:6;5206:9;5202:22;5172:62;:::i;:::-;5162:72;;4957:287;4308:943;;;;;;;:::o;5257:468::-;5322:6;5330;5379:2;5367:9;5358:7;5354:23;5350:32;5347:119;;;5385:79;;:::i;:::-;5347:119;5505:1;5530:53;5575:7;5566:6;5555:9;5551:22;5530:53;:::i;:::-;5520:63;;5476:117;5632:2;5658:50;5700:7;5691:6;5680:9;5676:22;5658:50;:::i;:::-;5648:60;;5603:115;5257:468;;;;;:::o;5731:474::-;5799:6;5807;5856:2;5844:9;5835:7;5831:23;5827:32;5824:119;;;5862:79;;:::i;:::-;5824:119;5982:1;6007:53;6052:7;6043:6;6032:9;6028:22;6007:53;:::i;:::-;5997:63;;5953:117;6109:2;6135:53;6180:7;6171:6;6160:9;6156:22;6135:53;:::i;:::-;6125:63;;6080:118;5731:474;;;;;:::o;6211:559::-;6297:6;6305;6354:2;6342:9;6333:7;6329:23;6325:32;6322:119;;;6360:79;;:::i;:::-;6322:119;6508:1;6497:9;6493:17;6480:31;6538:18;6530:6;6527:30;6524:117;;;6560:79;;:::i;:::-;6524:117;6673:80;6745:7;6736:6;6725:9;6721:22;6673:80;:::i;:::-;6655:98;;;;6451:312;6211:559;;;;;:::o;6776:323::-;6832:6;6881:2;6869:9;6860:7;6856:23;6852:32;6849:119;;;6887:79;;:::i;:::-;6849:119;7007:1;7032:50;7074:7;7065:6;7054:9;7050:22;7032:50;:::i;:::-;7022:60;;6978:114;6776:323;;;;:::o;7105:327::-;7163:6;7212:2;7200:9;7191:7;7187:23;7183:32;7180:119;;;7218:79;;:::i;:::-;7180:119;7338:1;7363:52;7407:7;7398:6;7387:9;7383:22;7363:52;:::i;:::-;7353:62;;7309:116;7105:327;;;;:::o;7438:349::-;7507:6;7556:2;7544:9;7535:7;7531:23;7527:32;7524:119;;;7562:79;;:::i;:::-;7524:119;7682:1;7707:63;7762:7;7753:6;7742:9;7738:22;7707:63;:::i;:::-;7697:73;;7653:127;7438:349;;;;:::o;7793:509::-;7862:6;7911:2;7899:9;7890:7;7886:23;7882:32;7879:119;;;7917:79;;:::i;:::-;7879:119;8065:1;8054:9;8050:17;8037:31;8095:18;8087:6;8084:30;8081:117;;;8117:79;;:::i;:::-;8081:117;8222:63;8277:7;8268:6;8257:9;8253:22;8222:63;:::i;:::-;8212:73;;8008:287;7793:509;;;;:::o;8308:329::-;8367:6;8416:2;8404:9;8395:7;8391:23;8387:32;8384:119;;;8422:79;;:::i;:::-;8384:119;8542:1;8567:53;8612:7;8603:6;8592:9;8588:22;8567:53;:::i;:::-;8557:63;;8513:117;8308:329;;;;:::o;8643:474::-;8711:6;8719;8768:2;8756:9;8747:7;8743:23;8739:32;8736:119;;;8774:79;;:::i;:::-;8736:119;8894:1;8919:53;8964:7;8955:6;8944:9;8940:22;8919:53;:::i;:::-;8909:63;;8865:117;9021:2;9047:53;9092:7;9083:6;9072:9;9068:22;9047:53;:::i;:::-;9037:63;;8992:118;8643:474;;;;;:::o;9123:179::-;9192:10;9213:46;9255:3;9247:6;9213:46;:::i;:::-;9291:4;9286:3;9282:14;9268:28;;9123:179;;;;:::o;9308:118::-;9395:24;9413:5;9395:24;:::i;:::-;9390:3;9383:37;9308:118;;:::o;9462:732::-;9581:3;9610:54;9658:5;9610:54;:::i;:::-;9680:86;9759:6;9754:3;9680:86;:::i;:::-;9673:93;;9790:56;9840:5;9790:56;:::i;:::-;9869:7;9900:1;9885:284;9910:6;9907:1;9904:13;9885:284;;;9986:6;9980:13;10013:63;10072:3;10057:13;10013:63;:::i;:::-;10006:70;;10099:60;10152:6;10099:60;:::i;:::-;10089:70;;9945:224;9932:1;9929;9925:9;9920:14;;9885:284;;;9889:14;10185:3;10178:10;;9586:608;;;9462:732;;;;:::o;10200:109::-;10281:21;10296:5;10281:21;:::i;:::-;10276:3;10269:34;10200:109;;:::o;10315:360::-;10401:3;10429:38;10461:5;10429:38;:::i;:::-;10483:70;10546:6;10541:3;10483:70;:::i;:::-;10476:77;;10562:52;10607:6;10602:3;10595:4;10588:5;10584:16;10562:52;:::i;:::-;10639:29;10661:6;10639:29;:::i;:::-;10634:3;10630:39;10623:46;;10405:270;10315:360;;;;:::o;10681:364::-;10769:3;10797:39;10830:5;10797:39;:::i;:::-;10852:71;10916:6;10911:3;10852:71;:::i;:::-;10845:78;;10932:52;10977:6;10972:3;10965:4;10958:5;10954:16;10932:52;:::i;:::-;11009:29;11031:6;11009:29;:::i;:::-;11004:3;11000:39;10993:46;;10773:272;10681:364;;;;:::o;11051:377::-;11157:3;11185:39;11218:5;11185:39;:::i;:::-;11240:89;11322:6;11317:3;11240:89;:::i;:::-;11233:96;;11338:52;11383:6;11378:3;11371:4;11364:5;11360:16;11338:52;:::i;:::-;11415:6;11410:3;11406:16;11399:23;;11161:267;11051:377;;;;:::o;11458:845::-;11561:3;11598:5;11592:12;11627:36;11653:9;11627:36;:::i;:::-;11679:89;11761:6;11756:3;11679:89;:::i;:::-;11672:96;;11799:1;11788:9;11784:17;11815:1;11810:137;;;;11961:1;11956:341;;;;11777:520;;11810:137;11894:4;11890:9;11879;11875:25;11870:3;11863:38;11930:6;11925:3;11921:16;11914:23;;11810:137;;11956:341;12023:38;12055:5;12023:38;:::i;:::-;12083:1;12097:154;12111:6;12108:1;12105:13;12097:154;;;12185:7;12179:14;12175:1;12170:3;12166:11;12159:35;12235:1;12226:7;12222:15;12211:26;;12133:4;12130:1;12126:12;12121:17;;12097:154;;;12280:6;12275:3;12271:16;12264:23;;11963:334;;11777:520;;11565:738;;11458:845;;;;:::o;12309:366::-;12451:3;12472:67;12536:2;12531:3;12472:67;:::i;:::-;12465:74;;12548:93;12637:3;12548:93;:::i;:::-;12666:2;12661:3;12657:12;12650:19;;12309:366;;;:::o;12681:::-;12823:3;12844:67;12908:2;12903:3;12844:67;:::i;:::-;12837:74;;12920:93;13009:3;12920:93;:::i;:::-;13038:2;13033:3;13029:12;13022:19;;12681:366;;;:::o;13053:::-;13195:3;13216:67;13280:2;13275:3;13216:67;:::i;:::-;13209:74;;13292:93;13381:3;13292:93;:::i;:::-;13410:2;13405:3;13401:12;13394:19;;13053:366;;;:::o;13425:::-;13567:3;13588:67;13652:2;13647:3;13588:67;:::i;:::-;13581:74;;13664:93;13753:3;13664:93;:::i;:::-;13782:2;13777:3;13773:12;13766:19;;13425:366;;;:::o;13797:::-;13939:3;13960:67;14024:2;14019:3;13960:67;:::i;:::-;13953:74;;14036:93;14125:3;14036:93;:::i;:::-;14154:2;14149:3;14145:12;14138:19;;13797:366;;;:::o;14169:::-;14311:3;14332:67;14396:2;14391:3;14332:67;:::i;:::-;14325:74;;14408:93;14497:3;14408:93;:::i;:::-;14526:2;14521:3;14517:12;14510:19;;14169:366;;;:::o;14541:::-;14683:3;14704:67;14768:2;14763:3;14704:67;:::i;:::-;14697:74;;14780:93;14869:3;14780:93;:::i;:::-;14898:2;14893:3;14889:12;14882:19;;14541:366;;;:::o;14913:::-;15055:3;15076:67;15140:2;15135:3;15076:67;:::i;:::-;15069:74;;15152:93;15241:3;15152:93;:::i;:::-;15270:2;15265:3;15261:12;15254:19;;14913:366;;;:::o;15285:::-;15427:3;15448:67;15512:2;15507:3;15448:67;:::i;:::-;15441:74;;15524:93;15613:3;15524:93;:::i;:::-;15642:2;15637:3;15633:12;15626:19;;15285:366;;;:::o;15657:::-;15799:3;15820:67;15884:2;15879:3;15820:67;:::i;:::-;15813:74;;15896:93;15985:3;15896:93;:::i;:::-;16014:2;16009:3;16005:12;15998:19;;15657:366;;;:::o;16029:::-;16171:3;16192:67;16256:2;16251:3;16192:67;:::i;:::-;16185:74;;16268:93;16357:3;16268:93;:::i;:::-;16386:2;16381:3;16377:12;16370:19;;16029:366;;;:::o;16401:::-;16543:3;16564:67;16628:2;16623:3;16564:67;:::i;:::-;16557:74;;16640:93;16729:3;16640:93;:::i;:::-;16758:2;16753:3;16749:12;16742:19;;16401:366;;;:::o;16773:::-;16915:3;16936:67;17000:2;16995:3;16936:67;:::i;:::-;16929:74;;17012:93;17101:3;17012:93;:::i;:::-;17130:2;17125:3;17121:12;17114:19;;16773:366;;;:::o;17145:::-;17287:3;17308:67;17372:2;17367:3;17308:67;:::i;:::-;17301:74;;17384:93;17473:3;17384:93;:::i;:::-;17502:2;17497:3;17493:12;17486:19;;17145:366;;;:::o;17517:::-;17659:3;17680:67;17744:2;17739:3;17680:67;:::i;:::-;17673:74;;17756:93;17845:3;17756:93;:::i;:::-;17874:2;17869:3;17865:12;17858:19;;17517:366;;;:::o;17889:::-;18031:3;18052:67;18116:2;18111:3;18052:67;:::i;:::-;18045:74;;18128:93;18217:3;18128:93;:::i;:::-;18246:2;18241:3;18237:12;18230:19;;17889:366;;;:::o;18261:::-;18403:3;18424:67;18488:2;18483:3;18424:67;:::i;:::-;18417:74;;18500:93;18589:3;18500:93;:::i;:::-;18618:2;18613:3;18609:12;18602:19;;18261:366;;;:::o;18633:398::-;18792:3;18813:83;18894:1;18889:3;18813:83;:::i;:::-;18806:90;;18905:93;18994:3;18905:93;:::i;:::-;19023:1;19018:3;19014:11;19007:18;;18633:398;;;:::o;19037:366::-;19179:3;19200:67;19264:2;19259:3;19200:67;:::i;:::-;19193:74;;19276:93;19365:3;19276:93;:::i;:::-;19394:2;19389:3;19385:12;19378:19;;19037:366;;;:::o;19409:::-;19551:3;19572:67;19636:2;19631:3;19572:67;:::i;:::-;19565:74;;19648:93;19737:3;19648:93;:::i;:::-;19766:2;19761:3;19757:12;19750:19;;19409:366;;;:::o;19781:::-;19923:3;19944:67;20008:2;20003:3;19944:67;:::i;:::-;19937:74;;20020:93;20109:3;20020:93;:::i;:::-;20138:2;20133:3;20129:12;20122:19;;19781:366;;;:::o;20153:108::-;20230:24;20248:5;20230:24;:::i;:::-;20225:3;20218:37;20153:108;;:::o;20267:118::-;20354:24;20372:5;20354:24;:::i;:::-;20349:3;20342:37;20267:118;;:::o;20391:589::-;20616:3;20638:95;20729:3;20720:6;20638:95;:::i;:::-;20631:102;;20750:95;20841:3;20832:6;20750:95;:::i;:::-;20743:102;;20862:92;20950:3;20941:6;20862:92;:::i;:::-;20855:99;;20971:3;20964:10;;20391:589;;;;;;:::o;20986:379::-;21170:3;21192:147;21335:3;21192:147;:::i;:::-;21185:154;;21356:3;21349:10;;20986:379;;;:::o;21371:222::-;21464:4;21502:2;21491:9;21487:18;21479:26;;21515:71;21583:1;21572:9;21568:17;21559:6;21515:71;:::i;:::-;21371:222;;;;:::o;21599:640::-;21794:4;21832:3;21821:9;21817:19;21809:27;;21846:71;21914:1;21903:9;21899:17;21890:6;21846:71;:::i;:::-;21927:72;21995:2;21984:9;21980:18;21971:6;21927:72;:::i;:::-;22009;22077:2;22066:9;22062:18;22053:6;22009:72;:::i;:::-;22128:9;22122:4;22118:20;22113:2;22102:9;22098:18;22091:48;22156:76;22227:4;22218:6;22156:76;:::i;:::-;22148:84;;21599:640;;;;;;;:::o;22245:373::-;22388:4;22426:2;22415:9;22411:18;22403:26;;22475:9;22469:4;22465:20;22461:1;22450:9;22446:17;22439:47;22503:108;22606:4;22597:6;22503:108;:::i;:::-;22495:116;;22245:373;;;;:::o;22624:210::-;22711:4;22749:2;22738:9;22734:18;22726:26;;22762:65;22824:1;22813:9;22809:17;22800:6;22762:65;:::i;:::-;22624:210;;;;:::o;22840:313::-;22953:4;22991:2;22980:9;22976:18;22968:26;;23040:9;23034:4;23030:20;23026:1;23015:9;23011:17;23004:47;23068:78;23141:4;23132:6;23068:78;:::i;:::-;23060:86;;22840:313;;;;:::o;23159:419::-;23325:4;23363:2;23352:9;23348:18;23340:26;;23412:9;23406:4;23402:20;23398:1;23387:9;23383:17;23376:47;23440:131;23566:4;23440:131;:::i;:::-;23432:139;;23159:419;;;:::o;23584:::-;23750:4;23788:2;23777:9;23773:18;23765:26;;23837:9;23831:4;23827:20;23823:1;23812:9;23808:17;23801:47;23865:131;23991:4;23865:131;:::i;:::-;23857:139;;23584:419;;;:::o;24009:::-;24175:4;24213:2;24202:9;24198:18;24190:26;;24262:9;24256:4;24252:20;24248:1;24237:9;24233:17;24226:47;24290:131;24416:4;24290:131;:::i;:::-;24282:139;;24009:419;;;:::o;24434:::-;24600:4;24638:2;24627:9;24623:18;24615:26;;24687:9;24681:4;24677:20;24673:1;24662:9;24658:17;24651:47;24715:131;24841:4;24715:131;:::i;:::-;24707:139;;24434:419;;;:::o;24859:::-;25025:4;25063:2;25052:9;25048:18;25040:26;;25112:9;25106:4;25102:20;25098:1;25087:9;25083:17;25076:47;25140:131;25266:4;25140:131;:::i;:::-;25132:139;;24859:419;;;:::o;25284:::-;25450:4;25488:2;25477:9;25473:18;25465:26;;25537:9;25531:4;25527:20;25523:1;25512:9;25508:17;25501:47;25565:131;25691:4;25565:131;:::i;:::-;25557:139;;25284:419;;;:::o;25709:::-;25875:4;25913:2;25902:9;25898:18;25890:26;;25962:9;25956:4;25952:20;25948:1;25937:9;25933:17;25926:47;25990:131;26116:4;25990:131;:::i;:::-;25982:139;;25709:419;;;:::o;26134:::-;26300:4;26338:2;26327:9;26323:18;26315:26;;26387:9;26381:4;26377:20;26373:1;26362:9;26358:17;26351:47;26415:131;26541:4;26415:131;:::i;:::-;26407:139;;26134:419;;;:::o;26559:::-;26725:4;26763:2;26752:9;26748:18;26740:26;;26812:9;26806:4;26802:20;26798:1;26787:9;26783:17;26776:47;26840:131;26966:4;26840:131;:::i;:::-;26832:139;;26559:419;;;:::o;26984:::-;27150:4;27188:2;27177:9;27173:18;27165:26;;27237:9;27231:4;27227:20;27223:1;27212:9;27208:17;27201:47;27265:131;27391:4;27265:131;:::i;:::-;27257:139;;26984:419;;;:::o;27409:::-;27575:4;27613:2;27602:9;27598:18;27590:26;;27662:9;27656:4;27652:20;27648:1;27637:9;27633:17;27626:47;27690:131;27816:4;27690:131;:::i;:::-;27682:139;;27409:419;;;:::o;27834:::-;28000:4;28038:2;28027:9;28023:18;28015:26;;28087:9;28081:4;28077:20;28073:1;28062:9;28058:17;28051:47;28115:131;28241:4;28115:131;:::i;:::-;28107:139;;27834:419;;;:::o;28259:::-;28425:4;28463:2;28452:9;28448:18;28440:26;;28512:9;28506:4;28502:20;28498:1;28487:9;28483:17;28476:47;28540:131;28666:4;28540:131;:::i;:::-;28532:139;;28259:419;;;:::o;28684:::-;28850:4;28888:2;28877:9;28873:18;28865:26;;28937:9;28931:4;28927:20;28923:1;28912:9;28908:17;28901:47;28965:131;29091:4;28965:131;:::i;:::-;28957:139;;28684:419;;;:::o;29109:::-;29275:4;29313:2;29302:9;29298:18;29290:26;;29362:9;29356:4;29352:20;29348:1;29337:9;29333:17;29326:47;29390:131;29516:4;29390:131;:::i;:::-;29382:139;;29109:419;;;:::o;29534:::-;29700:4;29738:2;29727:9;29723:18;29715:26;;29787:9;29781:4;29777:20;29773:1;29762:9;29758:17;29751:47;29815:131;29941:4;29815:131;:::i;:::-;29807:139;;29534:419;;;:::o;29959:::-;30125:4;30163:2;30152:9;30148:18;30140:26;;30212:9;30206:4;30202:20;30198:1;30187:9;30183:17;30176:47;30240:131;30366:4;30240:131;:::i;:::-;30232:139;;29959:419;;;:::o;30384:::-;30550:4;30588:2;30577:9;30573:18;30565:26;;30637:9;30631:4;30627:20;30623:1;30612:9;30608:17;30601:47;30665:131;30791:4;30665:131;:::i;:::-;30657:139;;30384:419;;;:::o;30809:::-;30975:4;31013:2;31002:9;30998:18;30990:26;;31062:9;31056:4;31052:20;31048:1;31037:9;31033:17;31026:47;31090:131;31216:4;31090:131;:::i;:::-;31082:139;;30809:419;;;:::o;31234:::-;31400:4;31438:2;31427:9;31423:18;31415:26;;31487:9;31481:4;31477:20;31473:1;31462:9;31458:17;31451:47;31515:131;31641:4;31515:131;:::i;:::-;31507:139;;31234:419;;;:::o;31659:222::-;31752:4;31790:2;31779:9;31775:18;31767:26;;31803:71;31871:1;31860:9;31856:17;31847:6;31803:71;:::i;:::-;31659:222;;;;:::o;31887:129::-;31921:6;31948:20;;:::i;:::-;31938:30;;31977:33;32005:4;31997:6;31977:33;:::i;:::-;31887:129;;;:::o;32022:75::-;32055:6;32088:2;32082:9;32072:19;;32022:75;:::o;32103:307::-;32164:4;32254:18;32246:6;32243:30;32240:56;;;32276:18;;:::i;:::-;32240:56;32314:29;32336:6;32314:29;:::i;:::-;32306:37;;32398:4;32392;32388:15;32380:23;;32103:307;;;:::o;32416:308::-;32478:4;32568:18;32560:6;32557:30;32554:56;;;32590:18;;:::i;:::-;32554:56;32628:29;32650:6;32628:29;:::i;:::-;32620:37;;32712:4;32706;32702:15;32694:23;;32416:308;;;:::o;32730:132::-;32797:4;32820:3;32812:11;;32850:4;32845:3;32841:14;32833:22;;32730:132;;;:::o;32868:141::-;32917:4;32940:3;32932:11;;32963:3;32960:1;32953:14;32997:4;32994:1;32984:18;32976:26;;32868:141;;;:::o;33015:114::-;33082:6;33116:5;33110:12;33100:22;;33015:114;;;:::o;33135:98::-;33186:6;33220:5;33214:12;33204:22;;33135:98;;;:::o;33239:99::-;33291:6;33325:5;33319:12;33309:22;;33239:99;;;:::o;33344:113::-;33414:4;33446;33441:3;33437:14;33429:22;;33344:113;;;:::o;33463:184::-;33562:11;33596:6;33591:3;33584:19;33636:4;33631:3;33627:14;33612:29;;33463:184;;;;:::o;33653:168::-;33736:11;33770:6;33765:3;33758:19;33810:4;33805:3;33801:14;33786:29;;33653:168;;;;:::o;33827:147::-;33928:11;33965:3;33950:18;;33827:147;;;;:::o;33980:169::-;34064:11;34098:6;34093:3;34086:19;34138:4;34133:3;34129:14;34114:29;;33980:169;;;;:::o;34155:148::-;34257:11;34294:3;34279:18;;34155:148;;;;:::o;34309:305::-;34349:3;34368:20;34386:1;34368:20;:::i;:::-;34363:25;;34402:20;34420:1;34402:20;:::i;:::-;34397:25;;34556:1;34488:66;34484:74;34481:1;34478:81;34475:107;;;34562:18;;:::i;:::-;34475:107;34606:1;34603;34599:9;34592:16;;34309:305;;;;:::o;34620:185::-;34660:1;34677:20;34695:1;34677:20;:::i;:::-;34672:25;;34711:20;34729:1;34711:20;:::i;:::-;34706:25;;34750:1;34740:35;;34755:18;;:::i;:::-;34740:35;34797:1;34794;34790:9;34785:14;;34620:185;;;;:::o;34811:348::-;34851:7;34874:20;34892:1;34874:20;:::i;:::-;34869:25;;34908:20;34926:1;34908:20;:::i;:::-;34903:25;;35096:1;35028:66;35024:74;35021:1;35018:81;35013:1;35006:9;34999:17;34995:105;34992:131;;;35103:18;;:::i;:::-;34992:131;35151:1;35148;35144:9;35133:20;;34811:348;;;;:::o;35165:191::-;35205:4;35225:20;35243:1;35225:20;:::i;:::-;35220:25;;35259:20;35277:1;35259:20;:::i;:::-;35254:25;;35298:1;35295;35292:8;35289:34;;;35303:18;;:::i;:::-;35289:34;35348:1;35345;35341:9;35333:17;;35165:191;;;;:::o;35362:96::-;35399:7;35428:24;35446:5;35428:24;:::i;:::-;35417:35;;35362:96;;;:::o;35464:90::-;35498:7;35541:5;35534:13;35527:21;35516:32;;35464:90;;;:::o;35560:149::-;35596:7;35636:66;35629:5;35625:78;35614:89;;35560:149;;;:::o;35715:126::-;35752:7;35792:42;35785:5;35781:54;35770:65;;35715:126;;;:::o;35847:77::-;35884:7;35913:5;35902:16;;35847:77;;;:::o;35930:154::-;36014:6;36009:3;36004;35991:30;36076:1;36067:6;36062:3;36058:16;36051:27;35930:154;;;:::o;36090:307::-;36158:1;36168:113;36182:6;36179:1;36176:13;36168:113;;;36267:1;36262:3;36258:11;36252:18;36248:1;36243:3;36239:11;36232:39;36204:2;36201:1;36197:10;36192:15;;36168:113;;;36299:6;36296:1;36293:13;36290:101;;;36379:1;36370:6;36365:3;36361:16;36354:27;36290:101;36139:258;36090:307;;;:::o;36403:320::-;36447:6;36484:1;36478:4;36474:12;36464:22;;36531:1;36525:4;36521:12;36552:18;36542:81;;36608:4;36600:6;36596:17;36586:27;;36542:81;36670:2;36662:6;36659:14;36639:18;36636:38;36633:84;;;36689:18;;:::i;:::-;36633:84;36454:269;36403:320;;;:::o;36729:281::-;36812:27;36834:4;36812:27;:::i;:::-;36804:6;36800:40;36942:6;36930:10;36927:22;36906:18;36894:10;36891:34;36888:62;36885:88;;;36953:18;;:::i;:::-;36885:88;36993:10;36989:2;36982:22;36772:238;36729:281;;:::o;37016:233::-;37055:3;37078:24;37096:5;37078:24;:::i;:::-;37069:33;;37124:66;37117:5;37114:77;37111:103;;;37194:18;;:::i;:::-;37111:103;37241:1;37234:5;37230:13;37223:20;;37016:233;;;:::o;37255:176::-;37287:1;37304:20;37322:1;37304:20;:::i;:::-;37299:25;;37338:20;37356:1;37338:20;:::i;:::-;37333:25;;37377:1;37367:35;;37382:18;;:::i;:::-;37367:35;37423:1;37420;37416:9;37411:14;;37255:176;;;;:::o;37437:180::-;37485:77;37482:1;37475:88;37582:4;37579:1;37572:15;37606:4;37603:1;37596:15;37623:180;37671:77;37668:1;37661:88;37768:4;37765:1;37758:15;37792:4;37789:1;37782:15;37809:180;37857:77;37854:1;37847:88;37954:4;37951:1;37944:15;37978:4;37975:1;37968:15;37995:180;38043:77;38040:1;38033:88;38140:4;38137:1;38130:15;38164:4;38161:1;38154:15;38181:180;38229:77;38226:1;38219:88;38326:4;38323:1;38316:15;38350:4;38347:1;38340:15;38367:117;38476:1;38473;38466:12;38490:117;38599:1;38596;38589:12;38613:117;38722:1;38719;38712:12;38736:117;38845:1;38842;38835:12;38859:117;38968:1;38965;38958:12;38982:117;39091:1;39088;39081:12;39105:102;39146:6;39197:2;39193:7;39188:2;39181:5;39177:14;39173:28;39163:38;;39105:102;;;:::o;39213:237::-;39353:34;39349:1;39341:6;39337:14;39330:58;39422:20;39417:2;39409:6;39405:15;39398:45;39213:237;:::o;39456:225::-;39596:34;39592:1;39584:6;39580:14;39573:58;39665:8;39660:2;39652:6;39648:15;39641:33;39456:225;:::o;39687:224::-;39827:34;39823:1;39815:6;39811:14;39804:58;39896:7;39891:2;39883:6;39879:15;39872:32;39687:224;:::o;39917:178::-;40057:30;40053:1;40045:6;40041:14;40034:54;39917:178;:::o;40101:170::-;40241:22;40237:1;40229:6;40225:14;40218:46;40101:170;:::o;40277:223::-;40417:34;40413:1;40405:6;40401:14;40394:58;40486:6;40481:2;40473:6;40469:15;40462:31;40277:223;:::o;40506:175::-;40646:27;40642:1;40634:6;40630:14;40623:51;40506:175;:::o;40687:231::-;40827:34;40823:1;40815:6;40811:14;40804:58;40896:14;40891:2;40883:6;40879:15;40872:39;40687:231;:::o;40924:243::-;41064:34;41060:1;41052:6;41048:14;41041:58;41133:26;41128:2;41120:6;41116:15;41109:51;40924:243;:::o;41173:229::-;41313:34;41309:1;41301:6;41297:14;41290:58;41382:12;41377:2;41369:6;41365:15;41358:37;41173:229;:::o;41408:228::-;41548:34;41544:1;41536:6;41532:14;41525:58;41617:11;41612:2;41604:6;41600:15;41593:36;41408:228;:::o;41642:182::-;41782:34;41778:1;41770:6;41766:14;41759:58;41642:182;:::o;41830:231::-;41970:34;41966:1;41958:6;41954:14;41947:58;42039:14;42034:2;42026:6;42022:15;42015:39;41830:231;:::o;42067:182::-;42207:34;42203:1;42195:6;42191:14;42184:58;42067:182;:::o;42255:173::-;42395:25;42391:1;42383:6;42379:14;42372:49;42255:173;:::o;42434:234::-;42574:34;42570:1;42562:6;42558:14;42551:58;42643:17;42638:2;42630:6;42626:15;42619:42;42434:234;:::o;42674:220::-;42814:34;42810:1;42802:6;42798:14;42791:58;42883:3;42878:2;42870:6;42866:15;42859:28;42674:220;:::o;42900:114::-;;:::o;43020:170::-;43160:22;43156:1;43148:6;43144:14;43137:46;43020:170;:::o;43196:236::-;43336:34;43332:1;43324:6;43320:14;43313:58;43405:19;43400:2;43392:6;43388:15;43381:44;43196:236;:::o;43438:169::-;43578:21;43574:1;43566:6;43562:14;43555:45;43438:169;:::o;43613:122::-;43686:24;43704:5;43686:24;:::i;:::-;43679:5;43676:35;43666:63;;43725:1;43722;43715:12;43666:63;43613:122;:::o;43741:116::-;43811:21;43826:5;43811:21;:::i;:::-;43804:5;43801:32;43791:60;;43847:1;43844;43837:12;43791:60;43741:116;:::o;43863:120::-;43935:23;43952:5;43935:23;:::i;:::-;43928:5;43925:34;43915:62;;43973:1;43970;43963:12;43915:62;43863:120;:::o;43989:122::-;44062:24;44080:5;44062:24;:::i;:::-;44055:5;44052:35;44042:63;;44101:1;44098;44091:12;44042:63;43989:122;:::o

Swarm Source

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