ETH Price: $3,103.91 (-3.27%)
Gas: 7 Gwei

Token

Lost Islands (LOST)
 

Overview

Max Total Supply

1,040 LOST

Holders

124

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
intoodeep.eth
Balance
10 LOST
0x0ff62862437c0492a6680150f6877b02b2f22515
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:
LostIslandsNFT

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-06-06
*/

// 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 (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


// OpenZeppelin Contracts (last updated v4.6.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 overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not 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 || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
    }

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

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

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

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

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

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

        _afterTokenTransfer(address(0), to, tokenId);
    }

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

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

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

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

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

        _afterTokenTransfer(owner, address(0), tokenId);
    }

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits 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/LostIslandsNFT.sol

pragma solidity >=0.7.0 <0.9.0;

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

  Counters.Counter private supply;                          // Using counters to track supply

  string public uriPrefix = "";                             // Metadata prefix including ipfs://CID/
  string public uriSuffix = ".json";                        // Metadata suffix (.json)
  string public hiddenMetadataUri;                          // URI for pre-reveal metadata
  
  uint256 public cost = 0.03 ether;                         // Price per Island
  uint256 public maxSupply = 3816;                          // Total supply of NFT's
  uint256 public maxPerTransaction = 10;                    // Max per mint transaction
  uint256 public maxInWallet = 10;                          // Max in wallet from minting

  bool public paused = true;                                // Is paused to start
  bool public revealed = false;                             // NFT's to be revealed prior to mint
  
  mapping(address => uint256) public addressMintedBalance;  // Amount of NFT's minted in wallet

  constructor() ERC721("Lost Islands", "LOST") {
    setHiddenMetadataUri("ipfs://QmR3Qn3MkJkdrb2A3n4HpKjMdmdnuRYRaRWrVjBtEcCVXT/hidden.json");
  }

  // Checks if mint is acceptable
  // Is mint smaller than 'Max Mint Per Transaction'?
  // Is the current supply + requested mint amount smaller than the total supply?
  // require nfts minted in wallet to be less than 'maxInWallet'
  modifier mintCompliance(uint256 _mintAmount) {
    require(supply.current() + _mintAmount <= maxSupply, "Max supply exceeded!");
    
    if (msg.sender != owner()) {
        require(_mintAmount > 0 && _mintAmount <= maxPerTransaction, "Invalid mint amount!");
        uint256 nftsMintedInWallet = addressMintedBalance[msg.sender];
        require(nftsMintedInWallet + _mintAmount <= maxInWallet, "Max minted to wallet");
    }
    _;
  }

  // Total supply of the Lost Islands NFT collection
  function totalSupply() public view returns (uint256) {
    return supply.current();
  }

  // Main mint function. Checks: compliance, if contract is paused, sufficient funds
  function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) {
    require(!paused, "The contract is paused!");
    require(msg.value >= cost * _mintAmount, "Insufficient funds!");
    _mintLoop(msg.sender, _mintAmount);
  }
  
  // Mint for an external address - onlyOwner
  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 _maxPerTransaction) public onlyOwner {
    maxPerTransaction = _maxPerTransaction;
  }

  function setMaxInWallet(uint _maxInWallet) public onlyOwner {
      maxInWallet = _maxInWallet;
  }

  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 ownerMint(uint256 _mintAmount) public onlyOwner {
    // Can mint while contract is paused!
    if (msg.sender == owner()) {
      _mintLoop(msg.sender, _mintAmount);
    }
  }

  function withdraw() public onlyOwner {
    (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;
  }
}

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":"maxInWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"_mintAmount","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxInWallet","type":"uint256"}],"name":"setMaxInWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerTransaction","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250600890805190602001906200002b9291906200036c565b506040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525060099080519060200190620000799291906200036c565b50666a94d74f430000600b55610ee8600c55600a600d55600a600e556001600f60006101000a81548160ff0219169083151502179055506000600f60016101000a81548160ff021916908315150217905550348015620000d857600080fd5b506040518060400160405280600c81526020017f4c6f73742049736c616e647300000000000000000000000000000000000000008152506040518060400160405280600481526020017f4c4f53540000000000000000000000000000000000000000000000000000000081525081600090805190602001906200015d9291906200036c565b508060019080519060200190620001769291906200036c565b505050620001996200018d620001c960201b60201c565b620001d160201b60201c565b620001c360405180608001604052806041815260200162004bbf604191396200029760201b60201c565b62000504565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002a7620001c960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002cd6200034260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000326576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200031d9062000443565b60405180910390fd5b80600a90805190602001906200033e9291906200036c565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200037a9062000476565b90600052602060002090601f0160209004810192826200039e5760008555620003ea565b82601f10620003b957805160ff1916838001178555620003ea565b82800160010185558215620003ea579182015b82811115620003e9578251825591602001919060010190620003cc565b5b509050620003f99190620003fd565b5090565b5b8082111562000418576000816000905550600101620003fe565b5090565b60006200042b60208362000465565b91506200043882620004db565b602082019050919050565b600060208201905081810360008301526200045e816200041c565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200048f57607f821691505b60208210811415620004a657620004a5620004ac565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6146ab80620005146000396000f3fe60806040526004361061023b5760003560e01c80636352211e1161012e578063b071401b116100ab578063e6fdfbd81161006f578063e6fdfbd814610850578063e985e9c514610879578063efbd73f4146108b6578063f19e75d4146108df578063f2fde38b146109085761023b565b8063b071401b1461076d578063b88d4fde14610796578063c87b56dd146107bf578063d5abeb01146107fc578063e0a80853146108275761023b565b806395d89b41116100f257806395d89b41146106a7578063a0712d68146106d2578063a22cb465146106ee578063a45ba8e714610717578063af47bbfe146107425761023b565b80636352211e146105c257806370a08231146105ff578063715018a61461063c5780637ec4a659146106535780638da5cb5b1461067c5761023b565b80633ccfd60b116101bc5780634fdd43cb116101805780634fdd43cb146104ed57806351830227146105165780635503a0e8146105415780635c975abb1461056c57806362b99ad4146105975761023b565b80633ccfd60b1461041c57806342842e0e14610433578063438b63001461045c57806344a0d68a146104995780634b980d67146104c25761023b565b806316ba10e01161020357806316ba10e01461033957806316c38b3c1461036257806318160ddd1461038b57806318cae269146103b657806323b872dd146103f35761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063095ea7b3146102e557806313faede61461030e575b600080fd5b34801561024c57600080fd5b5061026760048036038101906102629190613269565b610931565b604051610274919061391e565b60405180910390f35b34801561028957600080fd5b50610292610a13565b60405161029f9190613939565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca919061330c565b610aa5565b6040516102dc9190613895565b60405180910390f35b3480156102f157600080fd5b5061030c600480360381019061030791906131fc565b610b2a565b005b34801561031a57600080fd5b50610323610c42565b6040516103309190613bfb565b60405180910390f35b34801561034557600080fd5b50610360600480360381019061035b91906132c3565b610c48565b005b34801561036e57600080fd5b506103896004803603810190610384919061323c565b610cde565b005b34801561039757600080fd5b506103a0610d77565b6040516103ad9190613bfb565b60405180910390f35b3480156103c257600080fd5b506103dd60048036038101906103d89190613079565b610d88565b6040516103ea9190613bfb565b60405180910390f35b3480156103ff57600080fd5b5061041a600480360381019061041591906130e6565b610da0565b005b34801561042857600080fd5b50610431610e00565b005b34801561043f57600080fd5b5061045a600480360381019061045591906130e6565b610efc565b005b34801561046857600080fd5b50610483600480360381019061047e9190613079565b610f1c565b60405161049091906138fc565b60405180910390f35b3480156104a557600080fd5b506104c060048036038101906104bb919061330c565b611027565b005b3480156104ce57600080fd5b506104d76110ad565b6040516104e49190613bfb565b60405180910390f35b3480156104f957600080fd5b50610514600480360381019061050f91906132c3565b6110b3565b005b34801561052257600080fd5b5061052b611149565b604051610538919061391e565b60405180910390f35b34801561054d57600080fd5b5061055661115c565b6040516105639190613939565b60405180910390f35b34801561057857600080fd5b506105816111ea565b60405161058e919061391e565b60405180910390f35b3480156105a357600080fd5b506105ac6111fd565b6040516105b99190613939565b60405180910390f35b3480156105ce57600080fd5b506105e960048036038101906105e4919061330c565b61128b565b6040516105f69190613895565b60405180910390f35b34801561060b57600080fd5b5061062660048036038101906106219190613079565b61133d565b6040516106339190613bfb565b60405180910390f35b34801561064857600080fd5b506106516113f5565b005b34801561065f57600080fd5b5061067a600480360381019061067591906132c3565b61147d565b005b34801561068857600080fd5b50610691611513565b60405161069e9190613895565b60405180910390f35b3480156106b357600080fd5b506106bc61153d565b6040516106c99190613939565b60405180910390f35b6106ec60048036038101906106e7919061330c565b6115cf565b005b3480156106fa57600080fd5b50610715600480360381019061071091906131bc565b6117f8565b005b34801561072357600080fd5b5061072c61180e565b6040516107399190613939565b60405180910390f35b34801561074e57600080fd5b5061075761189c565b6040516107649190613bfb565b60405180910390f35b34801561077957600080fd5b50610794600480360381019061078f919061330c565b6118a2565b005b3480156107a257600080fd5b506107bd60048036038101906107b89190613139565b611928565b005b3480156107cb57600080fd5b506107e660048036038101906107e1919061330c565b61198a565b6040516107f39190613939565b60405180910390f35b34801561080857600080fd5b50610811611ae3565b60405161081e9190613bfb565b60405180910390f35b34801561083357600080fd5b5061084e6004803603810190610849919061323c565b611ae9565b005b34801561085c57600080fd5b506108776004803603810190610872919061330c565b611b82565b005b34801561088557600080fd5b506108a0600480360381019061089b91906130a6565b611c08565b6040516108ad919061391e565b60405180910390f35b3480156108c257600080fd5b506108dd60048036038101906108d89190613339565b611c9c565b005b3480156108eb57600080fd5b506109066004803603810190610901919061330c565b611ea2565b005b34801561091457600080fd5b5061092f600480360381019061092a9190613079565b611f67565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109fc57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a0c5750610a0b8261205f565b5b9050919050565b606060008054610a2290613f04565b80601f0160208091040260200160405190810160405280929190818152602001828054610a4e90613f04565b8015610a9b5780601f10610a7057610100808354040283529160200191610a9b565b820191906000526020600020905b815481529060010190602001808311610a7e57829003601f168201915b5050505050905090565b6000610ab0826120c9565b610aef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae690613afb565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b358261128b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ba6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9d90613b7b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bc5612135565b73ffffffffffffffffffffffffffffffffffffffff161480610bf45750610bf381610bee612135565b611c08565b5b610c33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2a90613a7b565b60405180910390fd5b610c3d838361213d565b505050565b600b5481565b610c50612135565b73ffffffffffffffffffffffffffffffffffffffff16610c6e611513565b73ffffffffffffffffffffffffffffffffffffffff1614610cc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbb90613b1b565b60405180910390fd5b8060099080519060200190610cda929190612e8d565b5050565b610ce6612135565b73ffffffffffffffffffffffffffffffffffffffff16610d04611513565b73ffffffffffffffffffffffffffffffffffffffff1614610d5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5190613b1b565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b6000610d8360076121f6565b905090565b60106020528060005260406000206000915090505481565b610db1610dab612135565b82612204565b610df0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de790613bbb565b60405180910390fd5b610dfb8383836122e2565b505050565b610e08612135565b73ffffffffffffffffffffffffffffffffffffffff16610e26611513565b73ffffffffffffffffffffffffffffffffffffffff1614610e7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7390613b1b565b60405180910390fd5b6000610e86611513565b73ffffffffffffffffffffffffffffffffffffffff1647604051610ea990613880565b60006040518083038185875af1925050503d8060008114610ee6576040519150601f19603f3d011682016040523d82523d6000602084013e610eeb565b606091505b5050905080610ef957600080fd5b50565b610f1783838360405180602001604052806000815250611928565b505050565b60606000610f298361133d565b905060008167ffffffffffffffff811115610f4757610f4661409d565b5b604051908082528060200260200182016040528015610f755781602001602082028036833780820191505090505b50905060006001905060005b8381108015610f925750600c548211155b1561101b576000610fa28361128b565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156110075782848381518110610fec57610feb61406e565b5b602002602001018181525050818061100390613f67565b9250505b828061101290613f67565b93505050610f81565b82945050505050919050565b61102f612135565b73ffffffffffffffffffffffffffffffffffffffff1661104d611513565b73ffffffffffffffffffffffffffffffffffffffff16146110a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109a90613b1b565b60405180910390fd5b80600b8190555050565b600d5481565b6110bb612135565b73ffffffffffffffffffffffffffffffffffffffff166110d9611513565b73ffffffffffffffffffffffffffffffffffffffff161461112f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112690613b1b565b60405180910390fd5b80600a9080519060200190611145929190612e8d565b5050565b600f60019054906101000a900460ff1681565b6009805461116990613f04565b80601f016020809104026020016040519081016040528092919081815260200182805461119590613f04565b80156111e25780601f106111b7576101008083540402835291602001916111e2565b820191906000526020600020905b8154815290600101906020018083116111c557829003601f168201915b505050505081565b600f60009054906101000a900460ff1681565b6008805461120a90613f04565b80601f016020809104026020016040519081016040528092919081815260200182805461123690613f04565b80156112835780601f1061125857610100808354040283529160200191611283565b820191906000526020600020905b81548152906001019060200180831161126657829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611334576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132b90613abb565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a590613a9b565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113fd612135565b73ffffffffffffffffffffffffffffffffffffffff1661141b611513565b73ffffffffffffffffffffffffffffffffffffffff1614611471576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146890613b1b565b60405180910390fd5b61147b6000612549565b565b611485612135565b73ffffffffffffffffffffffffffffffffffffffff166114a3611513565b73ffffffffffffffffffffffffffffffffffffffff16146114f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f090613b1b565b60405180910390fd5b806008908051906020019061150f929190612e8d565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461154c90613f04565b80601f016020809104026020016040519081016040528092919081815260200182805461157890613f04565b80156115c55780601f1061159a576101008083540402835291602001916115c5565b820191906000526020600020905b8154815290600101906020018083116115a857829003601f168201915b5050505050905090565b80600c54816115de60076121f6565b6115e89190613d39565b1115611629576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162090613b9b565b60405180910390fd5b611631611513565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461174a576000811180156116755750600d548111155b6116b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ab906139fb565b60405180910390fd5b6000601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600e5482826117079190613d39565b1115611748576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173f9061399b565b60405180910390fd5b505b600f60009054906101000a900460ff161561179a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179190613b3b565b60405180910390fd5b81600b546117a89190613dc0565b3410156117ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e190613bdb565b60405180910390fd5b6117f4338361260f565b5050565b61180a611803612135565b83836126a4565b5050565b600a805461181b90613f04565b80601f016020809104026020016040519081016040528092919081815260200182805461184790613f04565b80156118945780601f1061186957610100808354040283529160200191611894565b820191906000526020600020905b81548152906001019060200180831161187757829003601f168201915b505050505081565b600e5481565b6118aa612135565b73ffffffffffffffffffffffffffffffffffffffff166118c8611513565b73ffffffffffffffffffffffffffffffffffffffff161461191e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191590613b1b565b60405180910390fd5b80600d8190555050565b611939611933612135565b83612204565b611978576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196f90613bbb565b60405180910390fd5b61198484848484612811565b50505050565b6060611995826120c9565b6119d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119cb90613b5b565b60405180910390fd5b60001515600f60019054906101000a900460ff1615151415611a8257600a80546119fd90613f04565b80601f0160208091040260200160405190810160405280929190818152602001828054611a2990613f04565b8015611a765780601f10611a4b57610100808354040283529160200191611a76565b820191906000526020600020905b815481529060010190602001808311611a5957829003601f168201915b50505050509050611ade565b6000611a8c61286d565b90506000815111611aac5760405180602001604052806000815250611ada565b80611ab6846128ff565b6009604051602001611aca9392919061384f565b6040516020818303038152906040525b9150505b919050565b600c5481565b611af1612135565b73ffffffffffffffffffffffffffffffffffffffff16611b0f611513565b73ffffffffffffffffffffffffffffffffffffffff1614611b65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5c90613b1b565b60405180910390fd5b80600f60016101000a81548160ff02191690831515021790555050565b611b8a612135565b73ffffffffffffffffffffffffffffffffffffffff16611ba8611513565b73ffffffffffffffffffffffffffffffffffffffff1614611bfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf590613b1b565b60405180910390fd5b80600e8190555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b81600c5481611cab60076121f6565b611cb59190613d39565b1115611cf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ced90613b9b565b60405180910390fd5b611cfe611513565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611e1757600081118015611d425750600d548111155b611d81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d78906139fb565b60405180910390fd5b6000601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600e548282611dd49190613d39565b1115611e15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0c9061399b565b60405180910390fd5b505b611e1f612135565b73ffffffffffffffffffffffffffffffffffffffff16611e3d611513565b73ffffffffffffffffffffffffffffffffffffffff1614611e93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8a90613b1b565b60405180910390fd5b611e9d828461260f565b505050565b611eaa612135565b73ffffffffffffffffffffffffffffffffffffffff16611ec8611513565b73ffffffffffffffffffffffffffffffffffffffff1614611f1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1590613b1b565b60405180910390fd5b611f26611513565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415611f6457611f63338261260f565b5b50565b611f6f612135565b73ffffffffffffffffffffffffffffffffffffffff16611f8d611513565b73ffffffffffffffffffffffffffffffffffffffff1614611fe3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fda90613b1b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612053576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204a9061397b565b60405180910390fd5b61205c81612549565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166121b08361128b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b600061220f826120c9565b61224e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224590613a5b565b60405180910390fd5b60006122598361128b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061229b575061229a8185611c08565b5b806122d957508373ffffffffffffffffffffffffffffffffffffffff166122c184610aa5565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166123028261128b565b73ffffffffffffffffffffffffffffffffffffffff1614612358576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234f906139bb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123bf90613a1b565b60405180910390fd5b6123d3838383612a60565b6123de60008261213d565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461242e9190613e1a565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124859190613d39565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612544838383612a65565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60005b8181101561269f576126246007612a6a565b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919061267490613f67565b919050555061268c8361268760076121f6565b612a80565b808061269790613f67565b915050612612565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612713576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270a90613a3b565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612804919061391e565b60405180910390a3505050565b61281c8484846122e2565b61282884848484612a9e565b612867576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285e9061395b565b60405180910390fd5b50505050565b60606008805461287c90613f04565b80601f01602080910402602001604051908101604052809291908181526020018280546128a890613f04565b80156128f55780601f106128ca576101008083540402835291602001916128f5565b820191906000526020600020905b8154815290600101906020018083116128d857829003601f168201915b5050505050905090565b60606000821415612947576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612a5b565b600082905060005b6000821461297957808061296290613f67565b915050600a826129729190613d8f565b915061294f565b60008167ffffffffffffffff8111156129955761299461409d565b5b6040519080825280601f01601f1916602001820160405280156129c75781602001600182028036833780820191505090505b5090505b60008514612a54576001826129e09190613e1a565b9150600a856129ef9190613fb0565b60306129fb9190613d39565b60f81b818381518110612a1157612a1061406e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612a4d9190613d8f565b94506129cb565b8093505050505b919050565b505050565b505050565b6001816000016000828254019250508190555050565b612a9a828260405180602001604052806000815250612c35565b5050565b6000612abf8473ffffffffffffffffffffffffffffffffffffffff16612c90565b15612c28578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612ae8612135565b8786866040518563ffffffff1660e01b8152600401612b0a94939291906138b0565b602060405180830381600087803b158015612b2457600080fd5b505af1925050508015612b5557506040513d601f19601f82011682018060405250810190612b529190613296565b60015b612bd8573d8060008114612b85576040519150601f19603f3d011682016040523d82523d6000602084013e612b8a565b606091505b50600081511415612bd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bc79061395b565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612c2d565b600190505b949350505050565b612c3f8383612cb3565b612c4c6000848484612a9e565b612c8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c829061395b565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d1a90613adb565b60405180910390fd5b612d2c816120c9565b15612d6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d63906139db565b60405180910390fd5b612d7860008383612a60565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612dc89190613d39565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612e8960008383612a65565b5050565b828054612e9990613f04565b90600052602060002090601f016020900481019282612ebb5760008555612f02565b82601f10612ed457805160ff1916838001178555612f02565b82800160010185558215612f02579182015b82811115612f01578251825591602001919060010190612ee6565b5b509050612f0f9190612f13565b5090565b5b80821115612f2c576000816000905550600101612f14565b5090565b6000612f43612f3e84613c3b565b613c16565b905082815260208101848484011115612f5f57612f5e6140d1565b5b612f6a848285613ec2565b509392505050565b6000612f85612f8084613c6c565b613c16565b905082815260208101848484011115612fa157612fa06140d1565b5b612fac848285613ec2565b509392505050565b600081359050612fc381614619565b92915050565b600081359050612fd881614630565b92915050565b600081359050612fed81614647565b92915050565b60008151905061300281614647565b92915050565b600082601f83011261301d5761301c6140cc565b5b813561302d848260208601612f30565b91505092915050565b600082601f83011261304b5761304a6140cc565b5b813561305b848260208601612f72565b91505092915050565b6000813590506130738161465e565b92915050565b60006020828403121561308f5761308e6140db565b5b600061309d84828501612fb4565b91505092915050565b600080604083850312156130bd576130bc6140db565b5b60006130cb85828601612fb4565b92505060206130dc85828601612fb4565b9150509250929050565b6000806000606084860312156130ff576130fe6140db565b5b600061310d86828701612fb4565b935050602061311e86828701612fb4565b925050604061312f86828701613064565b9150509250925092565b60008060008060808587031215613153576131526140db565b5b600061316187828801612fb4565b945050602061317287828801612fb4565b935050604061318387828801613064565b925050606085013567ffffffffffffffff8111156131a4576131a36140d6565b5b6131b087828801613008565b91505092959194509250565b600080604083850312156131d3576131d26140db565b5b60006131e185828601612fb4565b92505060206131f285828601612fc9565b9150509250929050565b60008060408385031215613213576132126140db565b5b600061322185828601612fb4565b925050602061323285828601613064565b9150509250929050565b600060208284031215613252576132516140db565b5b600061326084828501612fc9565b91505092915050565b60006020828403121561327f5761327e6140db565b5b600061328d84828501612fde565b91505092915050565b6000602082840312156132ac576132ab6140db565b5b60006132ba84828501612ff3565b91505092915050565b6000602082840312156132d9576132d86140db565b5b600082013567ffffffffffffffff8111156132f7576132f66140d6565b5b61330384828501613036565b91505092915050565b600060208284031215613322576133216140db565b5b600061333084828501613064565b91505092915050565b600080604083850312156133505761334f6140db565b5b600061335e85828601613064565b925050602061336f85828601612fb4565b9150509250929050565b60006133858383613831565b60208301905092915050565b61339a81613e4e565b82525050565b60006133ab82613cc2565b6133b58185613cf0565b93506133c083613c9d565b8060005b838110156133f15781516133d88882613379565b97506133e383613ce3565b9250506001810190506133c4565b5085935050505092915050565b61340781613e60565b82525050565b600061341882613ccd565b6134228185613d01565b9350613432818560208601613ed1565b61343b816140e0565b840191505092915050565b600061345182613cd8565b61345b8185613d1d565b935061346b818560208601613ed1565b613474816140e0565b840191505092915050565b600061348a82613cd8565b6134948185613d2e565b93506134a4818560208601613ed1565b80840191505092915050565b600081546134bd81613f04565b6134c78186613d2e565b945060018216600081146134e257600181146134f357613526565b60ff19831686528186019350613526565b6134fc85613cad565b60005b8381101561351e578154818901526001820191506020810190506134ff565b838801955050505b50505092915050565b600061353c603283613d1d565b9150613547826140f1565b604082019050919050565b600061355f602683613d1d565b915061356a82614140565b604082019050919050565b6000613582601483613d1d565b915061358d8261418f565b602082019050919050565b60006135a5602583613d1d565b91506135b0826141b8565b604082019050919050565b60006135c8601c83613d1d565b91506135d382614207565b602082019050919050565b60006135eb601483613d1d565b91506135f682614230565b602082019050919050565b600061360e602483613d1d565b915061361982614259565b604082019050919050565b6000613631601983613d1d565b915061363c826142a8565b602082019050919050565b6000613654602c83613d1d565b915061365f826142d1565b604082019050919050565b6000613677603883613d1d565b915061368282614320565b604082019050919050565b600061369a602a83613d1d565b91506136a58261436f565b604082019050919050565b60006136bd602983613d1d565b91506136c8826143be565b604082019050919050565b60006136e0602083613d1d565b91506136eb8261440d565b602082019050919050565b6000613703602c83613d1d565b915061370e82614436565b604082019050919050565b6000613726602083613d1d565b915061373182614485565b602082019050919050565b6000613749601783613d1d565b9150613754826144ae565b602082019050919050565b600061376c602f83613d1d565b9150613777826144d7565b604082019050919050565b600061378f602183613d1d565b915061379a82614526565b604082019050919050565b60006137b2600083613d12565b91506137bd82614575565b600082019050919050565b60006137d5601483613d1d565b91506137e082614578565b602082019050919050565b60006137f8603183613d1d565b9150613803826145a1565b604082019050919050565b600061381b601383613d1d565b9150613826826145f0565b602082019050919050565b61383a81613eb8565b82525050565b61384981613eb8565b82525050565b600061385b828661347f565b9150613867828561347f565b915061387382846134b0565b9150819050949350505050565b600061388b826137a5565b9150819050919050565b60006020820190506138aa6000830184613391565b92915050565b60006080820190506138c56000830187613391565b6138d26020830186613391565b6138df6040830185613840565b81810360608301526138f1818461340d565b905095945050505050565b6000602082019050818103600083015261391681846133a0565b905092915050565b600060208201905061393360008301846133fe565b92915050565b600060208201905081810360008301526139538184613446565b905092915050565b600060208201905081810360008301526139748161352f565b9050919050565b6000602082019050818103600083015261399481613552565b9050919050565b600060208201905081810360008301526139b481613575565b9050919050565b600060208201905081810360008301526139d481613598565b9050919050565b600060208201905081810360008301526139f4816135bb565b9050919050565b60006020820190508181036000830152613a14816135de565b9050919050565b60006020820190508181036000830152613a3481613601565b9050919050565b60006020820190508181036000830152613a5481613624565b9050919050565b60006020820190508181036000830152613a7481613647565b9050919050565b60006020820190508181036000830152613a948161366a565b9050919050565b60006020820190508181036000830152613ab48161368d565b9050919050565b60006020820190508181036000830152613ad4816136b0565b9050919050565b60006020820190508181036000830152613af4816136d3565b9050919050565b60006020820190508181036000830152613b14816136f6565b9050919050565b60006020820190508181036000830152613b3481613719565b9050919050565b60006020820190508181036000830152613b548161373c565b9050919050565b60006020820190508181036000830152613b748161375f565b9050919050565b60006020820190508181036000830152613b9481613782565b9050919050565b60006020820190508181036000830152613bb4816137c8565b9050919050565b60006020820190508181036000830152613bd4816137eb565b9050919050565b60006020820190508181036000830152613bf48161380e565b9050919050565b6000602082019050613c106000830184613840565b92915050565b6000613c20613c31565b9050613c2c8282613f36565b919050565b6000604051905090565b600067ffffffffffffffff821115613c5657613c5561409d565b5b613c5f826140e0565b9050602081019050919050565b600067ffffffffffffffff821115613c8757613c8661409d565b5b613c90826140e0565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613d4482613eb8565b9150613d4f83613eb8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613d8457613d83613fe1565b5b828201905092915050565b6000613d9a82613eb8565b9150613da583613eb8565b925082613db557613db4614010565b5b828204905092915050565b6000613dcb82613eb8565b9150613dd683613eb8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613e0f57613e0e613fe1565b5b828202905092915050565b6000613e2582613eb8565b9150613e3083613eb8565b925082821015613e4357613e42613fe1565b5b828203905092915050565b6000613e5982613e98565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613eef578082015181840152602081019050613ed4565b83811115613efe576000848401525b50505050565b60006002820490506001821680613f1c57607f821691505b60208210811415613f3057613f2f61403f565b5b50919050565b613f3f826140e0565b810181811067ffffffffffffffff82111715613f5e57613f5d61409d565b5b80604052505050565b6000613f7282613eb8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613fa557613fa4613fe1565b5b600182019050919050565b6000613fbb82613eb8565b9150613fc683613eb8565b925082613fd657613fd5614010565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4d6178206d696e74656420746f2077616c6c6574000000000000000000000000600082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b61462281613e4e565b811461462d57600080fd5b50565b61463981613e60565b811461464457600080fd5b50565b61465081613e6c565b811461465b57600080fd5b50565b61466781613eb8565b811461467257600080fd5b5056fea2646970667358221220f33cb2422e48be1685c708c1b7e58f5181759c70512a4d2439d35c8441de03a064736f6c63430008070033697066733a2f2f516d5233516e334d6b4a6b6472623241336e3448704b6a4d646d646e7552595261525772566a42744563435658542f68696464656e2e6a736f6e

Deployed Bytecode

0x60806040526004361061023b5760003560e01c80636352211e1161012e578063b071401b116100ab578063e6fdfbd81161006f578063e6fdfbd814610850578063e985e9c514610879578063efbd73f4146108b6578063f19e75d4146108df578063f2fde38b146109085761023b565b8063b071401b1461076d578063b88d4fde14610796578063c87b56dd146107bf578063d5abeb01146107fc578063e0a80853146108275761023b565b806395d89b41116100f257806395d89b41146106a7578063a0712d68146106d2578063a22cb465146106ee578063a45ba8e714610717578063af47bbfe146107425761023b565b80636352211e146105c257806370a08231146105ff578063715018a61461063c5780637ec4a659146106535780638da5cb5b1461067c5761023b565b80633ccfd60b116101bc5780634fdd43cb116101805780634fdd43cb146104ed57806351830227146105165780635503a0e8146105415780635c975abb1461056c57806362b99ad4146105975761023b565b80633ccfd60b1461041c57806342842e0e14610433578063438b63001461045c57806344a0d68a146104995780634b980d67146104c25761023b565b806316ba10e01161020357806316ba10e01461033957806316c38b3c1461036257806318160ddd1461038b57806318cae269146103b657806323b872dd146103f35761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063095ea7b3146102e557806313faede61461030e575b600080fd5b34801561024c57600080fd5b5061026760048036038101906102629190613269565b610931565b604051610274919061391e565b60405180910390f35b34801561028957600080fd5b50610292610a13565b60405161029f9190613939565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca919061330c565b610aa5565b6040516102dc9190613895565b60405180910390f35b3480156102f157600080fd5b5061030c600480360381019061030791906131fc565b610b2a565b005b34801561031a57600080fd5b50610323610c42565b6040516103309190613bfb565b60405180910390f35b34801561034557600080fd5b50610360600480360381019061035b91906132c3565b610c48565b005b34801561036e57600080fd5b506103896004803603810190610384919061323c565b610cde565b005b34801561039757600080fd5b506103a0610d77565b6040516103ad9190613bfb565b60405180910390f35b3480156103c257600080fd5b506103dd60048036038101906103d89190613079565b610d88565b6040516103ea9190613bfb565b60405180910390f35b3480156103ff57600080fd5b5061041a600480360381019061041591906130e6565b610da0565b005b34801561042857600080fd5b50610431610e00565b005b34801561043f57600080fd5b5061045a600480360381019061045591906130e6565b610efc565b005b34801561046857600080fd5b50610483600480360381019061047e9190613079565b610f1c565b60405161049091906138fc565b60405180910390f35b3480156104a557600080fd5b506104c060048036038101906104bb919061330c565b611027565b005b3480156104ce57600080fd5b506104d76110ad565b6040516104e49190613bfb565b60405180910390f35b3480156104f957600080fd5b50610514600480360381019061050f91906132c3565b6110b3565b005b34801561052257600080fd5b5061052b611149565b604051610538919061391e565b60405180910390f35b34801561054d57600080fd5b5061055661115c565b6040516105639190613939565b60405180910390f35b34801561057857600080fd5b506105816111ea565b60405161058e919061391e565b60405180910390f35b3480156105a357600080fd5b506105ac6111fd565b6040516105b99190613939565b60405180910390f35b3480156105ce57600080fd5b506105e960048036038101906105e4919061330c565b61128b565b6040516105f69190613895565b60405180910390f35b34801561060b57600080fd5b5061062660048036038101906106219190613079565b61133d565b6040516106339190613bfb565b60405180910390f35b34801561064857600080fd5b506106516113f5565b005b34801561065f57600080fd5b5061067a600480360381019061067591906132c3565b61147d565b005b34801561068857600080fd5b50610691611513565b60405161069e9190613895565b60405180910390f35b3480156106b357600080fd5b506106bc61153d565b6040516106c99190613939565b60405180910390f35b6106ec60048036038101906106e7919061330c565b6115cf565b005b3480156106fa57600080fd5b50610715600480360381019061071091906131bc565b6117f8565b005b34801561072357600080fd5b5061072c61180e565b6040516107399190613939565b60405180910390f35b34801561074e57600080fd5b5061075761189c565b6040516107649190613bfb565b60405180910390f35b34801561077957600080fd5b50610794600480360381019061078f919061330c565b6118a2565b005b3480156107a257600080fd5b506107bd60048036038101906107b89190613139565b611928565b005b3480156107cb57600080fd5b506107e660048036038101906107e1919061330c565b61198a565b6040516107f39190613939565b60405180910390f35b34801561080857600080fd5b50610811611ae3565b60405161081e9190613bfb565b60405180910390f35b34801561083357600080fd5b5061084e6004803603810190610849919061323c565b611ae9565b005b34801561085c57600080fd5b506108776004803603810190610872919061330c565b611b82565b005b34801561088557600080fd5b506108a0600480360381019061089b91906130a6565b611c08565b6040516108ad919061391e565b60405180910390f35b3480156108c257600080fd5b506108dd60048036038101906108d89190613339565b611c9c565b005b3480156108eb57600080fd5b506109066004803603810190610901919061330c565b611ea2565b005b34801561091457600080fd5b5061092f600480360381019061092a9190613079565b611f67565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109fc57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a0c5750610a0b8261205f565b5b9050919050565b606060008054610a2290613f04565b80601f0160208091040260200160405190810160405280929190818152602001828054610a4e90613f04565b8015610a9b5780601f10610a7057610100808354040283529160200191610a9b565b820191906000526020600020905b815481529060010190602001808311610a7e57829003601f168201915b5050505050905090565b6000610ab0826120c9565b610aef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae690613afb565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b358261128b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ba6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9d90613b7b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bc5612135565b73ffffffffffffffffffffffffffffffffffffffff161480610bf45750610bf381610bee612135565b611c08565b5b610c33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2a90613a7b565b60405180910390fd5b610c3d838361213d565b505050565b600b5481565b610c50612135565b73ffffffffffffffffffffffffffffffffffffffff16610c6e611513565b73ffffffffffffffffffffffffffffffffffffffff1614610cc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbb90613b1b565b60405180910390fd5b8060099080519060200190610cda929190612e8d565b5050565b610ce6612135565b73ffffffffffffffffffffffffffffffffffffffff16610d04611513565b73ffffffffffffffffffffffffffffffffffffffff1614610d5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5190613b1b565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b6000610d8360076121f6565b905090565b60106020528060005260406000206000915090505481565b610db1610dab612135565b82612204565b610df0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de790613bbb565b60405180910390fd5b610dfb8383836122e2565b505050565b610e08612135565b73ffffffffffffffffffffffffffffffffffffffff16610e26611513565b73ffffffffffffffffffffffffffffffffffffffff1614610e7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7390613b1b565b60405180910390fd5b6000610e86611513565b73ffffffffffffffffffffffffffffffffffffffff1647604051610ea990613880565b60006040518083038185875af1925050503d8060008114610ee6576040519150601f19603f3d011682016040523d82523d6000602084013e610eeb565b606091505b5050905080610ef957600080fd5b50565b610f1783838360405180602001604052806000815250611928565b505050565b60606000610f298361133d565b905060008167ffffffffffffffff811115610f4757610f4661409d565b5b604051908082528060200260200182016040528015610f755781602001602082028036833780820191505090505b50905060006001905060005b8381108015610f925750600c548211155b1561101b576000610fa28361128b565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156110075782848381518110610fec57610feb61406e565b5b602002602001018181525050818061100390613f67565b9250505b828061101290613f67565b93505050610f81565b82945050505050919050565b61102f612135565b73ffffffffffffffffffffffffffffffffffffffff1661104d611513565b73ffffffffffffffffffffffffffffffffffffffff16146110a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109a90613b1b565b60405180910390fd5b80600b8190555050565b600d5481565b6110bb612135565b73ffffffffffffffffffffffffffffffffffffffff166110d9611513565b73ffffffffffffffffffffffffffffffffffffffff161461112f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112690613b1b565b60405180910390fd5b80600a9080519060200190611145929190612e8d565b5050565b600f60019054906101000a900460ff1681565b6009805461116990613f04565b80601f016020809104026020016040519081016040528092919081815260200182805461119590613f04565b80156111e25780601f106111b7576101008083540402835291602001916111e2565b820191906000526020600020905b8154815290600101906020018083116111c557829003601f168201915b505050505081565b600f60009054906101000a900460ff1681565b6008805461120a90613f04565b80601f016020809104026020016040519081016040528092919081815260200182805461123690613f04565b80156112835780601f1061125857610100808354040283529160200191611283565b820191906000526020600020905b81548152906001019060200180831161126657829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611334576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132b90613abb565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a590613a9b565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113fd612135565b73ffffffffffffffffffffffffffffffffffffffff1661141b611513565b73ffffffffffffffffffffffffffffffffffffffff1614611471576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146890613b1b565b60405180910390fd5b61147b6000612549565b565b611485612135565b73ffffffffffffffffffffffffffffffffffffffff166114a3611513565b73ffffffffffffffffffffffffffffffffffffffff16146114f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f090613b1b565b60405180910390fd5b806008908051906020019061150f929190612e8d565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461154c90613f04565b80601f016020809104026020016040519081016040528092919081815260200182805461157890613f04565b80156115c55780601f1061159a576101008083540402835291602001916115c5565b820191906000526020600020905b8154815290600101906020018083116115a857829003601f168201915b5050505050905090565b80600c54816115de60076121f6565b6115e89190613d39565b1115611629576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162090613b9b565b60405180910390fd5b611631611513565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461174a576000811180156116755750600d548111155b6116b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ab906139fb565b60405180910390fd5b6000601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600e5482826117079190613d39565b1115611748576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173f9061399b565b60405180910390fd5b505b600f60009054906101000a900460ff161561179a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179190613b3b565b60405180910390fd5b81600b546117a89190613dc0565b3410156117ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e190613bdb565b60405180910390fd5b6117f4338361260f565b5050565b61180a611803612135565b83836126a4565b5050565b600a805461181b90613f04565b80601f016020809104026020016040519081016040528092919081815260200182805461184790613f04565b80156118945780601f1061186957610100808354040283529160200191611894565b820191906000526020600020905b81548152906001019060200180831161187757829003601f168201915b505050505081565b600e5481565b6118aa612135565b73ffffffffffffffffffffffffffffffffffffffff166118c8611513565b73ffffffffffffffffffffffffffffffffffffffff161461191e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191590613b1b565b60405180910390fd5b80600d8190555050565b611939611933612135565b83612204565b611978576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196f90613bbb565b60405180910390fd5b61198484848484612811565b50505050565b6060611995826120c9565b6119d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119cb90613b5b565b60405180910390fd5b60001515600f60019054906101000a900460ff1615151415611a8257600a80546119fd90613f04565b80601f0160208091040260200160405190810160405280929190818152602001828054611a2990613f04565b8015611a765780601f10611a4b57610100808354040283529160200191611a76565b820191906000526020600020905b815481529060010190602001808311611a5957829003601f168201915b50505050509050611ade565b6000611a8c61286d565b90506000815111611aac5760405180602001604052806000815250611ada565b80611ab6846128ff565b6009604051602001611aca9392919061384f565b6040516020818303038152906040525b9150505b919050565b600c5481565b611af1612135565b73ffffffffffffffffffffffffffffffffffffffff16611b0f611513565b73ffffffffffffffffffffffffffffffffffffffff1614611b65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5c90613b1b565b60405180910390fd5b80600f60016101000a81548160ff02191690831515021790555050565b611b8a612135565b73ffffffffffffffffffffffffffffffffffffffff16611ba8611513565b73ffffffffffffffffffffffffffffffffffffffff1614611bfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf590613b1b565b60405180910390fd5b80600e8190555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b81600c5481611cab60076121f6565b611cb59190613d39565b1115611cf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ced90613b9b565b60405180910390fd5b611cfe611513565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611e1757600081118015611d425750600d548111155b611d81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d78906139fb565b60405180910390fd5b6000601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600e548282611dd49190613d39565b1115611e15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0c9061399b565b60405180910390fd5b505b611e1f612135565b73ffffffffffffffffffffffffffffffffffffffff16611e3d611513565b73ffffffffffffffffffffffffffffffffffffffff1614611e93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8a90613b1b565b60405180910390fd5b611e9d828461260f565b505050565b611eaa612135565b73ffffffffffffffffffffffffffffffffffffffff16611ec8611513565b73ffffffffffffffffffffffffffffffffffffffff1614611f1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1590613b1b565b60405180910390fd5b611f26611513565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415611f6457611f63338261260f565b5b50565b611f6f612135565b73ffffffffffffffffffffffffffffffffffffffff16611f8d611513565b73ffffffffffffffffffffffffffffffffffffffff1614611fe3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fda90613b1b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612053576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204a9061397b565b60405180910390fd5b61205c81612549565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166121b08361128b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b600061220f826120c9565b61224e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224590613a5b565b60405180910390fd5b60006122598361128b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061229b575061229a8185611c08565b5b806122d957508373ffffffffffffffffffffffffffffffffffffffff166122c184610aa5565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166123028261128b565b73ffffffffffffffffffffffffffffffffffffffff1614612358576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234f906139bb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123bf90613a1b565b60405180910390fd5b6123d3838383612a60565b6123de60008261213d565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461242e9190613e1a565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124859190613d39565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612544838383612a65565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60005b8181101561269f576126246007612a6a565b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919061267490613f67565b919050555061268c8361268760076121f6565b612a80565b808061269790613f67565b915050612612565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612713576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270a90613a3b565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612804919061391e565b60405180910390a3505050565b61281c8484846122e2565b61282884848484612a9e565b612867576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285e9061395b565b60405180910390fd5b50505050565b60606008805461287c90613f04565b80601f01602080910402602001604051908101604052809291908181526020018280546128a890613f04565b80156128f55780601f106128ca576101008083540402835291602001916128f5565b820191906000526020600020905b8154815290600101906020018083116128d857829003601f168201915b5050505050905090565b60606000821415612947576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612a5b565b600082905060005b6000821461297957808061296290613f67565b915050600a826129729190613d8f565b915061294f565b60008167ffffffffffffffff8111156129955761299461409d565b5b6040519080825280601f01601f1916602001820160405280156129c75781602001600182028036833780820191505090505b5090505b60008514612a54576001826129e09190613e1a565b9150600a856129ef9190613fb0565b60306129fb9190613d39565b60f81b818381518110612a1157612a1061406e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612a4d9190613d8f565b94506129cb565b8093505050505b919050565b505050565b505050565b6001816000016000828254019250508190555050565b612a9a828260405180602001604052806000815250612c35565b5050565b6000612abf8473ffffffffffffffffffffffffffffffffffffffff16612c90565b15612c28578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612ae8612135565b8786866040518563ffffffff1660e01b8152600401612b0a94939291906138b0565b602060405180830381600087803b158015612b2457600080fd5b505af1925050508015612b5557506040513d601f19601f82011682018060405250810190612b529190613296565b60015b612bd8573d8060008114612b85576040519150601f19603f3d011682016040523d82523d6000602084013e612b8a565b606091505b50600081511415612bd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bc79061395b565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612c2d565b600190505b949350505050565b612c3f8383612cb3565b612c4c6000848484612a9e565b612c8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c829061395b565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d1a90613adb565b60405180910390fd5b612d2c816120c9565b15612d6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d63906139db565b60405180910390fd5b612d7860008383612a60565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612dc89190613d39565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612e8960008383612a65565b5050565b828054612e9990613f04565b90600052602060002090601f016020900481019282612ebb5760008555612f02565b82601f10612ed457805160ff1916838001178555612f02565b82800160010185558215612f02579182015b82811115612f01578251825591602001919060010190612ee6565b5b509050612f0f9190612f13565b5090565b5b80821115612f2c576000816000905550600101612f14565b5090565b6000612f43612f3e84613c3b565b613c16565b905082815260208101848484011115612f5f57612f5e6140d1565b5b612f6a848285613ec2565b509392505050565b6000612f85612f8084613c6c565b613c16565b905082815260208101848484011115612fa157612fa06140d1565b5b612fac848285613ec2565b509392505050565b600081359050612fc381614619565b92915050565b600081359050612fd881614630565b92915050565b600081359050612fed81614647565b92915050565b60008151905061300281614647565b92915050565b600082601f83011261301d5761301c6140cc565b5b813561302d848260208601612f30565b91505092915050565b600082601f83011261304b5761304a6140cc565b5b813561305b848260208601612f72565b91505092915050565b6000813590506130738161465e565b92915050565b60006020828403121561308f5761308e6140db565b5b600061309d84828501612fb4565b91505092915050565b600080604083850312156130bd576130bc6140db565b5b60006130cb85828601612fb4565b92505060206130dc85828601612fb4565b9150509250929050565b6000806000606084860312156130ff576130fe6140db565b5b600061310d86828701612fb4565b935050602061311e86828701612fb4565b925050604061312f86828701613064565b9150509250925092565b60008060008060808587031215613153576131526140db565b5b600061316187828801612fb4565b945050602061317287828801612fb4565b935050604061318387828801613064565b925050606085013567ffffffffffffffff8111156131a4576131a36140d6565b5b6131b087828801613008565b91505092959194509250565b600080604083850312156131d3576131d26140db565b5b60006131e185828601612fb4565b92505060206131f285828601612fc9565b9150509250929050565b60008060408385031215613213576132126140db565b5b600061322185828601612fb4565b925050602061323285828601613064565b9150509250929050565b600060208284031215613252576132516140db565b5b600061326084828501612fc9565b91505092915050565b60006020828403121561327f5761327e6140db565b5b600061328d84828501612fde565b91505092915050565b6000602082840312156132ac576132ab6140db565b5b60006132ba84828501612ff3565b91505092915050565b6000602082840312156132d9576132d86140db565b5b600082013567ffffffffffffffff8111156132f7576132f66140d6565b5b61330384828501613036565b91505092915050565b600060208284031215613322576133216140db565b5b600061333084828501613064565b91505092915050565b600080604083850312156133505761334f6140db565b5b600061335e85828601613064565b925050602061336f85828601612fb4565b9150509250929050565b60006133858383613831565b60208301905092915050565b61339a81613e4e565b82525050565b60006133ab82613cc2565b6133b58185613cf0565b93506133c083613c9d565b8060005b838110156133f15781516133d88882613379565b97506133e383613ce3565b9250506001810190506133c4565b5085935050505092915050565b61340781613e60565b82525050565b600061341882613ccd565b6134228185613d01565b9350613432818560208601613ed1565b61343b816140e0565b840191505092915050565b600061345182613cd8565b61345b8185613d1d565b935061346b818560208601613ed1565b613474816140e0565b840191505092915050565b600061348a82613cd8565b6134948185613d2e565b93506134a4818560208601613ed1565b80840191505092915050565b600081546134bd81613f04565b6134c78186613d2e565b945060018216600081146134e257600181146134f357613526565b60ff19831686528186019350613526565b6134fc85613cad565b60005b8381101561351e578154818901526001820191506020810190506134ff565b838801955050505b50505092915050565b600061353c603283613d1d565b9150613547826140f1565b604082019050919050565b600061355f602683613d1d565b915061356a82614140565b604082019050919050565b6000613582601483613d1d565b915061358d8261418f565b602082019050919050565b60006135a5602583613d1d565b91506135b0826141b8565b604082019050919050565b60006135c8601c83613d1d565b91506135d382614207565b602082019050919050565b60006135eb601483613d1d565b91506135f682614230565b602082019050919050565b600061360e602483613d1d565b915061361982614259565b604082019050919050565b6000613631601983613d1d565b915061363c826142a8565b602082019050919050565b6000613654602c83613d1d565b915061365f826142d1565b604082019050919050565b6000613677603883613d1d565b915061368282614320565b604082019050919050565b600061369a602a83613d1d565b91506136a58261436f565b604082019050919050565b60006136bd602983613d1d565b91506136c8826143be565b604082019050919050565b60006136e0602083613d1d565b91506136eb8261440d565b602082019050919050565b6000613703602c83613d1d565b915061370e82614436565b604082019050919050565b6000613726602083613d1d565b915061373182614485565b602082019050919050565b6000613749601783613d1d565b9150613754826144ae565b602082019050919050565b600061376c602f83613d1d565b9150613777826144d7565b604082019050919050565b600061378f602183613d1d565b915061379a82614526565b604082019050919050565b60006137b2600083613d12565b91506137bd82614575565b600082019050919050565b60006137d5601483613d1d565b91506137e082614578565b602082019050919050565b60006137f8603183613d1d565b9150613803826145a1565b604082019050919050565b600061381b601383613d1d565b9150613826826145f0565b602082019050919050565b61383a81613eb8565b82525050565b61384981613eb8565b82525050565b600061385b828661347f565b9150613867828561347f565b915061387382846134b0565b9150819050949350505050565b600061388b826137a5565b9150819050919050565b60006020820190506138aa6000830184613391565b92915050565b60006080820190506138c56000830187613391565b6138d26020830186613391565b6138df6040830185613840565b81810360608301526138f1818461340d565b905095945050505050565b6000602082019050818103600083015261391681846133a0565b905092915050565b600060208201905061393360008301846133fe565b92915050565b600060208201905081810360008301526139538184613446565b905092915050565b600060208201905081810360008301526139748161352f565b9050919050565b6000602082019050818103600083015261399481613552565b9050919050565b600060208201905081810360008301526139b481613575565b9050919050565b600060208201905081810360008301526139d481613598565b9050919050565b600060208201905081810360008301526139f4816135bb565b9050919050565b60006020820190508181036000830152613a14816135de565b9050919050565b60006020820190508181036000830152613a3481613601565b9050919050565b60006020820190508181036000830152613a5481613624565b9050919050565b60006020820190508181036000830152613a7481613647565b9050919050565b60006020820190508181036000830152613a948161366a565b9050919050565b60006020820190508181036000830152613ab48161368d565b9050919050565b60006020820190508181036000830152613ad4816136b0565b9050919050565b60006020820190508181036000830152613af4816136d3565b9050919050565b60006020820190508181036000830152613b14816136f6565b9050919050565b60006020820190508181036000830152613b3481613719565b9050919050565b60006020820190508181036000830152613b548161373c565b9050919050565b60006020820190508181036000830152613b748161375f565b9050919050565b60006020820190508181036000830152613b9481613782565b9050919050565b60006020820190508181036000830152613bb4816137c8565b9050919050565b60006020820190508181036000830152613bd4816137eb565b9050919050565b60006020820190508181036000830152613bf48161380e565b9050919050565b6000602082019050613c106000830184613840565b92915050565b6000613c20613c31565b9050613c2c8282613f36565b919050565b6000604051905090565b600067ffffffffffffffff821115613c5657613c5561409d565b5b613c5f826140e0565b9050602081019050919050565b600067ffffffffffffffff821115613c8757613c8661409d565b5b613c90826140e0565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613d4482613eb8565b9150613d4f83613eb8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613d8457613d83613fe1565b5b828201905092915050565b6000613d9a82613eb8565b9150613da583613eb8565b925082613db557613db4614010565b5b828204905092915050565b6000613dcb82613eb8565b9150613dd683613eb8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613e0f57613e0e613fe1565b5b828202905092915050565b6000613e2582613eb8565b9150613e3083613eb8565b925082821015613e4357613e42613fe1565b5b828203905092915050565b6000613e5982613e98565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613eef578082015181840152602081019050613ed4565b83811115613efe576000848401525b50505050565b60006002820490506001821680613f1c57607f821691505b60208210811415613f3057613f2f61403f565b5b50919050565b613f3f826140e0565b810181811067ffffffffffffffff82111715613f5e57613f5d61409d565b5b80604052505050565b6000613f7282613eb8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613fa557613fa4613fe1565b5b600182019050919050565b6000613fbb82613eb8565b9150613fc683613eb8565b925082613fd657613fd5614010565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4d6178206d696e74656420746f2077616c6c6574000000000000000000000000600082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b61462281613e4e565b811461462d57600080fd5b50565b61463981613e60565b811461464457600080fd5b50565b61465081613e6c565b811461465b57600080fd5b50565b61466781613eb8565b811461467257600080fd5b5056fea2646970667358221220f33cb2422e48be1685c708c1b7e58f5181759c70512a4d2439d35c8441de03a064736f6c63430008070033

Deployed Bytecode Sourcemap

38832:5358:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25641:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26586:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28146:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27669:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39335:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43302:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43408:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40868:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39870:55;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28896:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43687:137;;;;;;;;;;;;;:::i;:::-;;29306:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41510:635;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42738:74;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39502:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43058:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39767:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39151:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39684:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39049:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26280:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26010:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6224:103;;;;;;;;;;;;;:::i;:::-;;43196:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5573:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26755:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41049:245;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28439:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39239:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39591;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42818:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29562:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42151:494;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39416:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42651:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42951:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28665:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41349:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43491:190;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6482:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25641:305;25743:4;25795:25;25780:40;;;:11;:40;;;;:105;;;;25852:33;25837:48;;;:11;:48;;;;25780:105;:158;;;;25902:36;25926:11;25902:23;:36::i;:::-;25780:158;25760:178;;25641:305;;;:::o;26586:100::-;26640:13;26673:5;26666:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26586:100;:::o;28146:221::-;28222:7;28250:16;28258:7;28250;:16::i;:::-;28242:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;28335:15;:24;28351:7;28335:24;;;;;;;;;;;;;;;;;;;;;28328:31;;28146:221;;;:::o;27669:411::-;27750:13;27766:23;27781:7;27766:14;:23::i;:::-;27750:39;;27814:5;27808:11;;:2;:11;;;;27800:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;27908:5;27892:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;27917:37;27934:5;27941:12;:10;:12::i;:::-;27917:16;:37::i;:::-;27892:62;27870:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;28051:21;28060:2;28064:7;28051:8;:21::i;:::-;27739:341;27669:411;;:::o;39335:32::-;;;;:::o;43302:100::-;5804:12;:10;:12::i;:::-;5793:23;;:7;:5;:7::i;:::-;:23;;;5785:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43386:10:::1;43374:9;:22;;;;;;;;;;;;:::i;:::-;;43302:100:::0;:::o;43408:77::-;5804:12;:10;:12::i;:::-;5793:23;;:7;:5;:7::i;:::-;:23;;;5785:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43473:6:::1;43464;;:15;;;;;;;;;;;;;;;;;;43408:77:::0;:::o;40868:89::-;40912:7;40935:16;:6;:14;:16::i;:::-;40928:23;;40868:89;:::o;39870:55::-;;;;;;;;;;;;;;;;;:::o;28896:339::-;29091:41;29110:12;:10;:12::i;:::-;29124:7;29091:18;:41::i;:::-;29083:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;29199:28;29209:4;29215:2;29219:7;29199:9;:28::i;:::-;28896:339;;;:::o;43687:137::-;5804:12;:10;:12::i;:::-;5793:23;;:7;:5;:7::i;:::-;:23;;;5785:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43732:7:::1;43753;:5;:7::i;:::-;43745:21;;43774;43745:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43731:69;;;43815:2;43807:11;;;::::0;::::1;;43724:100;43687:137::o:0;29306:185::-;29444:39;29461:4;29467:2;29471:7;29444:39;;;;;;;;;;;;:16;:39::i;:::-;29306:185;;;:::o;41510:635::-;41585:16;41613:23;41639:17;41649:6;41639:9;:17::i;:::-;41613:43;;41663:30;41710:15;41696:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41663:63;;41733:22;41758:1;41733:26;;41766:23;41802:309;41827:15;41809;:33;:64;;;;;41864:9;;41846:14;:27;;41809:64;41802:309;;;41884:25;41912:23;41920:14;41912:7;:23::i;:::-;41884:51;;41971:6;41950:27;;:17;:27;;;41946:131;;;42023:14;41990:13;42004:15;41990:30;;;;;;;;:::i;:::-;;;;;;;:47;;;;;42050:17;;;;;:::i;:::-;;;;41946:131;42087:16;;;;;:::i;:::-;;;;41875:236;41802:309;;;42126:13;42119:20;;;;;;41510:635;;;:::o;42738:74::-;5804:12;:10;:12::i;:::-;5793:23;;:7;:5;:7::i;:::-;:23;;;5785:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42801:5:::1;42794:4;:12;;;;42738:74:::0;:::o;39502:37::-;;;;:::o;43058:132::-;5804:12;:10;:12::i;:::-;5793:23;;:7;:5;:7::i;:::-;:23;;;5785:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43166:18:::1;43146:17;:38;;;;;;;;;;;;:::i;:::-;;43058:132:::0;:::o;39767:28::-;;;;;;;;;;;;;:::o;39151:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;39684:25::-;;;;;;;;;;;;;:::o;39049:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;26280:239::-;26352:7;26372:13;26388:7;:16;26396:7;26388:16;;;;;;;;;;;;;;;;;;;;;26372:32;;26440:1;26423:19;;:5;:19;;;;26415:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26506:5;26499:12;;;26280:239;;;:::o;26010:208::-;26082:7;26127:1;26110:19;;:5;:19;;;;26102:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;26194:9;:16;26204:5;26194:16;;;;;;;;;;;;;;;;26187:23;;26010:208;;;:::o;6224:103::-;5804:12;:10;:12::i;:::-;5793:23;;:7;:5;:7::i;:::-;:23;;;5785:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6289:30:::1;6316:1;6289:18;:30::i;:::-;6224:103::o:0;43196:100::-;5804:12;:10;:12::i;:::-;5793:23;;:7;:5;:7::i;:::-;:23;;;5785:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43280:10:::1;43268:9;:22;;;;;;;;;;;;:::i;:::-;;43196:100:::0;:::o;5573:87::-;5619:7;5646:6;;;;;;;;;;;5639:13;;5573:87;:::o;26755:104::-;26811:13;26844:7;26837:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26755:104;:::o;41049:245::-;41114:11;40455:9;;40440:11;40421:16;:6;:14;:16::i;:::-;:30;;;;:::i;:::-;:43;;40413:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;40520:7;:5;:7::i;:::-;40506:21;;:10;:21;;;40502:293;;40562:1;40548:11;:15;:51;;;;;40582:17;;40567:11;:32;;40548:51;40540:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;40635:26;40664:20;:32;40685:10;40664:32;;;;;;;;;;;;;;;;40635:61;;40751:11;;40736;40715:18;:32;;;;:::i;:::-;:47;;40707:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;40529:266;40502:293;41143:6:::1;;;;;;;;;;;41142:7;41134:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;41212:11;41205:4;;:18;;;;:::i;:::-;41192:9;:31;;41184:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;41254:34;41264:10;41276:11;41254:9;:34::i;:::-;41049:245:::0;;:::o;28439:155::-;28534:52;28553:12;:10;:12::i;:::-;28567:8;28577;28534:18;:52::i;:::-;28439:155;;:::o;39239:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;39591:::-;;;;:::o;42818:127::-;5804:12;:10;:12::i;:::-;5793:23;;:7;:5;:7::i;:::-;:23;;;5785:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42921:18:::1;42901:17;:38;;;;42818:127:::0;:::o;29562:328::-;29737:41;29756:12;:10;:12::i;:::-;29770:7;29737:18;:41::i;:::-;29729:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;29843:39;29857:4;29863:2;29867:7;29876:5;29843:13;:39::i;:::-;29562:328;;;;:::o;42151:494::-;42250:13;42291:17;42299:8;42291:7;:17::i;:::-;42275:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;42398:5;42386:17;;:8;;;;;;;;;;;:17;;;42382:64;;;42421:17;42414:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42382:64;42454:28;42485:10;:8;:10::i;:::-;42454:41;;42540:1;42515:14;42509:28;:32;:130;;;;;;;;;;;;;;;;;42577:14;42593:19;:8;:17;:19::i;:::-;42614:9;42560:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;42509:130;42502:137;;;42151:494;;;;:::o;39416:31::-;;;;:::o;42651:81::-;5804:12;:10;:12::i;:::-;5793:23;;:7;:5;:7::i;:::-;:23;;;5785:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42720:6:::1;42709:8;;:17;;;;;;;;;;;;;;;;;;42651:81:::0;:::o;42951:101::-;5804:12;:10;:12::i;:::-;5793:23;;:7;:5;:7::i;:::-;:23;;;5785:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43034:12:::1;43020:11;:26;;;;42951:101:::0;:::o;28665:164::-;28762:4;28786:18;:25;28805:5;28786:25;;;;;;;;;;;;;;;:35;28812:8;28786:35;;;;;;;;;;;;;;;;;;;;;;;;;28779:42;;28665:164;;;;:::o;41349:155::-;41435:11;40455:9;;40440:11;40421:16;:6;:14;:16::i;:::-;:30;;;;:::i;:::-;:43;;40413:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;40520:7;:5;:7::i;:::-;40506:21;;:10;:21;;;40502:293;;40562:1;40548:11;:15;:51;;;;;40582:17;;40567:11;:32;;40548:51;40540:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;40635:26;40664:20;:32;40685:10;40664:32;;;;;;;;;;;;;;;;40635:61;;40751:11;;40736;40715:18;:32;;;;:::i;:::-;:47;;40707:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;40529:266;40502:293;5804:12:::1;:10;:12::i;:::-;5793:23;;:7;:5;:7::i;:::-;:23;;;5785:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41465:33:::2;41475:9;41486:11;41465:9;:33::i;:::-;41349:155:::0;;;:::o;43491:190::-;5804:12;:10;:12::i;:::-;5793:23;;:7;:5;:7::i;:::-;:23;;;5785:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43616:7:::1;:5;:7::i;:::-;43602:21;;:10;:21;;;43598:78;;;43634:34;43644:10;43656:11;43634:9;:34::i;:::-;43598:78;43491:190:::0;:::o;6482:201::-;5804:12;:10;:12::i;:::-;5793:23;;:7;:5;:7::i;:::-;:23;;;5785:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6591:1:::1;6571:22;;:8;:22;;;;6563:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;6647:28;6666:8;6647:18;:28::i;:::-;6482:201:::0;:::o;18380:157::-;18465:4;18504:25;18489:40;;;:11;:40;;;;18482:47;;18380:157;;;:::o;31400:127::-;31465:4;31517:1;31489:30;;:7;:16;31497:7;31489:16;;;;;;;;;;;;;;;;;;;;;:30;;;;31482:37;;31400:127;;;:::o;4297:98::-;4350:7;4377:10;4370:17;;4297:98;:::o;35546:174::-;35648:2;35621:15;:24;35637:7;35621:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;35704:7;35700:2;35666:46;;35675:23;35690:7;35675:14;:23::i;:::-;35666:46;;;;;;;;;;;;35546:174;;:::o;901:114::-;966:7;993;:14;;;986:21;;901:114;;;:::o;31694:348::-;31787:4;31812:16;31820:7;31812;:16::i;:::-;31804:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31888:13;31904:23;31919:7;31904:14;:23::i;:::-;31888:39;;31957:5;31946:16;;:7;:16;;;:52;;;;31966:32;31983:5;31990:7;31966:16;:32::i;:::-;31946:52;:87;;;;32026:7;32002:31;;:20;32014:7;32002:11;:20::i;:::-;:31;;;31946:87;31938:96;;;31694:348;;;;:::o;34803:625::-;34962:4;34935:31;;:23;34950:7;34935:14;:23::i;:::-;:31;;;34927:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;35041:1;35027:16;;:2;:16;;;;35019:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;35097:39;35118:4;35124:2;35128:7;35097:20;:39::i;:::-;35201:29;35218:1;35222:7;35201:8;:29::i;:::-;35262:1;35243:9;:15;35253:4;35243:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;35291:1;35274:9;:13;35284:2;35274:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;35322:2;35303:7;:16;35311:7;35303:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;35361:7;35357:2;35342:27;;35351:4;35342:27;;;;;;;;;;;;35382:38;35402:4;35408:2;35412:7;35382:19;:38::i;:::-;34803:625;;;:::o;6843:191::-;6917:16;6936:6;;;;;;;;;;;6917:25;;6962:8;6953:6;;:17;;;;;;;;;;;;;;;;;;7017:8;6986:40;;7007:8;6986:40;;;;;;;;;;;;6906:128;6843:191;:::o;43830:247::-;43910:9;43905:167;43929:11;43925:1;:15;43905:167;;;43956:18;:6;:16;:18::i;:::-;43983:20;:32;44004:10;43983:32;;;;;;;;;;;;;;;;:34;;;;;;;;;:::i;:::-;;;;;;44026:38;44036:9;44047:16;:6;:14;:16::i;:::-;44026:9;:38::i;:::-;43942:3;;;;;:::i;:::-;;;;43905:167;;;;43830:247;;:::o;35862:315::-;36017:8;36008:17;;:5;:17;;;;36000:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;36104:8;36066:18;:25;36085:5;36066:25;;;;;;;;;;;;;;;:35;36092:8;36066:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;36150:8;36128:41;;36143:5;36128:41;;;36160:8;36128:41;;;;;;:::i;:::-;;;;;;;;35862:315;;;:::o;30772:::-;30929:28;30939:4;30945:2;30949:7;30929:9;:28::i;:::-;30976:48;30999:4;31005:2;31009:7;31018:5;30976:22;:48::i;:::-;30968:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;30772:315;;;;:::o;44083:104::-;44143:13;44172:9;44165:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44083: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;38113:126::-;;;;:::o;38624:125::-;;;;:::o;1023:127::-;1130:1;1112:7;:14;;;:19;;;;;;;;;;;1023:127;:::o;32384:110::-;32460:26;32470:2;32474:7;32460:26;;;;;;;;;;;;:9;:26::i;:::-;32384:110;;:::o;36742:799::-;36897:4;36918:15;:2;:13;;;:15::i;:::-;36914:620;;;36970:2;36954:36;;;36991:12;:10;:12::i;:::-;37005:4;37011:7;37020:5;36954:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36950:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37213:1;37196:6;:13;:18;37192:272;;;37239:60;;;;;;;;;;:::i;:::-;;;;;;;;37192:272;37414:6;37408:13;37399:6;37395:2;37391:15;37384:38;36950:529;37087:41;;;37077:51;;;:6;:51;;;;37070:58;;;;;36914:620;37518:4;37511:11;;36742:799;;;;;;;:::o;32721:321::-;32851:18;32857:2;32861:7;32851:5;:18::i;:::-;32902:54;32933:1;32937:2;32941:7;32950:5;32902:22;:54::i;:::-;32880:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;32721:321;;;:::o;8274:326::-;8334:4;8591:1;8569:7;:19;;;:23;8562:30;;8274:326;;;:::o;33378:439::-;33472:1;33458:16;;:2;:16;;;;33450:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;33531:16;33539:7;33531;:16::i;:::-;33530:17;33522:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;33593:45;33622:1;33626:2;33630:7;33593:20;:45::i;:::-;33668:1;33651:9;:13;33661:2;33651:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;33699:2;33680:7;:16;33688:7;33680:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;33744:7;33740:2;33719:33;;33736:1;33719:33;;;;;;;;;;;;33765:44;33793:1;33797:2;33801:7;33765:19;:44::i;:::-;33378:439;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:474::-;7555:6;7563;7612:2;7600:9;7591:7;7587:23;7583:32;7580:119;;;7618:79;;:::i;:::-;7580:119;7738:1;7763:53;7808:7;7799:6;7788:9;7784:22;7763:53;:::i;:::-;7753:63;;7709:117;7865:2;7891:53;7936:7;7927:6;7916:9;7912:22;7891:53;:::i;:::-;7881:63;;7836:118;7487:474;;;;;:::o;7967:179::-;8036:10;8057:46;8099:3;8091:6;8057:46;:::i;:::-;8135:4;8130:3;8126:14;8112:28;;7967:179;;;;:::o;8152:118::-;8239:24;8257:5;8239:24;:::i;:::-;8234:3;8227:37;8152:118;;:::o;8306:732::-;8425:3;8454:54;8502:5;8454:54;:::i;:::-;8524:86;8603:6;8598:3;8524:86;:::i;:::-;8517:93;;8634:56;8684:5;8634:56;:::i;:::-;8713:7;8744:1;8729:284;8754:6;8751:1;8748:13;8729:284;;;8830:6;8824:13;8857:63;8916:3;8901:13;8857:63;:::i;:::-;8850:70;;8943:60;8996:6;8943:60;:::i;:::-;8933:70;;8789:224;8776:1;8773;8769:9;8764:14;;8729:284;;;8733:14;9029:3;9022:10;;8430:608;;;8306:732;;;;:::o;9044:109::-;9125:21;9140:5;9125:21;:::i;:::-;9120:3;9113:34;9044:109;;:::o;9159:360::-;9245:3;9273:38;9305:5;9273:38;:::i;:::-;9327:70;9390:6;9385:3;9327:70;:::i;:::-;9320:77;;9406:52;9451:6;9446:3;9439:4;9432:5;9428:16;9406:52;:::i;:::-;9483:29;9505:6;9483:29;:::i;:::-;9478:3;9474:39;9467:46;;9249:270;9159:360;;;;:::o;9525:364::-;9613:3;9641:39;9674:5;9641:39;:::i;:::-;9696:71;9760:6;9755:3;9696:71;:::i;:::-;9689:78;;9776:52;9821:6;9816:3;9809:4;9802:5;9798:16;9776:52;:::i;:::-;9853:29;9875:6;9853:29;:::i;:::-;9848:3;9844:39;9837:46;;9617:272;9525:364;;;;:::o;9895:377::-;10001:3;10029:39;10062:5;10029:39;:::i;:::-;10084:89;10166:6;10161:3;10084:89;:::i;:::-;10077:96;;10182:52;10227:6;10222:3;10215:4;10208:5;10204:16;10182:52;:::i;:::-;10259:6;10254:3;10250:16;10243:23;;10005:267;9895:377;;;;:::o;10302:845::-;10405:3;10442:5;10436:12;10471:36;10497:9;10471:36;:::i;:::-;10523:89;10605:6;10600:3;10523:89;:::i;:::-;10516:96;;10643:1;10632:9;10628:17;10659:1;10654:137;;;;10805:1;10800:341;;;;10621:520;;10654:137;10738:4;10734:9;10723;10719:25;10714:3;10707:38;10774:6;10769:3;10765:16;10758:23;;10654:137;;10800:341;10867:38;10899:5;10867:38;:::i;:::-;10927:1;10941:154;10955:6;10952:1;10949:13;10941:154;;;11029:7;11023:14;11019:1;11014:3;11010:11;11003:35;11079:1;11070:7;11066:15;11055:26;;10977:4;10974:1;10970:12;10965:17;;10941:154;;;11124:6;11119:3;11115:16;11108:23;;10807:334;;10621:520;;10409:738;;10302:845;;;;:::o;11153:366::-;11295:3;11316:67;11380:2;11375:3;11316:67;:::i;:::-;11309:74;;11392:93;11481:3;11392:93;:::i;:::-;11510:2;11505:3;11501:12;11494:19;;11153:366;;;:::o;11525:::-;11667:3;11688:67;11752:2;11747:3;11688:67;:::i;:::-;11681:74;;11764:93;11853:3;11764:93;:::i;:::-;11882:2;11877:3;11873:12;11866:19;;11525:366;;;:::o;11897:::-;12039:3;12060:67;12124:2;12119:3;12060:67;:::i;:::-;12053:74;;12136:93;12225:3;12136:93;:::i;:::-;12254:2;12249:3;12245:12;12238:19;;11897:366;;;:::o;12269:::-;12411:3;12432:67;12496:2;12491:3;12432:67;:::i;:::-;12425:74;;12508:93;12597:3;12508:93;:::i;:::-;12626:2;12621:3;12617:12;12610:19;;12269:366;;;:::o;12641:::-;12783:3;12804:67;12868:2;12863:3;12804:67;:::i;:::-;12797:74;;12880:93;12969:3;12880:93;:::i;:::-;12998:2;12993:3;12989:12;12982:19;;12641:366;;;:::o;13013:::-;13155:3;13176:67;13240:2;13235:3;13176:67;:::i;:::-;13169:74;;13252:93;13341:3;13252:93;:::i;:::-;13370:2;13365:3;13361:12;13354:19;;13013:366;;;:::o;13385:::-;13527:3;13548:67;13612:2;13607:3;13548:67;:::i;:::-;13541:74;;13624:93;13713:3;13624:93;:::i;:::-;13742:2;13737:3;13733:12;13726:19;;13385:366;;;:::o;13757:::-;13899:3;13920:67;13984:2;13979:3;13920:67;:::i;:::-;13913:74;;13996:93;14085:3;13996:93;:::i;:::-;14114:2;14109:3;14105:12;14098:19;;13757:366;;;:::o;14129:::-;14271:3;14292:67;14356:2;14351:3;14292:67;:::i;:::-;14285:74;;14368:93;14457:3;14368:93;:::i;:::-;14486:2;14481:3;14477:12;14470:19;;14129:366;;;:::o;14501:::-;14643:3;14664:67;14728:2;14723:3;14664:67;:::i;:::-;14657:74;;14740:93;14829:3;14740:93;:::i;:::-;14858:2;14853:3;14849:12;14842:19;;14501:366;;;:::o;14873:::-;15015:3;15036:67;15100:2;15095:3;15036:67;:::i;:::-;15029:74;;15112:93;15201:3;15112:93;:::i;:::-;15230:2;15225:3;15221:12;15214:19;;14873:366;;;:::o;15245:::-;15387:3;15408:67;15472:2;15467:3;15408:67;:::i;:::-;15401:74;;15484:93;15573:3;15484:93;:::i;:::-;15602:2;15597:3;15593:12;15586:19;;15245:366;;;:::o;15617:::-;15759:3;15780:67;15844:2;15839:3;15780:67;:::i;:::-;15773:74;;15856:93;15945:3;15856:93;:::i;:::-;15974:2;15969:3;15965:12;15958:19;;15617:366;;;:::o;15989:::-;16131:3;16152:67;16216:2;16211:3;16152:67;:::i;:::-;16145:74;;16228:93;16317:3;16228:93;:::i;:::-;16346:2;16341:3;16337:12;16330:19;;15989:366;;;:::o;16361:::-;16503:3;16524:67;16588:2;16583:3;16524:67;:::i;:::-;16517:74;;16600:93;16689:3;16600:93;:::i;:::-;16718:2;16713:3;16709:12;16702:19;;16361:366;;;:::o;16733:::-;16875:3;16896:67;16960:2;16955:3;16896:67;:::i;:::-;16889:74;;16972:93;17061:3;16972:93;:::i;:::-;17090:2;17085:3;17081:12;17074:19;;16733:366;;;:::o;17105:::-;17247:3;17268:67;17332:2;17327:3;17268:67;:::i;:::-;17261:74;;17344:93;17433:3;17344:93;:::i;:::-;17462:2;17457:3;17453:12;17446:19;;17105:366;;;:::o;17477:::-;17619:3;17640:67;17704:2;17699:3;17640:67;:::i;:::-;17633:74;;17716:93;17805:3;17716:93;:::i;:::-;17834:2;17829:3;17825:12;17818:19;;17477:366;;;:::o;17849:398::-;18008:3;18029:83;18110:1;18105:3;18029:83;:::i;:::-;18022:90;;18121:93;18210:3;18121:93;:::i;:::-;18239:1;18234:3;18230:11;18223:18;;17849:398;;;:::o;18253:366::-;18395:3;18416:67;18480:2;18475:3;18416:67;:::i;:::-;18409:74;;18492:93;18581:3;18492:93;:::i;:::-;18610:2;18605:3;18601:12;18594:19;;18253:366;;;:::o;18625:::-;18767:3;18788:67;18852:2;18847:3;18788:67;:::i;:::-;18781:74;;18864:93;18953:3;18864:93;:::i;:::-;18982:2;18977:3;18973:12;18966:19;;18625:366;;;:::o;18997:::-;19139:3;19160:67;19224:2;19219:3;19160:67;:::i;:::-;19153:74;;19236:93;19325:3;19236:93;:::i;:::-;19354:2;19349:3;19345:12;19338:19;;18997:366;;;:::o;19369:108::-;19446:24;19464:5;19446:24;:::i;:::-;19441:3;19434:37;19369:108;;:::o;19483:118::-;19570:24;19588:5;19570:24;:::i;:::-;19565:3;19558:37;19483:118;;:::o;19607:589::-;19832:3;19854:95;19945:3;19936:6;19854:95;:::i;:::-;19847:102;;19966:95;20057:3;20048:6;19966:95;:::i;:::-;19959:102;;20078:92;20166:3;20157:6;20078:92;:::i;:::-;20071:99;;20187:3;20180:10;;19607:589;;;;;;:::o;20202:379::-;20386:3;20408:147;20551:3;20408:147;:::i;:::-;20401:154;;20572:3;20565:10;;20202:379;;;:::o;20587:222::-;20680:4;20718:2;20707:9;20703:18;20695:26;;20731:71;20799:1;20788:9;20784:17;20775:6;20731:71;:::i;:::-;20587:222;;;;:::o;20815:640::-;21010:4;21048:3;21037:9;21033:19;21025:27;;21062:71;21130:1;21119:9;21115:17;21106:6;21062:71;:::i;:::-;21143:72;21211:2;21200:9;21196:18;21187:6;21143:72;:::i;:::-;21225;21293:2;21282:9;21278:18;21269:6;21225:72;:::i;:::-;21344:9;21338:4;21334:20;21329:2;21318:9;21314:18;21307:48;21372:76;21443:4;21434:6;21372:76;:::i;:::-;21364:84;;20815:640;;;;;;;:::o;21461:373::-;21604:4;21642:2;21631:9;21627:18;21619:26;;21691:9;21685:4;21681:20;21677:1;21666:9;21662:17;21655:47;21719:108;21822:4;21813:6;21719:108;:::i;:::-;21711:116;;21461:373;;;;:::o;21840:210::-;21927:4;21965:2;21954:9;21950:18;21942:26;;21978:65;22040:1;22029:9;22025:17;22016:6;21978:65;:::i;:::-;21840:210;;;;:::o;22056:313::-;22169:4;22207:2;22196:9;22192:18;22184:26;;22256:9;22250:4;22246:20;22242:1;22231:9;22227:17;22220:47;22284:78;22357:4;22348:6;22284:78;:::i;:::-;22276:86;;22056:313;;;;:::o;22375:419::-;22541:4;22579:2;22568:9;22564:18;22556:26;;22628:9;22622:4;22618:20;22614:1;22603:9;22599:17;22592:47;22656:131;22782:4;22656:131;:::i;:::-;22648:139;;22375:419;;;:::o;22800:::-;22966:4;23004:2;22993:9;22989:18;22981:26;;23053:9;23047:4;23043:20;23039:1;23028:9;23024:17;23017:47;23081:131;23207:4;23081:131;:::i;:::-;23073:139;;22800:419;;;:::o;23225:::-;23391:4;23429:2;23418:9;23414:18;23406:26;;23478:9;23472:4;23468:20;23464:1;23453:9;23449:17;23442:47;23506:131;23632:4;23506:131;:::i;:::-;23498:139;;23225:419;;;:::o;23650:::-;23816:4;23854:2;23843:9;23839:18;23831:26;;23903:9;23897:4;23893:20;23889:1;23878:9;23874:17;23867:47;23931:131;24057:4;23931:131;:::i;:::-;23923:139;;23650:419;;;:::o;24075:::-;24241:4;24279:2;24268:9;24264:18;24256:26;;24328:9;24322:4;24318:20;24314:1;24303:9;24299:17;24292:47;24356:131;24482:4;24356:131;:::i;:::-;24348:139;;24075:419;;;:::o;24500:::-;24666:4;24704:2;24693:9;24689:18;24681:26;;24753:9;24747:4;24743:20;24739:1;24728:9;24724:17;24717:47;24781:131;24907:4;24781:131;:::i;:::-;24773:139;;24500:419;;;:::o;24925:::-;25091:4;25129:2;25118:9;25114:18;25106:26;;25178:9;25172:4;25168:20;25164:1;25153:9;25149:17;25142:47;25206:131;25332:4;25206:131;:::i;:::-;25198:139;;24925:419;;;:::o;25350:::-;25516:4;25554:2;25543:9;25539:18;25531:26;;25603:9;25597:4;25593:20;25589:1;25578:9;25574:17;25567:47;25631:131;25757:4;25631:131;:::i;:::-;25623:139;;25350:419;;;:::o;25775:::-;25941:4;25979:2;25968:9;25964:18;25956:26;;26028:9;26022:4;26018:20;26014:1;26003:9;25999:17;25992:47;26056:131;26182:4;26056:131;:::i;:::-;26048:139;;25775:419;;;:::o;26200:::-;26366:4;26404:2;26393:9;26389:18;26381:26;;26453:9;26447:4;26443:20;26439:1;26428:9;26424:17;26417:47;26481:131;26607:4;26481:131;:::i;:::-;26473:139;;26200:419;;;:::o;26625:::-;26791:4;26829:2;26818:9;26814:18;26806:26;;26878:9;26872:4;26868:20;26864:1;26853:9;26849:17;26842:47;26906:131;27032:4;26906:131;:::i;:::-;26898:139;;26625:419;;;:::o;27050:::-;27216:4;27254:2;27243:9;27239:18;27231:26;;27303:9;27297:4;27293:20;27289:1;27278:9;27274:17;27267:47;27331:131;27457:4;27331:131;:::i;:::-;27323:139;;27050:419;;;:::o;27475:::-;27641:4;27679:2;27668:9;27664:18;27656:26;;27728:9;27722:4;27718:20;27714:1;27703:9;27699:17;27692:47;27756:131;27882:4;27756:131;:::i;:::-;27748:139;;27475:419;;;:::o;27900:::-;28066:4;28104:2;28093:9;28089:18;28081:26;;28153:9;28147:4;28143:20;28139:1;28128:9;28124:17;28117:47;28181:131;28307:4;28181:131;:::i;:::-;28173:139;;27900:419;;;:::o;28325:::-;28491:4;28529:2;28518:9;28514:18;28506:26;;28578:9;28572:4;28568:20;28564:1;28553:9;28549:17;28542:47;28606:131;28732:4;28606:131;:::i;:::-;28598:139;;28325:419;;;:::o;28750:::-;28916:4;28954:2;28943:9;28939:18;28931:26;;29003:9;28997:4;28993:20;28989:1;28978:9;28974:17;28967:47;29031:131;29157:4;29031:131;:::i;:::-;29023:139;;28750:419;;;:::o;29175:::-;29341:4;29379:2;29368:9;29364:18;29356:26;;29428:9;29422:4;29418:20;29414:1;29403:9;29399:17;29392:47;29456:131;29582:4;29456:131;:::i;:::-;29448:139;;29175:419;;;:::o;29600:::-;29766:4;29804:2;29793:9;29789:18;29781:26;;29853:9;29847:4;29843:20;29839:1;29828:9;29824:17;29817:47;29881:131;30007:4;29881:131;:::i;:::-;29873:139;;29600:419;;;:::o;30025:::-;30191:4;30229:2;30218:9;30214:18;30206:26;;30278:9;30272:4;30268:20;30264:1;30253:9;30249:17;30242:47;30306:131;30432:4;30306:131;:::i;:::-;30298:139;;30025:419;;;:::o;30450:::-;30616:4;30654:2;30643:9;30639:18;30631:26;;30703:9;30697:4;30693:20;30689:1;30678:9;30674:17;30667:47;30731:131;30857:4;30731:131;:::i;:::-;30723:139;;30450:419;;;:::o;30875:::-;31041:4;31079:2;31068:9;31064:18;31056:26;;31128:9;31122:4;31118:20;31114:1;31103:9;31099:17;31092:47;31156:131;31282:4;31156:131;:::i;:::-;31148:139;;30875:419;;;:::o;31300:222::-;31393:4;31431:2;31420:9;31416:18;31408:26;;31444:71;31512:1;31501:9;31497:17;31488:6;31444:71;:::i;:::-;31300:222;;;;:::o;31528:129::-;31562:6;31589:20;;:::i;:::-;31579:30;;31618:33;31646:4;31638:6;31618:33;:::i;:::-;31528:129;;;:::o;31663:75::-;31696:6;31729:2;31723:9;31713:19;;31663:75;:::o;31744:307::-;31805:4;31895:18;31887:6;31884:30;31881:56;;;31917:18;;:::i;:::-;31881:56;31955:29;31977:6;31955:29;:::i;:::-;31947:37;;32039:4;32033;32029:15;32021:23;;31744:307;;;:::o;32057:308::-;32119:4;32209:18;32201:6;32198:30;32195:56;;;32231:18;;:::i;:::-;32195:56;32269:29;32291:6;32269:29;:::i;:::-;32261:37;;32353:4;32347;32343:15;32335:23;;32057:308;;;:::o;32371:132::-;32438:4;32461:3;32453:11;;32491:4;32486:3;32482:14;32474:22;;32371:132;;;:::o;32509:141::-;32558:4;32581:3;32573:11;;32604:3;32601:1;32594:14;32638:4;32635:1;32625:18;32617:26;;32509:141;;;:::o;32656:114::-;32723:6;32757:5;32751:12;32741:22;;32656:114;;;:::o;32776:98::-;32827:6;32861:5;32855:12;32845:22;;32776:98;;;:::o;32880:99::-;32932:6;32966:5;32960:12;32950:22;;32880:99;;;:::o;32985:113::-;33055:4;33087;33082:3;33078:14;33070:22;;32985:113;;;:::o;33104:184::-;33203:11;33237:6;33232:3;33225:19;33277:4;33272:3;33268:14;33253:29;;33104:184;;;;:::o;33294:168::-;33377:11;33411:6;33406:3;33399:19;33451:4;33446:3;33442:14;33427:29;;33294:168;;;;:::o;33468:147::-;33569:11;33606:3;33591:18;;33468:147;;;;:::o;33621:169::-;33705:11;33739:6;33734:3;33727:19;33779:4;33774:3;33770:14;33755:29;;33621:169;;;;:::o;33796:148::-;33898:11;33935:3;33920:18;;33796:148;;;;:::o;33950:305::-;33990:3;34009:20;34027:1;34009:20;:::i;:::-;34004:25;;34043:20;34061:1;34043:20;:::i;:::-;34038:25;;34197:1;34129:66;34125:74;34122:1;34119:81;34116:107;;;34203:18;;:::i;:::-;34116:107;34247:1;34244;34240:9;34233:16;;33950:305;;;;:::o;34261:185::-;34301:1;34318:20;34336:1;34318:20;:::i;:::-;34313:25;;34352:20;34370:1;34352:20;:::i;:::-;34347:25;;34391:1;34381:35;;34396:18;;:::i;:::-;34381:35;34438:1;34435;34431:9;34426:14;;34261:185;;;;:::o;34452:348::-;34492:7;34515:20;34533:1;34515:20;:::i;:::-;34510:25;;34549:20;34567:1;34549:20;:::i;:::-;34544:25;;34737:1;34669:66;34665:74;34662:1;34659:81;34654:1;34647:9;34640:17;34636:105;34633:131;;;34744:18;;:::i;:::-;34633:131;34792:1;34789;34785:9;34774:20;;34452:348;;;;:::o;34806:191::-;34846:4;34866:20;34884:1;34866:20;:::i;:::-;34861:25;;34900:20;34918:1;34900:20;:::i;:::-;34895:25;;34939:1;34936;34933:8;34930:34;;;34944:18;;:::i;:::-;34930:34;34989:1;34986;34982:9;34974:17;;34806:191;;;;:::o;35003:96::-;35040:7;35069:24;35087:5;35069:24;:::i;:::-;35058:35;;35003:96;;;:::o;35105:90::-;35139:7;35182:5;35175:13;35168:21;35157:32;;35105:90;;;:::o;35201:149::-;35237:7;35277:66;35270:5;35266:78;35255:89;;35201:149;;;:::o;35356:126::-;35393:7;35433:42;35426:5;35422:54;35411:65;;35356:126;;;:::o;35488:77::-;35525:7;35554:5;35543:16;;35488:77;;;:::o;35571:154::-;35655:6;35650:3;35645;35632:30;35717:1;35708:6;35703:3;35699:16;35692:27;35571:154;;;:::o;35731:307::-;35799:1;35809:113;35823:6;35820:1;35817:13;35809:113;;;35908:1;35903:3;35899:11;35893:18;35889:1;35884:3;35880:11;35873:39;35845:2;35842:1;35838:10;35833:15;;35809:113;;;35940:6;35937:1;35934:13;35931:101;;;36020:1;36011:6;36006:3;36002:16;35995:27;35931:101;35780:258;35731:307;;;:::o;36044:320::-;36088:6;36125:1;36119:4;36115:12;36105:22;;36172:1;36166:4;36162:12;36193:18;36183:81;;36249:4;36241:6;36237:17;36227:27;;36183:81;36311:2;36303:6;36300:14;36280:18;36277:38;36274:84;;;36330:18;;:::i;:::-;36274:84;36095:269;36044:320;;;:::o;36370:281::-;36453:27;36475:4;36453:27;:::i;:::-;36445:6;36441:40;36583:6;36571:10;36568:22;36547:18;36535:10;36532:34;36529:62;36526:88;;;36594:18;;:::i;:::-;36526:88;36634:10;36630:2;36623:22;36413:238;36370:281;;:::o;36657:233::-;36696:3;36719:24;36737:5;36719:24;:::i;:::-;36710:33;;36765:66;36758:5;36755:77;36752:103;;;36835:18;;:::i;:::-;36752:103;36882:1;36875:5;36871:13;36864:20;;36657:233;;;:::o;36896:176::-;36928:1;36945:20;36963:1;36945:20;:::i;:::-;36940:25;;36979:20;36997:1;36979:20;:::i;:::-;36974:25;;37018:1;37008:35;;37023:18;;:::i;:::-;37008:35;37064:1;37061;37057:9;37052:14;;36896:176;;;;:::o;37078:180::-;37126:77;37123:1;37116:88;37223:4;37220:1;37213:15;37247:4;37244:1;37237:15;37264:180;37312:77;37309:1;37302:88;37409:4;37406:1;37399:15;37433:4;37430:1;37423:15;37450:180;37498:77;37495:1;37488:88;37595:4;37592:1;37585:15;37619:4;37616:1;37609:15;37636:180;37684:77;37681:1;37674:88;37781:4;37778:1;37771:15;37805:4;37802:1;37795:15;37822:180;37870:77;37867:1;37860:88;37967:4;37964:1;37957:15;37991:4;37988:1;37981:15;38008:117;38117:1;38114;38107:12;38131:117;38240:1;38237;38230:12;38254:117;38363:1;38360;38353:12;38377:117;38486:1;38483;38476:12;38500:102;38541:6;38592:2;38588:7;38583:2;38576:5;38572:14;38568:28;38558:38;;38500:102;;;:::o;38608:237::-;38748:34;38744:1;38736:6;38732:14;38725:58;38817:20;38812:2;38804:6;38800:15;38793:45;38608:237;:::o;38851:225::-;38991:34;38987:1;38979:6;38975:14;38968:58;39060:8;39055:2;39047:6;39043:15;39036:33;38851:225;:::o;39082:170::-;39222:22;39218:1;39210:6;39206:14;39199:46;39082:170;:::o;39258:224::-;39398:34;39394:1;39386:6;39382:14;39375:58;39467:7;39462:2;39454:6;39450:15;39443:32;39258:224;:::o;39488:178::-;39628:30;39624:1;39616:6;39612:14;39605:54;39488:178;:::o;39672:170::-;39812:22;39808:1;39800:6;39796:14;39789:46;39672:170;:::o;39848:223::-;39988:34;39984:1;39976:6;39972:14;39965:58;40057:6;40052:2;40044:6;40040:15;40033:31;39848:223;:::o;40077:175::-;40217:27;40213:1;40205:6;40201:14;40194:51;40077:175;:::o;40258:231::-;40398:34;40394:1;40386:6;40382:14;40375:58;40467:14;40462:2;40454:6;40450:15;40443:39;40258:231;:::o;40495:243::-;40635:34;40631:1;40623:6;40619:14;40612:58;40704:26;40699:2;40691:6;40687:15;40680:51;40495:243;:::o;40744:229::-;40884:34;40880:1;40872:6;40868:14;40861:58;40953:12;40948:2;40940:6;40936:15;40929:37;40744:229;:::o;40979:228::-;41119:34;41115:1;41107:6;41103:14;41096:58;41188:11;41183:2;41175:6;41171:15;41164:36;40979:228;:::o;41213:182::-;41353:34;41349:1;41341:6;41337:14;41330:58;41213:182;:::o;41401:231::-;41541:34;41537:1;41529:6;41525:14;41518:58;41610:14;41605:2;41597:6;41593:15;41586:39;41401:231;:::o;41638:182::-;41778:34;41774:1;41766:6;41762:14;41755:58;41638:182;:::o;41826:173::-;41966:25;41962:1;41954:6;41950:14;41943:49;41826:173;:::o;42005:234::-;42145:34;42141:1;42133:6;42129:14;42122:58;42214:17;42209:2;42201:6;42197:15;42190:42;42005:234;:::o;42245:220::-;42385:34;42381:1;42373:6;42369:14;42362:58;42454:3;42449:2;42441:6;42437:15;42430:28;42245:220;:::o;42471:114::-;;:::o;42591:170::-;42731:22;42727:1;42719:6;42715:14;42708:46;42591:170;:::o;42767:236::-;42907:34;42903:1;42895:6;42891:14;42884:58;42976:19;42971:2;42963:6;42959:15;42952:44;42767:236;:::o;43009:169::-;43149:21;43145:1;43137:6;43133:14;43126:45;43009:169;:::o;43184:122::-;43257:24;43275:5;43257:24;:::i;:::-;43250:5;43247:35;43237:63;;43296:1;43293;43286:12;43237:63;43184:122;:::o;43312:116::-;43382:21;43397:5;43382:21;:::i;:::-;43375:5;43372:32;43362:60;;43418:1;43415;43408:12;43362:60;43312:116;:::o;43434:120::-;43506:23;43523:5;43506:23;:::i;:::-;43499:5;43496:34;43486:62;;43544:1;43541;43534:12;43486:62;43434:120;:::o;43560:122::-;43633:24;43651:5;43633:24;:::i;:::-;43626:5;43623:35;43613:63;;43672:1;43669;43662:12;43613:63;43560:122;:::o

Swarm Source

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