ETH Price: $3,394.21 (-1.40%)
Gas: 2 Gwei

Token

littlefrens (LFRENS)
 

Overview

Max Total Supply

4,000 LFRENS

Holders

1,350

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
itztenzy.eth
Balance
4 LFRENS
0x04028198E451f64212c33CA22cB3b1FbA6272459
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:
littlefrens

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

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 v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


// OpenZeppelin Contracts v4.4.1 (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(), ".json")) : "";
    }

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev 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 {}
}

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);
}

contract littlefrens is ERC721, Ownable, IERC721Enumerable {

    mapping (address => bool) public _whitelisted;
    mapping (address => uint) public _minted;

    uint public salePrice;
    uint public whitelistPrice;
    uint public maxSupply;
    uint public maxPerTx;
    uint public maxPerWallet;
    uint public counter = 1;

    bool public publicMintStatus;

    string public baseURI;

    function _baseURI() internal view override returns (string memory) {
        return baseURI;
    }
    
    function setBaseURI(string memory _newBaseURI) external onlyOwner {
        baseURI = _newBaseURI;
    }

    function setSalePrice(uint price) external onlyOwner {
        salePrice = price;
    }

    function setWhitelistPrice(uint price) external onlyOwner {
        whitelistPrice = price;
    }

    function setMaxSupply(uint supply) external onlyOwner {
        maxSupply = supply;
    }

    function addToWhitelist(address[] memory whitelisted) external onlyOwner {
        for(uint i=0; i < whitelisted.length; i++){
            _whitelisted[whitelisted[i]] = !_whitelisted[whitelisted[i]];
        }
    }

    function setMaxPerTx(uint max) external onlyOwner {
        maxPerTx = max;
    }

    function setMaxPerWallet(uint max) external onlyOwner {
        maxPerWallet = max;
    }

    function setPublicMintStatus() external onlyOwner {
        publicMintStatus = !publicMintStatus;
    }

    function totalSupply() public view virtual override returns(uint) {
        return counter - 1;
    }

    function withdraw() external onlyOwner {
        payable(msg.sender).transfer(address(this).balance);
    }

    constructor() ERC721("littlefrens", "LFRENS") {}

    function publicMint(uint amount) external payable {
        require(publicMintStatus, "Sale not active!");
        require(counter + amount <= maxSupply + 1, "Not enough tokens to sell!");
        require(amount <= maxPerTx, "Incorrect amount!");
        require(_minted[msg.sender] + amount <= maxPerWallet, "Incorrect amount!");
        if(_whitelisted[msg.sender]){
            require(msg.value == whitelistPrice * amount, "Incorrect amount!");
            for(uint i=0; i < amount; i++){
                _safeMint(msg.sender, counter++);
                _minted[msg.sender]++;
            }
        }else{
            require(msg.value == salePrice * amount, "Incorrect amount!");
            for(uint i=0; i < amount; i++){
                _safeMint(msg.sender, counter++);
                _minted[msg.sender]++;
            }
        }
    }
}

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":"_minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_whitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"whitelisted","type":"address[]"}],"name":"addToWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"counter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicMintStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"salePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"max","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"max","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"supply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPublicMintStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setWhitelistPrice","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":"whitelistPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526001600e553480156200001657600080fd5b506040518060400160405280600b81526020017f6c6974746c656672656e730000000000000000000000000000000000000000008152506040518060400160405280600681526020017f4c4652454e53000000000000000000000000000000000000000000000000000081525081600090805190602001906200009b929190620001ab565b508060019080519060200190620000b4929190620001ab565b505050620000d7620000cb620000dd60201b60201c565b620000e560201b60201c565b620002c0565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001b9906200025b565b90600052602060002090601f016020900481019282620001dd576000855562000229565b82601f10620001f857805160ff191683800117855562000229565b8280016001018555821562000229579182015b82811115620002285782518255916020019190600101906200020b565b5b5090506200023891906200023c565b5090565b5b80821115620002575760008160009055506001016200023d565b5090565b600060028204905060018216806200027457607f821691505b602082108114156200028b576200028a62000291565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613eeb80620002d06000396000f3fe60806040526004361061021a5760003560e01c806370a0823111610123578063c219c2ef116100ab578063e985e9c51161006f578063e985e9c51461079a578063f2fde38b146107d7578063f51f96dd14610800578063f968adbe1461082b578063fc1a1c36146108565761021a565b8063c219c2ef146106c9578063c6f6f216146106e0578063c87b56dd14610709578063d5abeb0114610746578063e268e4d3146107715761021a565b80637f649783116100f25780637f649783146105f85780638da5cb5b1461062157806395d89b411461064c578063a22cb46514610677578063b88d4fde146106a05761021a565b806370a082311461053e578063715018a61461057b578063717d57d3146105925780637de77ecc146105bb5761021a565b80632db11544116101a657806355f804b31161017557806355f804b31461045957806361bc221a146104825780636352211e146104ad5780636c0360eb146104ea5780636f8b44b0146105155761021a565b80632db11544146103d25780633ccfd60b146103ee57806342842e0e14610405578063453c23101461042e5761021a565b8063095ea7b3116101ed578063095ea7b31461030157806318160ddd1461032a5780631919fed71461035557806323b872dd1461037e57806326202370146103a75761021a565b806301c4b3161461021f57806301ffc9a71461025c57806306fdde0314610299578063081812fc146102c4575b600080fd5b34801561022b57600080fd5b5061024660048036038101906102419190612c8b565b610881565b604051610253919061375d565b60405180910390f35b34801561026857600080fd5b50610283600480360381019061027e9190612e73565b6108a1565b604051610290919061375d565b60405180910390f35b3480156102a557600080fd5b506102ae610983565b6040516102bb9190613778565b60405180910390f35b3480156102d057600080fd5b506102eb60048036038101906102e69190612f06565b610a15565b6040516102f891906136f6565b60405180910390f35b34801561030d57600080fd5b5061032860048036038101906103239190612df6565b610a9a565b005b34801561033657600080fd5b5061033f610bb2565b60405161034c91906139fa565b60405180910390f35b34801561036157600080fd5b5061037c60048036038101906103779190612f06565b610bc8565b005b34801561038a57600080fd5b506103a560048036038101906103a09190612cf0565b610c4e565b005b3480156103b357600080fd5b506103bc610cae565b6040516103c9919061375d565b60405180910390f35b6103ec60048036038101906103e79190612f06565b610cc1565b005b3480156103fa57600080fd5b50610403611063565b005b34801561041157600080fd5b5061042c60048036038101906104279190612cf0565b611128565b005b34801561043a57600080fd5b50610443611148565b60405161045091906139fa565b60405180910390f35b34801561046557600080fd5b50610480600480360381019061047b9190612ec5565b61114e565b005b34801561048e57600080fd5b506104976111e4565b6040516104a491906139fa565b60405180910390f35b3480156104b957600080fd5b506104d460048036038101906104cf9190612f06565b6111ea565b6040516104e191906136f6565b60405180910390f35b3480156104f657600080fd5b506104ff61129c565b60405161050c9190613778565b60405180910390f35b34801561052157600080fd5b5061053c60048036038101906105379190612f06565b61132a565b005b34801561054a57600080fd5b5061056560048036038101906105609190612c8b565b6113b0565b60405161057291906139fa565b60405180910390f35b34801561058757600080fd5b50610590611468565b005b34801561059e57600080fd5b506105b960048036038101906105b49190612f06565b6114f0565b005b3480156105c757600080fd5b506105e260048036038101906105dd9190612c8b565b611576565b6040516105ef91906139fa565b60405180910390f35b34801561060457600080fd5b5061061f600480360381019061061a9190612e32565b61158e565b005b34801561062d57600080fd5b50610636611751565b60405161064391906136f6565b60405180910390f35b34801561065857600080fd5b5061066161177b565b60405161066e9190613778565b60405180910390f35b34801561068357600080fd5b5061069e60048036038101906106999190612dba565b61180d565b005b3480156106ac57600080fd5b506106c760048036038101906106c29190612d3f565b611823565b005b3480156106d557600080fd5b506106de611885565b005b3480156106ec57600080fd5b5061070760048036038101906107029190612f06565b61192d565b005b34801561071557600080fd5b50610730600480360381019061072b9190612f06565b6119b3565b60405161073d9190613778565b60405180910390f35b34801561075257600080fd5b5061075b611a5a565b60405161076891906139fa565b60405180910390f35b34801561077d57600080fd5b5061079860048036038101906107939190612f06565b611a60565b005b3480156107a657600080fd5b506107c160048036038101906107bc9190612cb4565b611ae6565b6040516107ce919061375d565b60405180910390f35b3480156107e357600080fd5b506107fe60048036038101906107f99190612c8b565b611b7a565b005b34801561080c57600080fd5b50610815611c72565b60405161082291906139fa565b60405180910390f35b34801561083757600080fd5b50610840611c78565b60405161084d91906139fa565b60405180910390f35b34801561086257600080fd5b5061086b611c7e565b60405161087891906139fa565b60405180910390f35b60076020528060005260406000206000915054906101000a900460ff1681565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061096c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061097c575061097b82611c84565b5b9050919050565b60606000805461099290613ce0565b80601f01602080910402602001604051908101604052809291908181526020018280546109be90613ce0565b8015610a0b5780601f106109e057610100808354040283529160200191610a0b565b820191906000526020600020905b8154815290600101906020018083116109ee57829003601f168201915b5050505050905090565b6000610a2082611cee565b610a5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a569061393a565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610aa5826111ea565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0d906139ba565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b35611d5a565b73ffffffffffffffffffffffffffffffffffffffff161480610b645750610b6381610b5e611d5a565b611ae6565b5b610ba3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9a906138ba565b60405180910390fd5b610bad8383611d62565b505050565b60006001600e54610bc39190613bf6565b905090565b610bd0611d5a565b73ffffffffffffffffffffffffffffffffffffffff16610bee611751565b73ffffffffffffffffffffffffffffffffffffffff1614610c44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3b9061395a565b60405180910390fd5b8060098190555050565b610c5f610c59611d5a565b82611e1b565b610c9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c95906139da565b60405180910390fd5b610ca9838383611ef9565b505050565b600f60009054906101000a900460ff1681565b600f60009054906101000a900460ff16610d10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d079061387a565b60405180910390fd5b6001600b54610d1f9190613b15565b81600e54610d2d9190613b15565b1115610d6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d65906137fa565b60405180910390fd5b600c54811115610db3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610daa9061385a565b60405180910390fd5b600d5481600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e019190613b15565b1115610e42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e399061385a565b60405180910390fd5b600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610f7c5780600a54610ea29190613b9c565b3414610ee3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eda9061385a565b60405180910390fd5b60005b81811015610f7657610f0e33600e6000815480929190610f0590613d12565b91905055612155565b600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190610f5e90613d12565b91905055508080610f6e90613d12565b915050610ee6565b50611060565b80600954610f8a9190613b9c565b3414610fcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc29061385a565b60405180910390fd5b60005b8181101561105e57610ff633600e6000815480929190610fed90613d12565b91905055612155565b600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919061104690613d12565b9190505550808061105690613d12565b915050610fce565b505b50565b61106b611d5a565b73ffffffffffffffffffffffffffffffffffffffff16611089611751565b73ffffffffffffffffffffffffffffffffffffffff16146110df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d69061395a565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611125573d6000803e3d6000fd5b50565b61114383838360405180602001604052806000815250611823565b505050565b600d5481565b611156611d5a565b73ffffffffffffffffffffffffffffffffffffffff16611174611751565b73ffffffffffffffffffffffffffffffffffffffff16146111ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c19061395a565b60405180910390fd5b80601090805190602001906111e0929190612a19565b5050565b600e5481565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611293576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128a906138fa565b60405180910390fd5b80915050919050565b601080546112a990613ce0565b80601f01602080910402602001604051908101604052809291908181526020018280546112d590613ce0565b80156113225780601f106112f757610100808354040283529160200191611322565b820191906000526020600020905b81548152906001019060200180831161130557829003601f168201915b505050505081565b611332611d5a565b73ffffffffffffffffffffffffffffffffffffffff16611350611751565b73ffffffffffffffffffffffffffffffffffffffff16146113a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139d9061395a565b60405180910390fd5b80600b8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611421576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611418906138da565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611470611d5a565b73ffffffffffffffffffffffffffffffffffffffff1661148e611751565b73ffffffffffffffffffffffffffffffffffffffff16146114e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114db9061395a565b60405180910390fd5b6114ee6000612173565b565b6114f8611d5a565b73ffffffffffffffffffffffffffffffffffffffff16611516611751565b73ffffffffffffffffffffffffffffffffffffffff161461156c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115639061395a565b60405180910390fd5b80600a8190555050565b60086020528060005260406000206000915090505481565b611596611d5a565b73ffffffffffffffffffffffffffffffffffffffff166115b4611751565b73ffffffffffffffffffffffffffffffffffffffff161461160a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116019061395a565b60405180910390fd5b60005b815181101561174d5760076000838381518110611653577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615600760008484815181106116e1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061174590613d12565b91505061160d565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461178a90613ce0565b80601f01602080910402602001604051908101604052809291908181526020018280546117b690613ce0565b80156118035780601f106117d857610100808354040283529160200191611803565b820191906000526020600020905b8154815290600101906020018083116117e657829003601f168201915b5050505050905090565b61181f611818611d5a565b8383612239565b5050565b61183461182e611d5a565b83611e1b565b611873576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186a906139da565b60405180910390fd5b61187f848484846123a6565b50505050565b61188d611d5a565b73ffffffffffffffffffffffffffffffffffffffff166118ab611751565b73ffffffffffffffffffffffffffffffffffffffff1614611901576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f89061395a565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b611935611d5a565b73ffffffffffffffffffffffffffffffffffffffff16611953611751565b73ffffffffffffffffffffffffffffffffffffffff16146119a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a09061395a565b60405180910390fd5b80600c8190555050565b60606119be82611cee565b6119fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f49061399a565b60405180910390fd5b6000611a07612402565b90506000815111611a275760405180602001604052806000815250611a52565b80611a3184612494565b604051602001611a429291906136c7565b6040516020818303038152906040525b915050919050565b600b5481565b611a68611d5a565b73ffffffffffffffffffffffffffffffffffffffff16611a86611751565b73ffffffffffffffffffffffffffffffffffffffff1614611adc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad39061395a565b60405180910390fd5b80600d8190555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611b82611d5a565b73ffffffffffffffffffffffffffffffffffffffff16611ba0611751565b73ffffffffffffffffffffffffffffffffffffffff1614611bf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bed9061395a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5d906137ba565b60405180910390fd5b611c6f81612173565b50565b60095481565b600c5481565b600a5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611dd5836111ea565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611e2682611cee565b611e65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5c9061389a565b60405180910390fd5b6000611e70836111ea565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611edf57508373ffffffffffffffffffffffffffffffffffffffff16611ec784610a15565b73ffffffffffffffffffffffffffffffffffffffff16145b80611ef05750611eef8185611ae6565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611f19826111ea565b73ffffffffffffffffffffffffffffffffffffffff1614611f6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f669061397a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd69061381a565b60405180910390fd5b611fea838383612641565b611ff5600082611d62565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120459190613bf6565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461209c9190613b15565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61216f828260405180602001604052806000815250612646565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156122a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229f9061383a565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612399919061375d565b60405180910390a3505050565b6123b1848484611ef9565b6123bd848484846126a1565b6123fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f39061379a565b60405180910390fd5b50505050565b60606010805461241190613ce0565b80601f016020809104026020016040519081016040528092919081815260200182805461243d90613ce0565b801561248a5780601f1061245f5761010080835404028352916020019161248a565b820191906000526020600020905b81548152906001019060200180831161246d57829003601f168201915b5050505050905090565b606060008214156124dc576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061263c565b600082905060005b6000821461250e5780806124f790613d12565b915050600a826125079190613b6b565b91506124e4565b60008167ffffffffffffffff811115612550577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156125825781602001600182028036833780820191505090505b5090505b600085146126355760018261259b9190613bf6565b9150600a856125aa9190613d5b565b60306125b69190613b15565b60f81b8183815181106125f2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561262e9190613b6b565b9450612586565b8093505050505b919050565b505050565b6126508383612838565b61265d60008484846126a1565b61269c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126939061379a565b60405180910390fd5b505050565b60006126c28473ffffffffffffffffffffffffffffffffffffffff16612a06565b1561282b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026126eb611d5a565b8786866040518563ffffffff1660e01b815260040161270d9493929190613711565b602060405180830381600087803b15801561272757600080fd5b505af192505050801561275857506040513d601f19601f820116820180604052508101906127559190612e9c565b60015b6127db573d8060008114612788576040519150601f19603f3d011682016040523d82523d6000602084013e61278d565b606091505b506000815114156127d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ca9061379a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612830565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161289f9061391a565b60405180910390fd5b6128b181611cee565b156128f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e8906137da565b60405180910390fd5b6128fd60008383612641565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461294d9190613b15565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612a2590613ce0565b90600052602060002090601f016020900481019282612a475760008555612a8e565b82601f10612a6057805160ff1916838001178555612a8e565b82800160010185558215612a8e579182015b82811115612a8d578251825591602001919060010190612a72565b5b509050612a9b9190612a9f565b5090565b5b80821115612ab8576000816000905550600101612aa0565b5090565b6000612acf612aca84613a46565b613a15565b90508083825260208201905082856020860282011115612aee57600080fd5b60005b85811015612b1e5781612b048882612ba4565b845260208401935060208301925050600181019050612af1565b5050509392505050565b6000612b3b612b3684613a72565b613a15565b905082815260208101848484011115612b5357600080fd5b612b5e848285613c9e565b509392505050565b6000612b79612b7484613aa2565b613a15565b905082815260208101848484011115612b9157600080fd5b612b9c848285613c9e565b509392505050565b600081359050612bb381613e59565b92915050565b600082601f830112612bca57600080fd5b8135612bda848260208601612abc565b91505092915050565b600081359050612bf281613e70565b92915050565b600081359050612c0781613e87565b92915050565b600081519050612c1c81613e87565b92915050565b600082601f830112612c3357600080fd5b8135612c43848260208601612b28565b91505092915050565b600082601f830112612c5d57600080fd5b8135612c6d848260208601612b66565b91505092915050565b600081359050612c8581613e9e565b92915050565b600060208284031215612c9d57600080fd5b6000612cab84828501612ba4565b91505092915050565b60008060408385031215612cc757600080fd5b6000612cd585828601612ba4565b9250506020612ce685828601612ba4565b9150509250929050565b600080600060608486031215612d0557600080fd5b6000612d1386828701612ba4565b9350506020612d2486828701612ba4565b9250506040612d3586828701612c76565b9150509250925092565b60008060008060808587031215612d5557600080fd5b6000612d6387828801612ba4565b9450506020612d7487828801612ba4565b9350506040612d8587828801612c76565b925050606085013567ffffffffffffffff811115612da257600080fd5b612dae87828801612c22565b91505092959194509250565b60008060408385031215612dcd57600080fd5b6000612ddb85828601612ba4565b9250506020612dec85828601612be3565b9150509250929050565b60008060408385031215612e0957600080fd5b6000612e1785828601612ba4565b9250506020612e2885828601612c76565b9150509250929050565b600060208284031215612e4457600080fd5b600082013567ffffffffffffffff811115612e5e57600080fd5b612e6a84828501612bb9565b91505092915050565b600060208284031215612e8557600080fd5b6000612e9384828501612bf8565b91505092915050565b600060208284031215612eae57600080fd5b6000612ebc84828501612c0d565b91505092915050565b600060208284031215612ed757600080fd5b600082013567ffffffffffffffff811115612ef157600080fd5b612efd84828501612c4c565b91505092915050565b600060208284031215612f1857600080fd5b6000612f2684828501612c76565b91505092915050565b612f3881613c2a565b82525050565b612f4781613c3c565b82525050565b6000612f5882613ad2565b612f628185613ae8565b9350612f72818560208601613cad565b612f7b81613e48565b840191505092915050565b6000612f9182613add565b612f9b8185613af9565b9350612fab818560208601613cad565b612fb481613e48565b840191505092915050565b6000612fca82613add565b612fd48185613b0a565b9350612fe4818560208601613cad565b80840191505092915050565b6000612ffd603283613af9565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000613063602683613af9565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006130c9601c83613af9565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613109601a83613af9565b91507f4e6f7420656e6f75676820746f6b656e7320746f2073656c6c210000000000006000830152602082019050919050565b6000613149602483613af9565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006131af601983613af9565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b60006131ef601183613af9565b91507f496e636f727265637420616d6f756e74210000000000000000000000000000006000830152602082019050919050565b600061322f601083613af9565b91507f53616c65206e6f742061637469766521000000000000000000000000000000006000830152602082019050919050565b600061326f602c83613af9565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006132d5603883613af9565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b600061333b602a83613af9565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b60006133a1602983613af9565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613407602083613af9565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613447602c83613af9565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006134ad600583613b0a565b91507f2e6a736f6e0000000000000000000000000000000000000000000000000000006000830152600582019050919050565b60006134ed602083613af9565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600061352d602983613af9565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613593602f83613af9565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b60006135f9602183613af9565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061365f603183613af9565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6136c181613c94565b82525050565b60006136d38285612fbf565b91506136df8284612fbf565b91506136ea826134a0565b91508190509392505050565b600060208201905061370b6000830184612f2f565b92915050565b60006080820190506137266000830187612f2f565b6137336020830186612f2f565b61374060408301856136b8565b81810360608301526137528184612f4d565b905095945050505050565b60006020820190506137726000830184612f3e565b92915050565b600060208201905081810360008301526137928184612f86565b905092915050565b600060208201905081810360008301526137b381612ff0565b9050919050565b600060208201905081810360008301526137d381613056565b9050919050565b600060208201905081810360008301526137f3816130bc565b9050919050565b60006020820190508181036000830152613813816130fc565b9050919050565b600060208201905081810360008301526138338161313c565b9050919050565b60006020820190508181036000830152613853816131a2565b9050919050565b60006020820190508181036000830152613873816131e2565b9050919050565b6000602082019050818103600083015261389381613222565b9050919050565b600060208201905081810360008301526138b381613262565b9050919050565b600060208201905081810360008301526138d3816132c8565b9050919050565b600060208201905081810360008301526138f38161332e565b9050919050565b6000602082019050818103600083015261391381613394565b9050919050565b60006020820190508181036000830152613933816133fa565b9050919050565b600060208201905081810360008301526139538161343a565b9050919050565b60006020820190508181036000830152613973816134e0565b9050919050565b6000602082019050818103600083015261399381613520565b9050919050565b600060208201905081810360008301526139b381613586565b9050919050565b600060208201905081810360008301526139d3816135ec565b9050919050565b600060208201905081810360008301526139f381613652565b9050919050565b6000602082019050613a0f60008301846136b8565b92915050565b6000604051905081810181811067ffffffffffffffff82111715613a3c57613a3b613e19565b5b8060405250919050565b600067ffffffffffffffff821115613a6157613a60613e19565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613a8d57613a8c613e19565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115613abd57613abc613e19565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613b2082613c94565b9150613b2b83613c94565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613b6057613b5f613d8c565b5b828201905092915050565b6000613b7682613c94565b9150613b8183613c94565b925082613b9157613b90613dbb565b5b828204905092915050565b6000613ba782613c94565b9150613bb283613c94565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613beb57613bea613d8c565b5b828202905092915050565b6000613c0182613c94565b9150613c0c83613c94565b925082821015613c1f57613c1e613d8c565b5b828203905092915050565b6000613c3582613c74565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613ccb578082015181840152602081019050613cb0565b83811115613cda576000848401525b50505050565b60006002820490506001821680613cf857607f821691505b60208210811415613d0c57613d0b613dea565b5b50919050565b6000613d1d82613c94565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613d5057613d4f613d8c565b5b600182019050919050565b6000613d6682613c94565b9150613d7183613c94565b925082613d8157613d80613dbb565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b613e6281613c2a565b8114613e6d57600080fd5b50565b613e7981613c3c565b8114613e8457600080fd5b50565b613e9081613c48565b8114613e9b57600080fd5b50565b613ea781613c94565b8114613eb257600080fd5b5056fea26469706673582212200a99fea964f1269ba1eacd9d619310520c5e22b309c7ce03b3c1ed41c2f06e7364736f6c63430008000033

Deployed Bytecode

0x60806040526004361061021a5760003560e01c806370a0823111610123578063c219c2ef116100ab578063e985e9c51161006f578063e985e9c51461079a578063f2fde38b146107d7578063f51f96dd14610800578063f968adbe1461082b578063fc1a1c36146108565761021a565b8063c219c2ef146106c9578063c6f6f216146106e0578063c87b56dd14610709578063d5abeb0114610746578063e268e4d3146107715761021a565b80637f649783116100f25780637f649783146105f85780638da5cb5b1461062157806395d89b411461064c578063a22cb46514610677578063b88d4fde146106a05761021a565b806370a082311461053e578063715018a61461057b578063717d57d3146105925780637de77ecc146105bb5761021a565b80632db11544116101a657806355f804b31161017557806355f804b31461045957806361bc221a146104825780636352211e146104ad5780636c0360eb146104ea5780636f8b44b0146105155761021a565b80632db11544146103d25780633ccfd60b146103ee57806342842e0e14610405578063453c23101461042e5761021a565b8063095ea7b3116101ed578063095ea7b31461030157806318160ddd1461032a5780631919fed71461035557806323b872dd1461037e57806326202370146103a75761021a565b806301c4b3161461021f57806301ffc9a71461025c57806306fdde0314610299578063081812fc146102c4575b600080fd5b34801561022b57600080fd5b5061024660048036038101906102419190612c8b565b610881565b604051610253919061375d565b60405180910390f35b34801561026857600080fd5b50610283600480360381019061027e9190612e73565b6108a1565b604051610290919061375d565b60405180910390f35b3480156102a557600080fd5b506102ae610983565b6040516102bb9190613778565b60405180910390f35b3480156102d057600080fd5b506102eb60048036038101906102e69190612f06565b610a15565b6040516102f891906136f6565b60405180910390f35b34801561030d57600080fd5b5061032860048036038101906103239190612df6565b610a9a565b005b34801561033657600080fd5b5061033f610bb2565b60405161034c91906139fa565b60405180910390f35b34801561036157600080fd5b5061037c60048036038101906103779190612f06565b610bc8565b005b34801561038a57600080fd5b506103a560048036038101906103a09190612cf0565b610c4e565b005b3480156103b357600080fd5b506103bc610cae565b6040516103c9919061375d565b60405180910390f35b6103ec60048036038101906103e79190612f06565b610cc1565b005b3480156103fa57600080fd5b50610403611063565b005b34801561041157600080fd5b5061042c60048036038101906104279190612cf0565b611128565b005b34801561043a57600080fd5b50610443611148565b60405161045091906139fa565b60405180910390f35b34801561046557600080fd5b50610480600480360381019061047b9190612ec5565b61114e565b005b34801561048e57600080fd5b506104976111e4565b6040516104a491906139fa565b60405180910390f35b3480156104b957600080fd5b506104d460048036038101906104cf9190612f06565b6111ea565b6040516104e191906136f6565b60405180910390f35b3480156104f657600080fd5b506104ff61129c565b60405161050c9190613778565b60405180910390f35b34801561052157600080fd5b5061053c60048036038101906105379190612f06565b61132a565b005b34801561054a57600080fd5b5061056560048036038101906105609190612c8b565b6113b0565b60405161057291906139fa565b60405180910390f35b34801561058757600080fd5b50610590611468565b005b34801561059e57600080fd5b506105b960048036038101906105b49190612f06565b6114f0565b005b3480156105c757600080fd5b506105e260048036038101906105dd9190612c8b565b611576565b6040516105ef91906139fa565b60405180910390f35b34801561060457600080fd5b5061061f600480360381019061061a9190612e32565b61158e565b005b34801561062d57600080fd5b50610636611751565b60405161064391906136f6565b60405180910390f35b34801561065857600080fd5b5061066161177b565b60405161066e9190613778565b60405180910390f35b34801561068357600080fd5b5061069e60048036038101906106999190612dba565b61180d565b005b3480156106ac57600080fd5b506106c760048036038101906106c29190612d3f565b611823565b005b3480156106d557600080fd5b506106de611885565b005b3480156106ec57600080fd5b5061070760048036038101906107029190612f06565b61192d565b005b34801561071557600080fd5b50610730600480360381019061072b9190612f06565b6119b3565b60405161073d9190613778565b60405180910390f35b34801561075257600080fd5b5061075b611a5a565b60405161076891906139fa565b60405180910390f35b34801561077d57600080fd5b5061079860048036038101906107939190612f06565b611a60565b005b3480156107a657600080fd5b506107c160048036038101906107bc9190612cb4565b611ae6565b6040516107ce919061375d565b60405180910390f35b3480156107e357600080fd5b506107fe60048036038101906107f99190612c8b565b611b7a565b005b34801561080c57600080fd5b50610815611c72565b60405161082291906139fa565b60405180910390f35b34801561083757600080fd5b50610840611c78565b60405161084d91906139fa565b60405180910390f35b34801561086257600080fd5b5061086b611c7e565b60405161087891906139fa565b60405180910390f35b60076020528060005260406000206000915054906101000a900460ff1681565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061096c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061097c575061097b82611c84565b5b9050919050565b60606000805461099290613ce0565b80601f01602080910402602001604051908101604052809291908181526020018280546109be90613ce0565b8015610a0b5780601f106109e057610100808354040283529160200191610a0b565b820191906000526020600020905b8154815290600101906020018083116109ee57829003601f168201915b5050505050905090565b6000610a2082611cee565b610a5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a569061393a565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610aa5826111ea565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0d906139ba565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b35611d5a565b73ffffffffffffffffffffffffffffffffffffffff161480610b645750610b6381610b5e611d5a565b611ae6565b5b610ba3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9a906138ba565b60405180910390fd5b610bad8383611d62565b505050565b60006001600e54610bc39190613bf6565b905090565b610bd0611d5a565b73ffffffffffffffffffffffffffffffffffffffff16610bee611751565b73ffffffffffffffffffffffffffffffffffffffff1614610c44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3b9061395a565b60405180910390fd5b8060098190555050565b610c5f610c59611d5a565b82611e1b565b610c9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c95906139da565b60405180910390fd5b610ca9838383611ef9565b505050565b600f60009054906101000a900460ff1681565b600f60009054906101000a900460ff16610d10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d079061387a565b60405180910390fd5b6001600b54610d1f9190613b15565b81600e54610d2d9190613b15565b1115610d6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d65906137fa565b60405180910390fd5b600c54811115610db3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610daa9061385a565b60405180910390fd5b600d5481600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e019190613b15565b1115610e42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e399061385a565b60405180910390fd5b600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610f7c5780600a54610ea29190613b9c565b3414610ee3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eda9061385a565b60405180910390fd5b60005b81811015610f7657610f0e33600e6000815480929190610f0590613d12565b91905055612155565b600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190610f5e90613d12565b91905055508080610f6e90613d12565b915050610ee6565b50611060565b80600954610f8a9190613b9c565b3414610fcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc29061385a565b60405180910390fd5b60005b8181101561105e57610ff633600e6000815480929190610fed90613d12565b91905055612155565b600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919061104690613d12565b9190505550808061105690613d12565b915050610fce565b505b50565b61106b611d5a565b73ffffffffffffffffffffffffffffffffffffffff16611089611751565b73ffffffffffffffffffffffffffffffffffffffff16146110df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d69061395a565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611125573d6000803e3d6000fd5b50565b61114383838360405180602001604052806000815250611823565b505050565b600d5481565b611156611d5a565b73ffffffffffffffffffffffffffffffffffffffff16611174611751565b73ffffffffffffffffffffffffffffffffffffffff16146111ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c19061395a565b60405180910390fd5b80601090805190602001906111e0929190612a19565b5050565b600e5481565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611293576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128a906138fa565b60405180910390fd5b80915050919050565b601080546112a990613ce0565b80601f01602080910402602001604051908101604052809291908181526020018280546112d590613ce0565b80156113225780601f106112f757610100808354040283529160200191611322565b820191906000526020600020905b81548152906001019060200180831161130557829003601f168201915b505050505081565b611332611d5a565b73ffffffffffffffffffffffffffffffffffffffff16611350611751565b73ffffffffffffffffffffffffffffffffffffffff16146113a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139d9061395a565b60405180910390fd5b80600b8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611421576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611418906138da565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611470611d5a565b73ffffffffffffffffffffffffffffffffffffffff1661148e611751565b73ffffffffffffffffffffffffffffffffffffffff16146114e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114db9061395a565b60405180910390fd5b6114ee6000612173565b565b6114f8611d5a565b73ffffffffffffffffffffffffffffffffffffffff16611516611751565b73ffffffffffffffffffffffffffffffffffffffff161461156c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115639061395a565b60405180910390fd5b80600a8190555050565b60086020528060005260406000206000915090505481565b611596611d5a565b73ffffffffffffffffffffffffffffffffffffffff166115b4611751565b73ffffffffffffffffffffffffffffffffffffffff161461160a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116019061395a565b60405180910390fd5b60005b815181101561174d5760076000838381518110611653577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615600760008484815181106116e1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061174590613d12565b91505061160d565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461178a90613ce0565b80601f01602080910402602001604051908101604052809291908181526020018280546117b690613ce0565b80156118035780601f106117d857610100808354040283529160200191611803565b820191906000526020600020905b8154815290600101906020018083116117e657829003601f168201915b5050505050905090565b61181f611818611d5a565b8383612239565b5050565b61183461182e611d5a565b83611e1b565b611873576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186a906139da565b60405180910390fd5b61187f848484846123a6565b50505050565b61188d611d5a565b73ffffffffffffffffffffffffffffffffffffffff166118ab611751565b73ffffffffffffffffffffffffffffffffffffffff1614611901576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f89061395a565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b611935611d5a565b73ffffffffffffffffffffffffffffffffffffffff16611953611751565b73ffffffffffffffffffffffffffffffffffffffff16146119a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a09061395a565b60405180910390fd5b80600c8190555050565b60606119be82611cee565b6119fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f49061399a565b60405180910390fd5b6000611a07612402565b90506000815111611a275760405180602001604052806000815250611a52565b80611a3184612494565b604051602001611a429291906136c7565b6040516020818303038152906040525b915050919050565b600b5481565b611a68611d5a565b73ffffffffffffffffffffffffffffffffffffffff16611a86611751565b73ffffffffffffffffffffffffffffffffffffffff1614611adc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad39061395a565b60405180910390fd5b80600d8190555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611b82611d5a565b73ffffffffffffffffffffffffffffffffffffffff16611ba0611751565b73ffffffffffffffffffffffffffffffffffffffff1614611bf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bed9061395a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5d906137ba565b60405180910390fd5b611c6f81612173565b50565b60095481565b600c5481565b600a5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611dd5836111ea565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611e2682611cee565b611e65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5c9061389a565b60405180910390fd5b6000611e70836111ea565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611edf57508373ffffffffffffffffffffffffffffffffffffffff16611ec784610a15565b73ffffffffffffffffffffffffffffffffffffffff16145b80611ef05750611eef8185611ae6565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611f19826111ea565b73ffffffffffffffffffffffffffffffffffffffff1614611f6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f669061397a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd69061381a565b60405180910390fd5b611fea838383612641565b611ff5600082611d62565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120459190613bf6565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461209c9190613b15565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61216f828260405180602001604052806000815250612646565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156122a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229f9061383a565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612399919061375d565b60405180910390a3505050565b6123b1848484611ef9565b6123bd848484846126a1565b6123fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f39061379a565b60405180910390fd5b50505050565b60606010805461241190613ce0565b80601f016020809104026020016040519081016040528092919081815260200182805461243d90613ce0565b801561248a5780601f1061245f5761010080835404028352916020019161248a565b820191906000526020600020905b81548152906001019060200180831161246d57829003601f168201915b5050505050905090565b606060008214156124dc576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061263c565b600082905060005b6000821461250e5780806124f790613d12565b915050600a826125079190613b6b565b91506124e4565b60008167ffffffffffffffff811115612550577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156125825781602001600182028036833780820191505090505b5090505b600085146126355760018261259b9190613bf6565b9150600a856125aa9190613d5b565b60306125b69190613b15565b60f81b8183815181106125f2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561262e9190613b6b565b9450612586565b8093505050505b919050565b505050565b6126508383612838565b61265d60008484846126a1565b61269c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126939061379a565b60405180910390fd5b505050565b60006126c28473ffffffffffffffffffffffffffffffffffffffff16612a06565b1561282b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026126eb611d5a565b8786866040518563ffffffff1660e01b815260040161270d9493929190613711565b602060405180830381600087803b15801561272757600080fd5b505af192505050801561275857506040513d601f19601f820116820180604052508101906127559190612e9c565b60015b6127db573d8060008114612788576040519150601f19603f3d011682016040523d82523d6000602084013e61278d565b606091505b506000815114156127d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ca9061379a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612830565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161289f9061391a565b60405180910390fd5b6128b181611cee565b156128f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e8906137da565b60405180910390fd5b6128fd60008383612641565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461294d9190613b15565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612a2590613ce0565b90600052602060002090601f016020900481019282612a475760008555612a8e565b82601f10612a6057805160ff1916838001178555612a8e565b82800160010185558215612a8e579182015b82811115612a8d578251825591602001919060010190612a72565b5b509050612a9b9190612a9f565b5090565b5b80821115612ab8576000816000905550600101612aa0565b5090565b6000612acf612aca84613a46565b613a15565b90508083825260208201905082856020860282011115612aee57600080fd5b60005b85811015612b1e5781612b048882612ba4565b845260208401935060208301925050600181019050612af1565b5050509392505050565b6000612b3b612b3684613a72565b613a15565b905082815260208101848484011115612b5357600080fd5b612b5e848285613c9e565b509392505050565b6000612b79612b7484613aa2565b613a15565b905082815260208101848484011115612b9157600080fd5b612b9c848285613c9e565b509392505050565b600081359050612bb381613e59565b92915050565b600082601f830112612bca57600080fd5b8135612bda848260208601612abc565b91505092915050565b600081359050612bf281613e70565b92915050565b600081359050612c0781613e87565b92915050565b600081519050612c1c81613e87565b92915050565b600082601f830112612c3357600080fd5b8135612c43848260208601612b28565b91505092915050565b600082601f830112612c5d57600080fd5b8135612c6d848260208601612b66565b91505092915050565b600081359050612c8581613e9e565b92915050565b600060208284031215612c9d57600080fd5b6000612cab84828501612ba4565b91505092915050565b60008060408385031215612cc757600080fd5b6000612cd585828601612ba4565b9250506020612ce685828601612ba4565b9150509250929050565b600080600060608486031215612d0557600080fd5b6000612d1386828701612ba4565b9350506020612d2486828701612ba4565b9250506040612d3586828701612c76565b9150509250925092565b60008060008060808587031215612d5557600080fd5b6000612d6387828801612ba4565b9450506020612d7487828801612ba4565b9350506040612d8587828801612c76565b925050606085013567ffffffffffffffff811115612da257600080fd5b612dae87828801612c22565b91505092959194509250565b60008060408385031215612dcd57600080fd5b6000612ddb85828601612ba4565b9250506020612dec85828601612be3565b9150509250929050565b60008060408385031215612e0957600080fd5b6000612e1785828601612ba4565b9250506020612e2885828601612c76565b9150509250929050565b600060208284031215612e4457600080fd5b600082013567ffffffffffffffff811115612e5e57600080fd5b612e6a84828501612bb9565b91505092915050565b600060208284031215612e8557600080fd5b6000612e9384828501612bf8565b91505092915050565b600060208284031215612eae57600080fd5b6000612ebc84828501612c0d565b91505092915050565b600060208284031215612ed757600080fd5b600082013567ffffffffffffffff811115612ef157600080fd5b612efd84828501612c4c565b91505092915050565b600060208284031215612f1857600080fd5b6000612f2684828501612c76565b91505092915050565b612f3881613c2a565b82525050565b612f4781613c3c565b82525050565b6000612f5882613ad2565b612f628185613ae8565b9350612f72818560208601613cad565b612f7b81613e48565b840191505092915050565b6000612f9182613add565b612f9b8185613af9565b9350612fab818560208601613cad565b612fb481613e48565b840191505092915050565b6000612fca82613add565b612fd48185613b0a565b9350612fe4818560208601613cad565b80840191505092915050565b6000612ffd603283613af9565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000613063602683613af9565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006130c9601c83613af9565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613109601a83613af9565b91507f4e6f7420656e6f75676820746f6b656e7320746f2073656c6c210000000000006000830152602082019050919050565b6000613149602483613af9565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006131af601983613af9565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b60006131ef601183613af9565b91507f496e636f727265637420616d6f756e74210000000000000000000000000000006000830152602082019050919050565b600061322f601083613af9565b91507f53616c65206e6f742061637469766521000000000000000000000000000000006000830152602082019050919050565b600061326f602c83613af9565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006132d5603883613af9565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b600061333b602a83613af9565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b60006133a1602983613af9565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613407602083613af9565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613447602c83613af9565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006134ad600583613b0a565b91507f2e6a736f6e0000000000000000000000000000000000000000000000000000006000830152600582019050919050565b60006134ed602083613af9565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600061352d602983613af9565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613593602f83613af9565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b60006135f9602183613af9565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061365f603183613af9565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6136c181613c94565b82525050565b60006136d38285612fbf565b91506136df8284612fbf565b91506136ea826134a0565b91508190509392505050565b600060208201905061370b6000830184612f2f565b92915050565b60006080820190506137266000830187612f2f565b6137336020830186612f2f565b61374060408301856136b8565b81810360608301526137528184612f4d565b905095945050505050565b60006020820190506137726000830184612f3e565b92915050565b600060208201905081810360008301526137928184612f86565b905092915050565b600060208201905081810360008301526137b381612ff0565b9050919050565b600060208201905081810360008301526137d381613056565b9050919050565b600060208201905081810360008301526137f3816130bc565b9050919050565b60006020820190508181036000830152613813816130fc565b9050919050565b600060208201905081810360008301526138338161313c565b9050919050565b60006020820190508181036000830152613853816131a2565b9050919050565b60006020820190508181036000830152613873816131e2565b9050919050565b6000602082019050818103600083015261389381613222565b9050919050565b600060208201905081810360008301526138b381613262565b9050919050565b600060208201905081810360008301526138d3816132c8565b9050919050565b600060208201905081810360008301526138f38161332e565b9050919050565b6000602082019050818103600083015261391381613394565b9050919050565b60006020820190508181036000830152613933816133fa565b9050919050565b600060208201905081810360008301526139538161343a565b9050919050565b60006020820190508181036000830152613973816134e0565b9050919050565b6000602082019050818103600083015261399381613520565b9050919050565b600060208201905081810360008301526139b381613586565b9050919050565b600060208201905081810360008301526139d3816135ec565b9050919050565b600060208201905081810360008301526139f381613652565b9050919050565b6000602082019050613a0f60008301846136b8565b92915050565b6000604051905081810181811067ffffffffffffffff82111715613a3c57613a3b613e19565b5b8060405250919050565b600067ffffffffffffffff821115613a6157613a60613e19565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613a8d57613a8c613e19565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115613abd57613abc613e19565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613b2082613c94565b9150613b2b83613c94565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613b6057613b5f613d8c565b5b828201905092915050565b6000613b7682613c94565b9150613b8183613c94565b925082613b9157613b90613dbb565b5b828204905092915050565b6000613ba782613c94565b9150613bb283613c94565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613beb57613bea613d8c565b5b828202905092915050565b6000613c0182613c94565b9150613c0c83613c94565b925082821015613c1f57613c1e613d8c565b5b828203905092915050565b6000613c3582613c74565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613ccb578082015181840152602081019050613cb0565b83811115613cda576000848401525b50505050565b60006002820490506001821680613cf857607f821691505b60208210811415613d0c57613d0b613dea565b5b50919050565b6000613d1d82613c94565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613d5057613d4f613d8c565b5b600182019050919050565b6000613d6682613c94565b9150613d7183613c94565b925082613d8157613d80613dbb565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b613e6281613c2a565b8114613e6d57600080fd5b50565b613e7981613c3c565b8114613e8457600080fd5b50565b613e9081613c48565b8114613e9b57600080fd5b50565b613ea781613c94565b8114613eb257600080fd5b5056fea26469706673582212200a99fea964f1269ba1eacd9d619310520c5e22b309c7ce03b3c1ed41c2f06e7364736f6c63430008000033

Deployed Bytecode Sourcemap

36451:2628:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36519:45;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23663:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24608:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26176:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25699:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37926:103;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37092:89;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26926:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36799:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38210:866;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38037:109;;;;;;;;;;;;;:::i;:::-;;27336:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36736:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36978:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36767:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24302:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36836:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37296:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24032:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4651:103;;;;;;;;;;;;;:::i;:::-;;37189:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36571:40;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37395:220;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4000:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24777:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26469:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27592:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37813:105;;;;;;;;;;;;;:::i;:::-;;37623:83;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24952:343;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36681:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37714:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26695:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4909:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36620:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36709:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36648:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36519:45;;;;;;;;;;;;;;;;;;;;;;:::o;23663:305::-;23765:4;23817:25;23802:40;;;:11;:40;;;;:105;;;;23874:33;23859:48;;;:11;:48;;;;23802:105;:158;;;;23924:36;23948:11;23924:23;:36::i;:::-;23802:158;23782:178;;23663:305;;;:::o;24608:100::-;24662:13;24695:5;24688:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24608:100;:::o;26176:221::-;26252:7;26280:16;26288:7;26280;:16::i;:::-;26272:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26365:15;:24;26381:7;26365:24;;;;;;;;;;;;;;;;;;;;;26358:31;;26176:221;;;:::o;25699:411::-;25780:13;25796:23;25811:7;25796:14;:23::i;:::-;25780:39;;25844:5;25838:11;;:2;:11;;;;25830:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;25938:5;25922:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;25947:37;25964:5;25971:12;:10;:12::i;:::-;25947:16;:37::i;:::-;25922:62;25900:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;26081:21;26090:2;26094:7;26081:8;:21::i;:::-;25699:411;;;:::o;37926:103::-;37986:4;38020:1;38010:7;;:11;;;;:::i;:::-;38003:18;;37926:103;:::o;37092:89::-;4231:12;:10;:12::i;:::-;4220:23;;:7;:5;:7::i;:::-;:23;;;4212:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37168:5:::1;37156:9;:17;;;;37092:89:::0;:::o;26926:339::-;27121:41;27140:12;:10;:12::i;:::-;27154:7;27121:18;:41::i;:::-;27113:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;27229:28;27239:4;27245:2;27249:7;27229:9;:28::i;:::-;26926:339;;;:::o;36799:28::-;;;;;;;;;;;;;:::o;38210:866::-;38279:16;;;;;;;;;;;38271:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;38367:1;38355:9;;:13;;;;:::i;:::-;38345:6;38335:7;;:16;;;;:::i;:::-;:33;;38327:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;38428:8;;38418:6;:18;;38410:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;38509:12;;38499:6;38477:7;:19;38485:10;38477:19;;;;;;;;;;;;;;;;:28;;;;:::i;:::-;:44;;38469:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;38557:12;:24;38570:10;38557:24;;;;;;;;;;;;;;;;;;;;;;;;;38554:515;;;38635:6;38618:14;;:23;;;;:::i;:::-;38605:9;:36;38597:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;38682:6;38678:137;38696:6;38692:1;:10;38678:137;;;38727:32;38737:10;38749:7;;:9;;;;;;;;;:::i;:::-;;;;;38727;:32::i;:::-;38778:7;:19;38786:10;38778:19;;;;;;;;;;;;;;;;:21;;;;;;;;;:::i;:::-;;;;;;38704:3;;;;;:::i;:::-;;;;38678:137;;;;38554:515;;;38878:6;38866:9;;:18;;;;:::i;:::-;38853:9;:31;38845:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;38925:6;38921:137;38939:6;38935:1;:10;38921:137;;;38970:32;38980:10;38992:7;;:9;;;;;;;;;:::i;:::-;;;;;38970;:32::i;:::-;39021:7;:19;39029:10;39021:19;;;;;;;;;;;;;;;;:21;;;;;;;;;:::i;:::-;;;;;;38947:3;;;;;:::i;:::-;;;;38921:137;;;;38554:515;38210:866;:::o;38037:109::-;4231:12;:10;:12::i;:::-;4220:23;;:7;:5;:7::i;:::-;:23;;;4212:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38095:10:::1;38087:28;;:51;38116:21;38087:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;38037:109::o:0;27336:185::-;27474:39;27491:4;27497:2;27501:7;27474:39;;;;;;;;;;;;:16;:39::i;:::-;27336:185;;;:::o;36736:24::-;;;;:::o;36978:106::-;4231:12;:10;:12::i;:::-;4220:23;;:7;:5;:7::i;:::-;:23;;;4212:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37065:11:::1;37055:7;:21;;;;;;;;;;;;:::i;:::-;;36978:106:::0;:::o;36767:23::-;;;;:::o;24302:239::-;24374:7;24394:13;24410:7;:16;24418:7;24410:16;;;;;;;;;;;;;;;;;;;;;24394:32;;24462:1;24445:19;;:5;:19;;;;24437:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;24528:5;24521:12;;;24302:239;;;:::o;36836:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;37296:91::-;4231:12;:10;:12::i;:::-;4220:23;;:7;:5;:7::i;:::-;:23;;;4212:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37373:6:::1;37361:9;:18;;;;37296:91:::0;:::o;24032:208::-;24104:7;24149:1;24132:19;;:5;:19;;;;24124:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;24216:9;:16;24226:5;24216:16;;;;;;;;;;;;;;;;24209:23;;24032:208;;;:::o;4651:103::-;4231:12;:10;:12::i;:::-;4220:23;;:7;:5;:7::i;:::-;:23;;;4212:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4716:30:::1;4743:1;4716:18;:30::i;:::-;4651:103::o:0;37189:99::-;4231:12;:10;:12::i;:::-;4220:23;;:7;:5;:7::i;:::-;:23;;;4212:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37275:5:::1;37258:14;:22;;;;37189:99:::0;:::o;36571:40::-;;;;;;;;;;;;;;;;;:::o;37395:220::-;4231:12;:10;:12::i;:::-;4220:23;;:7;:5;:7::i;:::-;:23;;;4212:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37483:6:::1;37479:129;37497:11;:18;37493:1;:22;37479:129;;;37568:12;:28;37581:11;37593:1;37581:14;;;;;;;;;;;;;;;;;;;;;;37568:28;;;;;;;;;;;;;;;;;;;;;;;;;37567:29;37536:12;:28;37549:11;37561:1;37549:14;;;;;;;;;;;;;;;;;;;;;;37536:28;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;37517:3;;;;;:::i;:::-;;;;37479:129;;;;37395:220:::0;:::o;4000:87::-;4046:7;4073:6;;;;;;;;;;;4066:13;;4000:87;:::o;24777:104::-;24833:13;24866:7;24859:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24777:104;:::o;26469:155::-;26564:52;26583:12;:10;:12::i;:::-;26597:8;26607;26564:18;:52::i;:::-;26469:155;;:::o;27592:328::-;27767:41;27786:12;:10;:12::i;:::-;27800:7;27767:18;:41::i;:::-;27759:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;27873:39;27887:4;27893:2;27897:7;27906:5;27873:13;:39::i;:::-;27592:328;;;;:::o;37813:105::-;4231:12;:10;:12::i;:::-;4220:23;;:7;:5;:7::i;:::-;:23;;;4212:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37894:16:::1;;;;;;;;;;;37893:17;37874:16;;:36;;;;;;;;;;;;;;;;;;37813:105::o:0;37623:83::-;4231:12;:10;:12::i;:::-;4220:23;;:7;:5;:7::i;:::-;:23;;;4212:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37695:3:::1;37684:8;:14;;;;37623:83:::0;:::o;24952:343::-;25025:13;25059:16;25067:7;25059;:16::i;:::-;25051:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;25140:21;25164:10;:8;:10::i;:::-;25140:34;;25216:1;25198:7;25192:21;:25;:95;;;;;;;;;;;;;;;;;25244:7;25253:18;:7;:16;:18::i;:::-;25227:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;25192:95;25185:102;;;24952:343;;;:::o;36681:21::-;;;;:::o;37714:91::-;4231:12;:10;:12::i;:::-;4220:23;;:7;:5;:7::i;:::-;:23;;;4212:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37794:3:::1;37779:12;:18;;;;37714:91:::0;:::o;26695:164::-;26792:4;26816:18;:25;26835:5;26816:25;;;;;;;;;;;;;;;:35;26842:8;26816:35;;;;;;;;;;;;;;;;;;;;;;;;;26809:42;;26695:164;;;;:::o;4909:201::-;4231:12;:10;:12::i;:::-;4220:23;;:7;:5;:7::i;:::-;:23;;;4212:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5018:1:::1;4998:22;;:8;:22;;;;4990:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5074:28;5093:8;5074:18;:28::i;:::-;4909:201:::0;:::o;36620:21::-;;;;:::o;36709:20::-;;;;:::o;36648:26::-;;;;:::o;16432:157::-;16517:4;16556:25;16541:40;;;:11;:40;;;;16534:47;;16432:157;;;:::o;29430:127::-;29495:4;29547:1;29519:30;;:7;:16;29527:7;29519:16;;;;;;;;;;;;;;;;;;;;;:30;;;;29512:37;;29430:127;;;:::o;2724:98::-;2777:7;2804:10;2797:17;;2724:98;:::o;33412:174::-;33514:2;33487:15;:24;33503:7;33487:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;33570:7;33566:2;33532:46;;33541:23;33556:7;33541:14;:23::i;:::-;33532:46;;;;;;;;;;;;33412:174;;:::o;29724:348::-;29817:4;29842:16;29850:7;29842;:16::i;:::-;29834:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;29918:13;29934:23;29949:7;29934:14;:23::i;:::-;29918:39;;29987:5;29976:16;;:7;:16;;;:51;;;;30020:7;29996:31;;:20;30008:7;29996:11;:20::i;:::-;:31;;;29976:51;:87;;;;30031:32;30048:5;30055:7;30031:16;:32::i;:::-;29976:87;29968:96;;;29724:348;;;;:::o;32716:578::-;32875:4;32848:31;;:23;32863:7;32848:14;:23::i;:::-;:31;;;32840:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;32958:1;32944:16;;:2;:16;;;;32936:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;33014:39;33035:4;33041:2;33045:7;33014:20;:39::i;:::-;33118:29;33135:1;33139:7;33118:8;:29::i;:::-;33179:1;33160:9;:15;33170:4;33160:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;33208:1;33191:9;:13;33201:2;33191:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;33239:2;33220:7;:16;33228:7;33220:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;33278:7;33274:2;33259:27;;33268:4;33259:27;;;;;;;;;;;;32716:578;;;:::o;30414:110::-;30490:26;30500:2;30504:7;30490:26;;;;;;;;;;;;:9;:26::i;:::-;30414:110;;:::o;5270:191::-;5344:16;5363:6;;;;;;;;;;;5344:25;;5389:8;5380:6;;:17;;;;;;;;;;;;;;;;;;5444:8;5413:40;;5434:8;5413:40;;;;;;;;;;;;5270:191;;:::o;33728:315::-;33883:8;33874:17;;:5;:17;;;;33866:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;33970:8;33932:18;:25;33951:5;33932:25;;;;;;;;;;;;;;;:35;33958:8;33932:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;34016:8;33994:41;;34009:5;33994:41;;;34026:8;33994:41;;;;;;:::i;:::-;;;;;;;;33728:315;;;:::o;28802:::-;28959:28;28969:4;28975:2;28979:7;28959:9;:28::i;:::-;29006:48;29029:4;29035:2;29039:7;29048:5;29006:22;:48::i;:::-;28998:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;28802:315;;;;:::o;36866:100::-;36918:13;36951:7;36944:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36866:100;:::o;288:721::-;344:13;574:1;565:5;:10;561:53;;;592:10;;;;;;;;;;;;;;;;;;;;;561:53;624:12;639:5;624:20;;655:14;680:76;695:1;687:4;:9;680:76;;713:8;;;;;:::i;:::-;;;;744:2;736:10;;;;;:::i;:::-;;;680:76;;;766:19;798:6;788:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;766:39;;816:154;832:1;823:5;:10;816:154;;860:1;850:11;;;;;:::i;:::-;;;927:2;919:5;:10;;;;:::i;:::-;906:2;:24;;;;:::i;:::-;893:39;;876:6;883;876:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;956:2;947:11;;;;;:::i;:::-;;;816:154;;;994:6;980:21;;;;;288:721;;;;:::o;35979:126::-;;;;:::o;30751:321::-;30881:18;30887:2;30891:7;30881:5;:18::i;:::-;30932:54;30963:1;30967:2;30971:7;30980:5;30932:22;:54::i;:::-;30910:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;30751:321;;;:::o;34608:799::-;34763:4;34784:15;:2;:13;;;:15::i;:::-;34780:620;;;34836:2;34820:36;;;34857:12;:10;:12::i;:::-;34871:4;34877:7;34886:5;34820:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;34816:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35079:1;35062:6;:13;:18;35058:272;;;35105:60;;;;;;;;;;:::i;:::-;;;;;;;;35058:272;35280:6;35274:13;35265:6;35261:2;35257:15;35250:38;34816:529;34953:41;;;34943:51;;;:6;:51;;;;34936:58;;;;;34780:620;35384:4;35377:11;;34608:799;;;;;;;:::o;31408:382::-;31502:1;31488:16;;:2;:16;;;;31480:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;31561:16;31569:7;31561;:16::i;:::-;31560:17;31552:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;31623:45;31652:1;31656:2;31660:7;31623:20;:45::i;:::-;31698:1;31681:9;:13;31691:2;31681:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;31729:2;31710:7;:16;31718:7;31710:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;31774:7;31770:2;31749:33;;31766:1;31749:33;;;;;;;;;;;;31408:382;;:::o;6288:387::-;6348:4;6556:12;6623:7;6611:20;6603:28;;6666:1;6659:4;:8;6652:15;;;6288:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:622:1:-;;145:80;160:64;217:6;160:64;:::i;:::-;145:80;:::i;:::-;136:89;;245:5;273:6;266:5;259:21;299:4;292:5;288:16;281:23;;324:6;374:3;366:4;358:6;354:17;349:3;345:27;342:36;339:2;;;391:1;388;381:12;339:2;419:1;404:236;429:6;426:1;423:13;404:236;;;496:3;524:37;557:3;545:10;524:37;:::i;:::-;519:3;512:50;591:4;586:3;582:14;575:21;;625:4;620:3;616:14;609:21;;464:176;451:1;448;444:9;439:14;;404:236;;;408:14;126:520;;;;;;;:::o;652:342::-;;754:64;769:48;810:6;769:48;:::i;:::-;754:64;:::i;:::-;745:73;;841:6;834:5;827:21;879:4;872:5;868:16;917:3;908:6;903:3;899:16;896:25;893:2;;;934:1;931;924:12;893:2;947:41;981:6;976:3;971;947:41;:::i;:::-;735:259;;;;;;:::o;1000:344::-;;1103:65;1118:49;1160:6;1118:49;:::i;:::-;1103:65;:::i;:::-;1094:74;;1191:6;1184:5;1177:21;1229:4;1222:5;1218:16;1267:3;1258:6;1253:3;1249:16;1246:25;1243:2;;;1284:1;1281;1274:12;1243:2;1297:41;1331:6;1326:3;1321;1297:41;:::i;:::-;1084:260;;;;;;:::o;1350:139::-;;1434:6;1421:20;1412:29;;1450:33;1477:5;1450:33;:::i;:::-;1402:87;;;;:::o;1512:303::-;;1632:3;1625:4;1617:6;1613:17;1609:27;1599:2;;1650:1;1647;1640:12;1599:2;1690:6;1677:20;1715:94;1805:3;1797:6;1790:4;1782:6;1778:17;1715:94;:::i;:::-;1706:103;;1589:226;;;;;:::o;1821:133::-;;1902:6;1889:20;1880:29;;1918:30;1942:5;1918:30;:::i;:::-;1870:84;;;;:::o;1960:137::-;;2043:6;2030:20;2021:29;;2059:32;2085:5;2059:32;:::i;:::-;2011:86;;;;:::o;2103:141::-;;2190:6;2184:13;2175:22;;2206:32;2232:5;2206:32;:::i;:::-;2165:79;;;;:::o;2263:271::-;;2367:3;2360:4;2352:6;2348:17;2344:27;2334:2;;2385:1;2382;2375:12;2334:2;2425:6;2412:20;2450:78;2524:3;2516:6;2509:4;2501:6;2497:17;2450:78;:::i;:::-;2441:87;;2324:210;;;;;:::o;2554:273::-;;2659:3;2652:4;2644:6;2640:17;2636:27;2626:2;;2677:1;2674;2667:12;2626:2;2717:6;2704:20;2742:79;2817:3;2809:6;2802:4;2794:6;2790:17;2742:79;:::i;:::-;2733:88;;2616:211;;;;;:::o;2833:139::-;;2917:6;2904:20;2895:29;;2933:33;2960:5;2933:33;:::i;:::-;2885:87;;;;:::o;2978:262::-;;3086:2;3074:9;3065:7;3061:23;3057:32;3054:2;;;3102:1;3099;3092:12;3054:2;3145:1;3170:53;3215:7;3206:6;3195:9;3191:22;3170:53;:::i;:::-;3160:63;;3116:117;3044:196;;;;:::o;3246:407::-;;;3371:2;3359:9;3350:7;3346:23;3342:32;3339:2;;;3387:1;3384;3377:12;3339:2;3430:1;3455:53;3500:7;3491:6;3480:9;3476:22;3455:53;:::i;:::-;3445:63;;3401:117;3557:2;3583:53;3628:7;3619:6;3608:9;3604:22;3583:53;:::i;:::-;3573:63;;3528:118;3329:324;;;;;:::o;3659:552::-;;;;3801:2;3789:9;3780:7;3776:23;3772:32;3769:2;;;3817:1;3814;3807:12;3769:2;3860:1;3885:53;3930:7;3921:6;3910:9;3906:22;3885:53;:::i;:::-;3875:63;;3831:117;3987:2;4013:53;4058:7;4049:6;4038:9;4034:22;4013:53;:::i;:::-;4003:63;;3958:118;4115:2;4141:53;4186:7;4177:6;4166:9;4162:22;4141:53;:::i;:::-;4131:63;;4086:118;3759:452;;;;;:::o;4217:809::-;;;;;4385:3;4373:9;4364:7;4360:23;4356:33;4353:2;;;4402:1;4399;4392:12;4353:2;4445:1;4470:53;4515:7;4506:6;4495:9;4491:22;4470:53;:::i;:::-;4460:63;;4416:117;4572:2;4598:53;4643:7;4634:6;4623:9;4619:22;4598:53;:::i;:::-;4588:63;;4543:118;4700:2;4726:53;4771:7;4762:6;4751:9;4747:22;4726:53;:::i;:::-;4716:63;;4671:118;4856:2;4845:9;4841:18;4828:32;4887:18;4879:6;4876:30;4873:2;;;4919:1;4916;4909:12;4873:2;4947:62;5001:7;4992:6;4981:9;4977:22;4947:62;:::i;:::-;4937:72;;4799:220;4343:683;;;;;;;:::o;5032:401::-;;;5154:2;5142:9;5133:7;5129:23;5125:32;5122:2;;;5170:1;5167;5160:12;5122:2;5213:1;5238:53;5283:7;5274:6;5263:9;5259:22;5238:53;:::i;:::-;5228:63;;5184:117;5340:2;5366:50;5408:7;5399:6;5388:9;5384:22;5366:50;:::i;:::-;5356:60;;5311:115;5112:321;;;;;:::o;5439:407::-;;;5564:2;5552:9;5543:7;5539:23;5535:32;5532:2;;;5580:1;5577;5570:12;5532:2;5623:1;5648:53;5693:7;5684:6;5673:9;5669:22;5648:53;:::i;:::-;5638:63;;5594:117;5750:2;5776:53;5821:7;5812:6;5801:9;5797:22;5776:53;:::i;:::-;5766:63;;5721:118;5522:324;;;;;:::o;5852:405::-;;5985:2;5973:9;5964:7;5960:23;5956:32;5953:2;;;6001:1;5998;5991:12;5953:2;6072:1;6061:9;6057:17;6044:31;6102:18;6094:6;6091:30;6088:2;;;6134:1;6131;6124:12;6088:2;6162:78;6232:7;6223:6;6212:9;6208:22;6162:78;:::i;:::-;6152:88;;6015:235;5943:314;;;;:::o;6263:260::-;;6370:2;6358:9;6349:7;6345:23;6341:32;6338:2;;;6386:1;6383;6376:12;6338:2;6429:1;6454:52;6498:7;6489:6;6478:9;6474:22;6454:52;:::i;:::-;6444:62;;6400:116;6328:195;;;;:::o;6529:282::-;;6647:2;6635:9;6626:7;6622:23;6618:32;6615:2;;;6663:1;6660;6653:12;6615:2;6706:1;6731:63;6786:7;6777:6;6766:9;6762:22;6731:63;:::i;:::-;6721:73;;6677:127;6605:206;;;;:::o;6817:375::-;;6935:2;6923:9;6914:7;6910:23;6906:32;6903:2;;;6951:1;6948;6941:12;6903:2;7022:1;7011:9;7007:17;6994:31;7052:18;7044:6;7041:30;7038:2;;;7084:1;7081;7074:12;7038:2;7112:63;7167:7;7158:6;7147:9;7143:22;7112:63;:::i;:::-;7102:73;;6965:220;6893:299;;;;:::o;7198:262::-;;7306:2;7294:9;7285:7;7281:23;7277:32;7274:2;;;7322:1;7319;7312:12;7274:2;7365:1;7390:53;7435:7;7426:6;7415:9;7411:22;7390:53;:::i;:::-;7380:63;;7336:117;7264:196;;;;:::o;7466:118::-;7553:24;7571:5;7553:24;:::i;:::-;7548:3;7541:37;7531:53;;:::o;7590:109::-;7671:21;7686:5;7671:21;:::i;:::-;7666:3;7659:34;7649:50;;:::o;7705:360::-;;7819:38;7851:5;7819:38;:::i;:::-;7873:70;7936:6;7931:3;7873:70;:::i;:::-;7866:77;;7952:52;7997:6;7992:3;7985:4;7978:5;7974:16;7952:52;:::i;:::-;8029:29;8051:6;8029:29;:::i;:::-;8024:3;8020:39;8013:46;;7795:270;;;;;:::o;8071:364::-;;8187:39;8220:5;8187:39;:::i;:::-;8242:71;8306:6;8301:3;8242:71;:::i;:::-;8235:78;;8322:52;8367:6;8362:3;8355:4;8348:5;8344:16;8322:52;:::i;:::-;8399:29;8421:6;8399:29;:::i;:::-;8394:3;8390:39;8383:46;;8163:272;;;;;:::o;8441:377::-;;8575:39;8608:5;8575:39;:::i;:::-;8630:89;8712:6;8707:3;8630:89;:::i;:::-;8623:96;;8728:52;8773:6;8768:3;8761:4;8754:5;8750:16;8728:52;:::i;:::-;8805:6;8800:3;8796:16;8789:23;;8551:267;;;;;:::o;8824:382::-;;8987:67;9051:2;9046:3;8987:67;:::i;:::-;8980:74;;9084:34;9080:1;9075:3;9071:11;9064:55;9150:20;9145:2;9140:3;9136:12;9129:42;9197:2;9192:3;9188:12;9181:19;;8970:236;;;:::o;9212:370::-;;9375:67;9439:2;9434:3;9375:67;:::i;:::-;9368:74;;9472:34;9468:1;9463:3;9459:11;9452:55;9538:8;9533:2;9528:3;9524:12;9517:30;9573:2;9568:3;9564:12;9557:19;;9358:224;;;:::o;9588:326::-;;9751:67;9815:2;9810:3;9751:67;:::i;:::-;9744:74;;9848:30;9844:1;9839:3;9835:11;9828:51;9905:2;9900:3;9896:12;9889:19;;9734:180;;;:::o;9920:324::-;;10083:67;10147:2;10142:3;10083:67;:::i;:::-;10076:74;;10180:28;10176:1;10171:3;10167:11;10160:49;10235:2;10230:3;10226:12;10219:19;;10066:178;;;:::o;10250:368::-;;10413:67;10477:2;10472:3;10413:67;:::i;:::-;10406:74;;10510:34;10506:1;10501:3;10497:11;10490:55;10576:6;10571:2;10566:3;10562:12;10555:28;10609:2;10604:3;10600:12;10593:19;;10396:222;;;:::o;10624:323::-;;10787:67;10851:2;10846:3;10787:67;:::i;:::-;10780:74;;10884:27;10880:1;10875:3;10871:11;10864:48;10938:2;10933:3;10929:12;10922:19;;10770:177;;;:::o;10953:315::-;;11116:67;11180:2;11175:3;11116:67;:::i;:::-;11109:74;;11213:19;11209:1;11204:3;11200:11;11193:40;11259:2;11254:3;11250:12;11243:19;;11099:169;;;:::o;11274:314::-;;11437:67;11501:2;11496:3;11437:67;:::i;:::-;11430:74;;11534:18;11530:1;11525:3;11521:11;11514:39;11579:2;11574:3;11570:12;11563:19;;11420:168;;;:::o;11594:376::-;;11757:67;11821:2;11816:3;11757:67;:::i;:::-;11750:74;;11854:34;11850:1;11845:3;11841:11;11834:55;11920:14;11915:2;11910:3;11906:12;11899:36;11961:2;11956:3;11952:12;11945:19;;11740:230;;;:::o;11976:388::-;;12139:67;12203:2;12198:3;12139:67;:::i;:::-;12132:74;;12236:34;12232:1;12227:3;12223:11;12216:55;12302:26;12297:2;12292:3;12288:12;12281:48;12355:2;12350:3;12346:12;12339:19;;12122:242;;;:::o;12370:374::-;;12533:67;12597:2;12592:3;12533:67;:::i;:::-;12526:74;;12630:34;12626:1;12621:3;12617:11;12610:55;12696:12;12691:2;12686:3;12682:12;12675:34;12735:2;12730:3;12726:12;12719:19;;12516:228;;;:::o;12750:373::-;;12913:67;12977:2;12972:3;12913:67;:::i;:::-;12906:74;;13010:34;13006:1;13001:3;12997:11;12990:55;13076:11;13071:2;13066:3;13062:12;13055:33;13114:2;13109:3;13105:12;13098:19;;12896:227;;;:::o;13129:330::-;;13292:67;13356:2;13351:3;13292:67;:::i;:::-;13285:74;;13389:34;13385:1;13380:3;13376:11;13369:55;13450:2;13445:3;13441:12;13434:19;;13275:184;;;:::o;13465:376::-;;13628:67;13692:2;13687:3;13628:67;:::i;:::-;13621:74;;13725:34;13721:1;13716:3;13712:11;13705:55;13791:14;13786:2;13781:3;13777:12;13770:36;13832:2;13827:3;13823:12;13816:19;;13611:230;;;:::o;13847:337::-;;14028:84;14110:1;14105:3;14028:84;:::i;:::-;14021:91;;14142:7;14138:1;14133:3;14129:11;14122:28;14176:1;14171:3;14167:11;14160:18;;14011:173;;;:::o;14190:330::-;;14353:67;14417:2;14412:3;14353:67;:::i;:::-;14346:74;;14450:34;14446:1;14441:3;14437:11;14430:55;14511:2;14506:3;14502:12;14495:19;;14336:184;;;:::o;14526:373::-;;14689:67;14753:2;14748:3;14689:67;:::i;:::-;14682:74;;14786:34;14782:1;14777:3;14773:11;14766:55;14852:11;14847:2;14842:3;14838:12;14831:33;14890:2;14885:3;14881:12;14874:19;;14672:227;;;:::o;14905:379::-;;15068:67;15132:2;15127:3;15068:67;:::i;:::-;15061:74;;15165:34;15161:1;15156:3;15152:11;15145:55;15231:17;15226:2;15221:3;15217:12;15210:39;15275:2;15270:3;15266:12;15259:19;;15051:233;;;:::o;15290:365::-;;15453:67;15517:2;15512:3;15453:67;:::i;:::-;15446:74;;15550:34;15546:1;15541:3;15537:11;15530:55;15616:3;15611:2;15606:3;15602:12;15595:25;15646:2;15641:3;15637:12;15630:19;;15436:219;;;:::o;15661:381::-;;15824:67;15888:2;15883:3;15824:67;:::i;:::-;15817:74;;15921:34;15917:1;15912:3;15908:11;15901:55;15987:19;15982:2;15977:3;15973:12;15966:41;16033:2;16028:3;16024:12;16017:19;;15807:235;;;:::o;16048:118::-;16135:24;16153:5;16135:24;:::i;:::-;16130:3;16123:37;16113:53;;:::o;16172:701::-;;16475:95;16566:3;16557:6;16475:95;:::i;:::-;16468:102;;16587:95;16678:3;16669:6;16587:95;:::i;:::-;16580:102;;16699:148;16843:3;16699:148;:::i;:::-;16692:155;;16864:3;16857:10;;16457:416;;;;;:::o;16879:222::-;;17010:2;16999:9;16995:18;16987:26;;17023:71;17091:1;17080:9;17076:17;17067:6;17023:71;:::i;:::-;16977:124;;;;:::o;17107:640::-;;17340:3;17329:9;17325:19;17317:27;;17354:71;17422:1;17411:9;17407:17;17398:6;17354:71;:::i;:::-;17435:72;17503:2;17492:9;17488:18;17479:6;17435:72;:::i;:::-;17517;17585:2;17574:9;17570:18;17561:6;17517:72;:::i;:::-;17636:9;17630:4;17626:20;17621:2;17610:9;17606:18;17599:48;17664:76;17735:4;17726:6;17664:76;:::i;:::-;17656:84;;17307:440;;;;;;;:::o;17753:210::-;;17878:2;17867:9;17863:18;17855:26;;17891:65;17953:1;17942:9;17938:17;17929:6;17891:65;:::i;:::-;17845:118;;;;:::o;17969:313::-;;18120:2;18109:9;18105:18;18097:26;;18169:9;18163:4;18159:20;18155:1;18144:9;18140:17;18133:47;18197:78;18270:4;18261:6;18197:78;:::i;:::-;18189:86;;18087:195;;;;:::o;18288:419::-;;18492:2;18481:9;18477:18;18469:26;;18541:9;18535:4;18531:20;18527:1;18516:9;18512:17;18505:47;18569:131;18695:4;18569:131;:::i;:::-;18561:139;;18459:248;;;:::o;18713:419::-;;18917:2;18906:9;18902:18;18894:26;;18966:9;18960:4;18956:20;18952:1;18941:9;18937:17;18930:47;18994:131;19120:4;18994:131;:::i;:::-;18986:139;;18884:248;;;:::o;19138:419::-;;19342:2;19331:9;19327:18;19319:26;;19391:9;19385:4;19381:20;19377:1;19366:9;19362:17;19355:47;19419:131;19545:4;19419:131;:::i;:::-;19411:139;;19309:248;;;:::o;19563:419::-;;19767:2;19756:9;19752:18;19744:26;;19816:9;19810:4;19806:20;19802:1;19791:9;19787:17;19780:47;19844:131;19970:4;19844:131;:::i;:::-;19836:139;;19734:248;;;:::o;19988:419::-;;20192:2;20181:9;20177:18;20169:26;;20241:9;20235:4;20231:20;20227:1;20216:9;20212:17;20205:47;20269:131;20395:4;20269:131;:::i;:::-;20261:139;;20159:248;;;:::o;20413:419::-;;20617:2;20606:9;20602:18;20594:26;;20666:9;20660:4;20656:20;20652:1;20641:9;20637:17;20630:47;20694:131;20820:4;20694:131;:::i;:::-;20686:139;;20584:248;;;:::o;20838:419::-;;21042:2;21031:9;21027:18;21019:26;;21091:9;21085:4;21081:20;21077:1;21066:9;21062:17;21055:47;21119:131;21245:4;21119:131;:::i;:::-;21111:139;;21009:248;;;:::o;21263:419::-;;21467:2;21456:9;21452:18;21444:26;;21516:9;21510:4;21506:20;21502:1;21491:9;21487:17;21480:47;21544:131;21670:4;21544:131;:::i;:::-;21536:139;;21434:248;;;:::o;21688:419::-;;21892:2;21881:9;21877:18;21869:26;;21941:9;21935:4;21931:20;21927:1;21916:9;21912:17;21905:47;21969:131;22095:4;21969:131;:::i;:::-;21961:139;;21859:248;;;:::o;22113:419::-;;22317:2;22306:9;22302:18;22294:26;;22366:9;22360:4;22356:20;22352:1;22341:9;22337:17;22330:47;22394:131;22520:4;22394:131;:::i;:::-;22386:139;;22284:248;;;:::o;22538:419::-;;22742:2;22731:9;22727:18;22719:26;;22791:9;22785:4;22781:20;22777:1;22766:9;22762:17;22755:47;22819:131;22945:4;22819:131;:::i;:::-;22811:139;;22709:248;;;:::o;22963:419::-;;23167:2;23156:9;23152:18;23144:26;;23216:9;23210:4;23206:20;23202:1;23191:9;23187:17;23180:47;23244:131;23370:4;23244:131;:::i;:::-;23236:139;;23134:248;;;:::o;23388:419::-;;23592:2;23581:9;23577:18;23569:26;;23641:9;23635:4;23631:20;23627:1;23616:9;23612:17;23605:47;23669:131;23795:4;23669:131;:::i;:::-;23661:139;;23559:248;;;:::o;23813:419::-;;24017:2;24006:9;24002:18;23994:26;;24066:9;24060:4;24056:20;24052:1;24041:9;24037:17;24030:47;24094:131;24220:4;24094:131;:::i;:::-;24086:139;;23984:248;;;:::o;24238:419::-;;24442:2;24431:9;24427:18;24419:26;;24491:9;24485:4;24481:20;24477:1;24466:9;24462:17;24455:47;24519:131;24645:4;24519:131;:::i;:::-;24511:139;;24409:248;;;:::o;24663:419::-;;24867:2;24856:9;24852:18;24844:26;;24916:9;24910:4;24906:20;24902:1;24891:9;24887:17;24880:47;24944:131;25070:4;24944:131;:::i;:::-;24936:139;;24834:248;;;:::o;25088:419::-;;25292:2;25281:9;25277:18;25269:26;;25341:9;25335:4;25331:20;25327:1;25316:9;25312:17;25305:47;25369:131;25495:4;25369:131;:::i;:::-;25361:139;;25259:248;;;:::o;25513:419::-;;25717:2;25706:9;25702:18;25694:26;;25766:9;25760:4;25756:20;25752:1;25741:9;25737:17;25730:47;25794:131;25920:4;25794:131;:::i;:::-;25786:139;;25684:248;;;:::o;25938:419::-;;26142:2;26131:9;26127:18;26119:26;;26191:9;26185:4;26181:20;26177:1;26166:9;26162:17;26155:47;26219:131;26345:4;26219:131;:::i;:::-;26211:139;;26109:248;;;:::o;26363:222::-;;26494:2;26483:9;26479:18;26471:26;;26507:71;26575:1;26564:9;26560:17;26551:6;26507:71;:::i;:::-;26461:124;;;;:::o;26591:283::-;;26657:2;26651:9;26641:19;;26699:4;26691:6;26687:17;26806:6;26794:10;26791:22;26770:18;26758:10;26755:34;26752:62;26749:2;;;26817:18;;:::i;:::-;26749:2;26857:10;26853:2;26846:22;26631:243;;;;:::o;26880:311::-;;27047:18;27039:6;27036:30;27033:2;;;27069:18;;:::i;:::-;27033:2;27119:4;27111:6;27107:17;27099:25;;27179:4;27173;27169:15;27161:23;;26962:229;;;:::o;27197:331::-;;27348:18;27340:6;27337:30;27334:2;;;27370:18;;:::i;:::-;27334:2;27455:4;27451:9;27444:4;27436:6;27432:17;27428:33;27420:41;;27516:4;27510;27506:15;27498:23;;27263:265;;;:::o;27534:332::-;;27686:18;27678:6;27675:30;27672:2;;;27708:18;;:::i;:::-;27672:2;27793:4;27789:9;27782:4;27774:6;27770:17;27766:33;27758:41;;27854:4;27848;27844:15;27836:23;;27601:265;;;:::o;27872:98::-;;27957:5;27951:12;27941:22;;27930:40;;;:::o;27976:99::-;;28062:5;28056:12;28046:22;;28035:40;;;:::o;28081:168::-;;28198:6;28193:3;28186:19;28238:4;28233:3;28229:14;28214:29;;28176:73;;;;:::o;28255:169::-;;28373:6;28368:3;28361:19;28413:4;28408:3;28404:14;28389:29;;28351:73;;;;:::o;28430:148::-;;28569:3;28554:18;;28544:34;;;;:::o;28584:305::-;;28643:20;28661:1;28643:20;:::i;:::-;28638:25;;28677:20;28695:1;28677:20;:::i;:::-;28672:25;;28831:1;28763:66;28759:74;28756:1;28753:81;28750:2;;;28837:18;;:::i;:::-;28750:2;28881:1;28878;28874:9;28867:16;;28628:261;;;;:::o;28895:185::-;;28952:20;28970:1;28952:20;:::i;:::-;28947:25;;28986:20;29004:1;28986:20;:::i;:::-;28981:25;;29025:1;29015:2;;29030:18;;:::i;:::-;29015:2;29072:1;29069;29065:9;29060:14;;28937:143;;;;:::o;29086:348::-;;29149:20;29167:1;29149:20;:::i;:::-;29144:25;;29183:20;29201:1;29183:20;:::i;:::-;29178:25;;29371:1;29303:66;29299:74;29296:1;29293:81;29288:1;29281:9;29274:17;29270:105;29267:2;;;29378:18;;:::i;:::-;29267:2;29426:1;29423;29419:9;29408:20;;29134:300;;;;:::o;29440:191::-;;29500:20;29518:1;29500:20;:::i;:::-;29495:25;;29534:20;29552:1;29534:20;:::i;:::-;29529:25;;29573:1;29570;29567:8;29564:2;;;29578:18;;:::i;:::-;29564:2;29623:1;29620;29616:9;29608:17;;29485:146;;;;:::o;29637:96::-;;29703:24;29721:5;29703:24;:::i;:::-;29692:35;;29682:51;;;:::o;29739:90::-;;29816:5;29809:13;29802:21;29791:32;;29781:48;;;:::o;29835:149::-;;29911:66;29904:5;29900:78;29889:89;;29879:105;;;:::o;29990:126::-;;30067:42;30060:5;30056:54;30045:65;;30035:81;;;:::o;30122:77::-;;30188:5;30177:16;;30167:32;;;:::o;30205:154::-;30289:6;30284:3;30279;30266:30;30351:1;30342:6;30337:3;30333:16;30326:27;30256:103;;;:::o;30365:307::-;30433:1;30443:113;30457:6;30454:1;30451:13;30443:113;;;30542:1;30537:3;30533:11;30527:18;30523:1;30518:3;30514:11;30507:39;30479:2;30476:1;30472:10;30467:15;;30443:113;;;30574:6;30571:1;30568:13;30565:2;;;30654:1;30645:6;30640:3;30636:16;30629:27;30565:2;30414:258;;;;:::o;30678:320::-;;30759:1;30753:4;30749:12;30739:22;;30806:1;30800:4;30796:12;30827:18;30817:2;;30883:4;30875:6;30871:17;30861:27;;30817:2;30945;30937:6;30934:14;30914:18;30911:38;30908:2;;;30964:18;;:::i;:::-;30908:2;30729:269;;;;:::o;31004:233::-;;31066:24;31084:5;31066:24;:::i;:::-;31057:33;;31112:66;31105:5;31102:77;31099:2;;;31182:18;;:::i;:::-;31099:2;31229:1;31222:5;31218:13;31211:20;;31047:190;;;:::o;31243:176::-;;31292:20;31310:1;31292:20;:::i;:::-;31287:25;;31326:20;31344:1;31326:20;:::i;:::-;31321:25;;31365:1;31355:2;;31370:18;;:::i;:::-;31355:2;31411:1;31408;31404:9;31399:14;;31277:142;;;;:::o;31425:180::-;31473:77;31470:1;31463:88;31570:4;31567:1;31560:15;31594:4;31591:1;31584:15;31611:180;31659:77;31656:1;31649:88;31756:4;31753:1;31746:15;31780:4;31777:1;31770:15;31797:180;31845:77;31842:1;31835:88;31942:4;31939:1;31932:15;31966:4;31963:1;31956:15;31983:180;32031:77;32028:1;32021:88;32128:4;32125:1;32118:15;32152:4;32149:1;32142:15;32169:102;;32261:2;32257:7;32252:2;32245:5;32241:14;32237:28;32227:38;;32217:54;;;:::o;32277:122::-;32350:24;32368:5;32350:24;:::i;:::-;32343:5;32340:35;32330:2;;32389:1;32386;32379:12;32330:2;32320:79;:::o;32405:116::-;32475:21;32490:5;32475:21;:::i;:::-;32468:5;32465:32;32455:2;;32511:1;32508;32501:12;32455:2;32445:76;:::o;32527:120::-;32599:23;32616:5;32599:23;:::i;:::-;32592:5;32589:34;32579:2;;32637:1;32634;32627:12;32579:2;32569:78;:::o;32653:122::-;32726:24;32744:5;32726:24;:::i;:::-;32719:5;32716:35;32706:2;;32765:1;32762;32755:12;32706:2;32696:79;:::o

Swarm Source

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