ETH Price: $2,742.08 (-0.51%)

Token

hosts (HOSTS)
 

Overview

Max Total Supply

1,000 HOSTS

Holders

323

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
froghybrid.eth
Balance
3 HOSTS
0x4f8ac8ddf07594dc07efab48cdc1aca5602fd50c
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:
hosts

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-12
*/

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: erc721a/contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;








error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // 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;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @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 override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        _addressData[owner].aux = aux;
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return _ownershipOf(tokenId).addr;
    }

    /**
     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

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

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_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 {
        _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 {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (safe && to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev This is equivalent to _burn(tokenId, false)
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            AddressData storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
            return retval == IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

// File: contracts/hosts.sol


pragma solidity ^0.8.14;



contract hosts is ERC721A, Ownable {
    uint256 public MAX_SUPPLY = 1000;
    bool private isPublicSaleLive = false;
    bool private reserveMinted = false;

    string public baseURI;
    string public contractURI;

    constructor() ERC721A("hosts", "HOSTS") {}

    function mint(uint256 _quantity) external {
        require((balanceOf(msg.sender) + _quantity) < 4, "You already have enough mfer!");
        require(isPublicSaleLive, "Public sale not live yet mfer!");
        require(totalSupply() + _quantity <= MAX_SUPPLY, "Not enough tokens left mfer!");
        _safeMint(msg.sender, _quantity);
    }

    function mintReserve() external onlyOwner {
        require(!reserveMinted, "The reserved supply is already minted mfer!");
        reserveMinted = true;
        _safeMint(msg.sender, 100);
    }

    function setPublicSale(bool _isLive) external onlyOwner {
        isPublicSaleLive = _isLive;
    }

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

    function setBaseURI(string calldata __baseURI) public onlyOwner {
        baseURI = __baseURI;
    }

    function setContractURI(string calldata _contractURI) public onlyOwner {
        contractURI = _contractURI;
    }

    function getIsPublicSaleLive() view external returns(bool isSaleLive_) {
        return isPublicSaleLive;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getIsPublicSaleLive","outputs":[{"internalType":"bool","name":"isSaleLive_","type":"bool"}],"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":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintReserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"__baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_contractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isLive","type":"bool"}],"name":"setPublicSale","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"}]

60806040526103e86009556000600a60006101000a81548160ff0219169083151502179055506000600a60016101000a81548160ff0219169083151502179055503480156200004d57600080fd5b506040518060400160405280600581526020017f686f7374730000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f484f5354530000000000000000000000000000000000000000000000000000008152508160029080519060200190620000d2929190620001fd565b508060039080519060200190620000eb929190620001fd565b50620000fc6200012a60201b60201c565b600081905550505062000124620001186200012f60201b60201c565b6200013760201b60201c565b62000311565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200020b90620002dc565b90600052602060002090601f0160209004810192826200022f57600085556200027b565b82601f106200024a57805160ff19168380011785556200027b565b828001600101855582156200027b579182015b828111156200027a5782518255916020019190600101906200025d565b5b5090506200028a91906200028e565b5090565b5b80821115620002a95760008160009055506001016200028f565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002f557607f821691505b6020821081036200030b576200030a620002ad565b5b50919050565b61322480620003216000396000f3fe608060405234801561001057600080fd5b506004361061018e5760003560e01c8063715018a6116100de578063a22cb46511610097578063d185ad9411610071578063d185ad9414610447578063e8a3d48514610465578063e985e9c514610483578063f2fde38b146104b35761018e565b8063a22cb465146103df578063b88d4fde146103fb578063c87b56dd146104175761018e565b8063715018a614610357578063890ac366146103615780638da5cb5b1461036b578063938e3d7b1461038957806395d89b41146103a5578063a0712d68146103c35761018e565b806332cb6b0c1161014b5780635aca1bb6116101255780635aca1bb6146102bd5780636352211e146102d95780636c0360eb1461030957806370a08231146103275761018e565b806332cb6b0c1461026757806342842e0e1461028557806355f804b3146102a15761018e565b806301ffc9a71461019357806306fdde03146101c3578063081812fc146101e1578063095ea7b31461021157806318160ddd1461022d57806323b872dd1461024b575b600080fd5b6101ad60048036038101906101a89190612585565b6104cf565b6040516101ba91906125cd565b60405180910390f35b6101cb6105b1565b6040516101d89190612681565b60405180910390f35b6101fb60048036038101906101f691906126d9565b610643565b6040516102089190612747565b60405180910390f35b61022b6004803603810190610226919061278e565b6106bf565b005b6102356107c9565b60405161024291906127dd565b60405180910390f35b610265600480360381019061026091906127f8565b6107e0565b005b61026f6107f0565b60405161027c91906127dd565b60405180910390f35b61029f600480360381019061029a91906127f8565b6107f6565b005b6102bb60048036038101906102b691906128b0565b610816565b005b6102d760048036038101906102d29190612929565b6108a8565b005b6102f360048036038101906102ee91906126d9565b610941565b6040516103009190612747565b60405180910390f35b610311610957565b60405161031e9190612681565b60405180910390f35b610341600480360381019061033c9190612956565b6109e5565b60405161034e91906127dd565b60405180910390f35b61035f610ab4565b005b610369610b3c565b005b610373610c30565b6040516103809190612747565b60405180910390f35b6103a3600480360381019061039e91906128b0565b610c5a565b005b6103ad610cec565b6040516103ba9190612681565b60405180910390f35b6103dd60048036038101906103d891906126d9565b610d7e565b005b6103f960048036038101906103f49190612983565b610e87565b005b61041560048036038101906104109190612af3565b610ffe565b005b610431600480360381019061042c91906126d9565b61107a565b60405161043e9190612681565b60405180910390f35b61044f611118565b60405161045c91906125cd565b60405180910390f35b61046d61112f565b60405161047a9190612681565b60405180910390f35b61049d60048036038101906104989190612b76565b6111bd565b6040516104aa91906125cd565b60405180910390f35b6104cd60048036038101906104c89190612956565b611251565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061059a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105aa57506105a982611348565b5b9050919050565b6060600280546105c090612be5565b80601f01602080910402602001604051908101604052809291908181526020018280546105ec90612be5565b80156106395780601f1061060e57610100808354040283529160200191610639565b820191906000526020600020905b81548152906001019060200180831161061c57829003601f168201915b5050505050905090565b600061064e826113b2565b610684576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006106ca82610941565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610731576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610750611400565b73ffffffffffffffffffffffffffffffffffffffff161415801561078257506107808161077b611400565b6111bd565b155b156107b9576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6107c4838383611408565b505050565b60006107d36114ba565b6001546000540303905090565b6107eb8383836114bf565b505050565b60095481565b61081183838360405180602001604052806000815250610ffe565b505050565b61081e611400565b73ffffffffffffffffffffffffffffffffffffffff1661083c610c30565b73ffffffffffffffffffffffffffffffffffffffff1614610892576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088990612c62565b60405180910390fd5b8181600b91906108a3929190612433565b505050565b6108b0611400565b73ffffffffffffffffffffffffffffffffffffffff166108ce610c30565b73ffffffffffffffffffffffffffffffffffffffff1614610924576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091b90612c62565b60405180910390fd5b80600a60006101000a81548160ff02191690831515021790555050565b600061094c82611973565b600001519050919050565b600b805461096490612be5565b80601f016020809104026020016040519081016040528092919081815260200182805461099090612be5565b80156109dd5780601f106109b2576101008083540402835291602001916109dd565b820191906000526020600020905b8154815290600101906020018083116109c057829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a4c576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610abc611400565b73ffffffffffffffffffffffffffffffffffffffff16610ada610c30565b73ffffffffffffffffffffffffffffffffffffffff1614610b30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2790612c62565b60405180910390fd5b610b3a6000611c02565b565b610b44611400565b73ffffffffffffffffffffffffffffffffffffffff16610b62610c30565b73ffffffffffffffffffffffffffffffffffffffff1614610bb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610baf90612c62565b60405180910390fd5b600a60019054906101000a900460ff1615610c08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bff90612cf4565b60405180910390fd5b6001600a60016101000a81548160ff021916908315150217905550610c2e336064611cc8565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610c62611400565b73ffffffffffffffffffffffffffffffffffffffff16610c80610c30565b73ffffffffffffffffffffffffffffffffffffffff1614610cd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccd90612c62565b60405180910390fd5b8181600c9190610ce7929190612433565b505050565b606060038054610cfb90612be5565b80601f0160208091040260200160405190810160405280929190818152602001828054610d2790612be5565b8015610d745780601f10610d4957610100808354040283529160200191610d74565b820191906000526020600020905b815481529060010190602001808311610d5757829003601f168201915b5050505050905090565b600481610d8a336109e5565b610d949190612d43565b10610dd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcb90612de5565b60405180910390fd5b600a60009054906101000a900460ff16610e23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1a90612e51565b60405180910390fd5b60095481610e2f6107c9565b610e399190612d43565b1115610e7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7190612ebd565b60405180910390fd5b610e843382611cc8565b50565b610e8f611400565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ef3576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000610f00611400565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610fad611400565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610ff291906125cd565b60405180910390a35050565b6110098484846114bf565b6110288373ffffffffffffffffffffffffffffffffffffffff16611ce6565b801561103d575061103b84848484611d09565b155b15611074576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060611085826113b2565b6110bb576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006110c5611e59565b905060008151036110e55760405180602001604052806000815250611110565b806110ef84611eeb565b604051602001611100929190612f19565b6040516020818303038152906040525b915050919050565b6000600a60009054906101000a900460ff16905090565b600c805461113c90612be5565b80601f016020809104026020016040519081016040528092919081815260200182805461116890612be5565b80156111b55780601f1061118a576101008083540402835291602001916111b5565b820191906000526020600020905b81548152906001019060200180831161119857829003601f168201915b505050505081565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611259611400565b73ffffffffffffffffffffffffffffffffffffffff16611277610c30565b73ffffffffffffffffffffffffffffffffffffffff16146112cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c490612c62565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361133c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133390612faf565b60405180910390fd5b61134581611c02565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816113bd6114ba565b111580156113cc575060005482105b80156113f9575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b60006114ca82611973565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611535576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611556611400565b73ffffffffffffffffffffffffffffffffffffffff16148061158557506115848561157f611400565b6111bd565b5b806115ca5750611593611400565b73ffffffffffffffffffffffffffffffffffffffff166115b284610643565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611603576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611669576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611676858585600161204b565b61168260008487611408565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361190157600054821461190057878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461196c8585856001612051565b5050505050565b61197b6124b9565b6000829050806119896114ba565b11158015611998575060005481105b15611bcb576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611bc957600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611aad578092505050611bfd565b5b600115611bc857818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611bc3578092505050611bfd565b611aae565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611ce2828260405180602001604052806000815250612057565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611d2f611400565b8786866040518563ffffffff1660e01b8152600401611d519493929190613024565b6020604051808303816000875af1925050508015611d8d57506040513d601f19601f82011682018060405250810190611d8a9190613085565b60015b611e06573d8060008114611dbd576040519150601f19603f3d011682016040523d82523d6000602084013e611dc2565b606091505b506000815103611dfe576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600b8054611e6890612be5565b80601f0160208091040260200160405190810160405280929190818152602001828054611e9490612be5565b8015611ee15780601f10611eb657610100808354040283529160200191611ee1565b820191906000526020600020905b815481529060010190602001808311611ec457829003601f168201915b5050505050905090565b606060008203611f32576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612046565b600082905060005b60008214611f64578080611f4d906130b2565b915050600a82611f5d9190613129565b9150611f3a565b60008167ffffffffffffffff811115611f8057611f7f6129c8565b5b6040519080825280601f01601f191660200182016040528015611fb25781602001600182028036833780820191505090505b5090505b6000851461203f57600182611fcb919061315a565b9150600a85611fda919061318e565b6030611fe69190612d43565b60f81b818381518110611ffc57611ffb6131bf565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856120389190613129565b9450611fb6565b8093505050505b919050565b50505050565b50505050565b6120648383836001612069565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036120d5576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000840361210f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61211c600086838761204b565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156122e657506122e58773ffffffffffffffffffffffffffffffffffffffff16611ce6565b5b156123ab575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461235b6000888480600101955088611d09565b612391576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082036122ec5782600054146123a657600080fd5b612416565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082036123ac575b81600081905550505061242c6000868387612051565b5050505050565b82805461243f90612be5565b90600052602060002090601f01602090048101928261246157600085556124a8565b82601f1061247a57803560ff19168380011785556124a8565b828001600101855582156124a8579182015b828111156124a757823582559160200191906001019061248c565b5b5090506124b591906124fc565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156125155760008160009055506001016124fd565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6125628161252d565b811461256d57600080fd5b50565b60008135905061257f81612559565b92915050565b60006020828403121561259b5761259a612523565b5b60006125a984828501612570565b91505092915050565b60008115159050919050565b6125c7816125b2565b82525050565b60006020820190506125e260008301846125be565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612622578082015181840152602081019050612607565b83811115612631576000848401525b50505050565b6000601f19601f8301169050919050565b6000612653826125e8565b61265d81856125f3565b935061266d818560208601612604565b61267681612637565b840191505092915050565b6000602082019050818103600083015261269b8184612648565b905092915050565b6000819050919050565b6126b6816126a3565b81146126c157600080fd5b50565b6000813590506126d3816126ad565b92915050565b6000602082840312156126ef576126ee612523565b5b60006126fd848285016126c4565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061273182612706565b9050919050565b61274181612726565b82525050565b600060208201905061275c6000830184612738565b92915050565b61276b81612726565b811461277657600080fd5b50565b60008135905061278881612762565b92915050565b600080604083850312156127a5576127a4612523565b5b60006127b385828601612779565b92505060206127c4858286016126c4565b9150509250929050565b6127d7816126a3565b82525050565b60006020820190506127f260008301846127ce565b92915050565b60008060006060848603121561281157612810612523565b5b600061281f86828701612779565b935050602061283086828701612779565b9250506040612841868287016126c4565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f8401126128705761286f61284b565b5b8235905067ffffffffffffffff81111561288d5761288c612850565b5b6020830191508360018202830111156128a9576128a8612855565b5b9250929050565b600080602083850312156128c7576128c6612523565b5b600083013567ffffffffffffffff8111156128e5576128e4612528565b5b6128f18582860161285a565b92509250509250929050565b612906816125b2565b811461291157600080fd5b50565b600081359050612923816128fd565b92915050565b60006020828403121561293f5761293e612523565b5b600061294d84828501612914565b91505092915050565b60006020828403121561296c5761296b612523565b5b600061297a84828501612779565b91505092915050565b6000806040838503121561299a57612999612523565b5b60006129a885828601612779565b92505060206129b985828601612914565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612a0082612637565b810181811067ffffffffffffffff82111715612a1f57612a1e6129c8565b5b80604052505050565b6000612a32612519565b9050612a3e82826129f7565b919050565b600067ffffffffffffffff821115612a5e57612a5d6129c8565b5b612a6782612637565b9050602081019050919050565b82818337600083830152505050565b6000612a96612a9184612a43565b612a28565b905082815260208101848484011115612ab257612ab16129c3565b5b612abd848285612a74565b509392505050565b600082601f830112612ada57612ad961284b565b5b8135612aea848260208601612a83565b91505092915050565b60008060008060808587031215612b0d57612b0c612523565b5b6000612b1b87828801612779565b9450506020612b2c87828801612779565b9350506040612b3d878288016126c4565b925050606085013567ffffffffffffffff811115612b5e57612b5d612528565b5b612b6a87828801612ac5565b91505092959194509250565b60008060408385031215612b8d57612b8c612523565b5b6000612b9b85828601612779565b9250506020612bac85828601612779565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612bfd57607f821691505b602082108103612c1057612c0f612bb6565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612c4c6020836125f3565b9150612c5782612c16565b602082019050919050565b60006020820190508181036000830152612c7b81612c3f565b9050919050565b7f54686520726573657276656420737570706c7920697320616c7265616479206d60008201527f696e746564206d66657221000000000000000000000000000000000000000000602082015250565b6000612cde602b836125f3565b9150612ce982612c82565b604082019050919050565b60006020820190508181036000830152612d0d81612cd1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612d4e826126a3565b9150612d59836126a3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612d8e57612d8d612d14565b5b828201905092915050565b7f596f7520616c7265616479206861766520656e6f756768206d66657221000000600082015250565b6000612dcf601d836125f3565b9150612dda82612d99565b602082019050919050565b60006020820190508181036000830152612dfe81612dc2565b9050919050565b7f5075626c69632073616c65206e6f74206c69766520796574206d666572210000600082015250565b6000612e3b601e836125f3565b9150612e4682612e05565b602082019050919050565b60006020820190508181036000830152612e6a81612e2e565b9050919050565b7f4e6f7420656e6f75676820746f6b656e73206c656674206d6665722100000000600082015250565b6000612ea7601c836125f3565b9150612eb282612e71565b602082019050919050565b60006020820190508181036000830152612ed681612e9a565b9050919050565b600081905092915050565b6000612ef3826125e8565b612efd8185612edd565b9350612f0d818560208601612604565b80840191505092915050565b6000612f258285612ee8565b9150612f318284612ee8565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612f996026836125f3565b9150612fa482612f3d565b604082019050919050565b60006020820190508181036000830152612fc881612f8c565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612ff682612fcf565b6130008185612fda565b9350613010818560208601612604565b61301981612637565b840191505092915050565b60006080820190506130396000830187612738565b6130466020830186612738565b61305360408301856127ce565b81810360608301526130658184612feb565b905095945050505050565b60008151905061307f81612559565b92915050565b60006020828403121561309b5761309a612523565b5b60006130a984828501613070565b91505092915050565b60006130bd826126a3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036130ef576130ee612d14565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613134826126a3565b915061313f836126a3565b92508261314f5761314e6130fa565b5b828204905092915050565b6000613165826126a3565b9150613170836126a3565b92508282101561318357613182612d14565b5b828203905092915050565b6000613199826126a3565b91506131a4836126a3565b9250826131b4576131b36130fa565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220ad76b2b00cea5aca2c53752f61db547009bbf8c88d7e5fdbcb7cb2ee7ce61bb064736f6c634300080e0033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061018e5760003560e01c8063715018a6116100de578063a22cb46511610097578063d185ad9411610071578063d185ad9414610447578063e8a3d48514610465578063e985e9c514610483578063f2fde38b146104b35761018e565b8063a22cb465146103df578063b88d4fde146103fb578063c87b56dd146104175761018e565b8063715018a614610357578063890ac366146103615780638da5cb5b1461036b578063938e3d7b1461038957806395d89b41146103a5578063a0712d68146103c35761018e565b806332cb6b0c1161014b5780635aca1bb6116101255780635aca1bb6146102bd5780636352211e146102d95780636c0360eb1461030957806370a08231146103275761018e565b806332cb6b0c1461026757806342842e0e1461028557806355f804b3146102a15761018e565b806301ffc9a71461019357806306fdde03146101c3578063081812fc146101e1578063095ea7b31461021157806318160ddd1461022d57806323b872dd1461024b575b600080fd5b6101ad60048036038101906101a89190612585565b6104cf565b6040516101ba91906125cd565b60405180910390f35b6101cb6105b1565b6040516101d89190612681565b60405180910390f35b6101fb60048036038101906101f691906126d9565b610643565b6040516102089190612747565b60405180910390f35b61022b6004803603810190610226919061278e565b6106bf565b005b6102356107c9565b60405161024291906127dd565b60405180910390f35b610265600480360381019061026091906127f8565b6107e0565b005b61026f6107f0565b60405161027c91906127dd565b60405180910390f35b61029f600480360381019061029a91906127f8565b6107f6565b005b6102bb60048036038101906102b691906128b0565b610816565b005b6102d760048036038101906102d29190612929565b6108a8565b005b6102f360048036038101906102ee91906126d9565b610941565b6040516103009190612747565b60405180910390f35b610311610957565b60405161031e9190612681565b60405180910390f35b610341600480360381019061033c9190612956565b6109e5565b60405161034e91906127dd565b60405180910390f35b61035f610ab4565b005b610369610b3c565b005b610373610c30565b6040516103809190612747565b60405180910390f35b6103a3600480360381019061039e91906128b0565b610c5a565b005b6103ad610cec565b6040516103ba9190612681565b60405180910390f35b6103dd60048036038101906103d891906126d9565b610d7e565b005b6103f960048036038101906103f49190612983565b610e87565b005b61041560048036038101906104109190612af3565b610ffe565b005b610431600480360381019061042c91906126d9565b61107a565b60405161043e9190612681565b60405180910390f35b61044f611118565b60405161045c91906125cd565b60405180910390f35b61046d61112f565b60405161047a9190612681565b60405180910390f35b61049d60048036038101906104989190612b76565b6111bd565b6040516104aa91906125cd565b60405180910390f35b6104cd60048036038101906104c89190612956565b611251565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061059a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105aa57506105a982611348565b5b9050919050565b6060600280546105c090612be5565b80601f01602080910402602001604051908101604052809291908181526020018280546105ec90612be5565b80156106395780601f1061060e57610100808354040283529160200191610639565b820191906000526020600020905b81548152906001019060200180831161061c57829003601f168201915b5050505050905090565b600061064e826113b2565b610684576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006106ca82610941565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610731576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610750611400565b73ffffffffffffffffffffffffffffffffffffffff161415801561078257506107808161077b611400565b6111bd565b155b156107b9576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6107c4838383611408565b505050565b60006107d36114ba565b6001546000540303905090565b6107eb8383836114bf565b505050565b60095481565b61081183838360405180602001604052806000815250610ffe565b505050565b61081e611400565b73ffffffffffffffffffffffffffffffffffffffff1661083c610c30565b73ffffffffffffffffffffffffffffffffffffffff1614610892576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088990612c62565b60405180910390fd5b8181600b91906108a3929190612433565b505050565b6108b0611400565b73ffffffffffffffffffffffffffffffffffffffff166108ce610c30565b73ffffffffffffffffffffffffffffffffffffffff1614610924576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091b90612c62565b60405180910390fd5b80600a60006101000a81548160ff02191690831515021790555050565b600061094c82611973565b600001519050919050565b600b805461096490612be5565b80601f016020809104026020016040519081016040528092919081815260200182805461099090612be5565b80156109dd5780601f106109b2576101008083540402835291602001916109dd565b820191906000526020600020905b8154815290600101906020018083116109c057829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a4c576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610abc611400565b73ffffffffffffffffffffffffffffffffffffffff16610ada610c30565b73ffffffffffffffffffffffffffffffffffffffff1614610b30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2790612c62565b60405180910390fd5b610b3a6000611c02565b565b610b44611400565b73ffffffffffffffffffffffffffffffffffffffff16610b62610c30565b73ffffffffffffffffffffffffffffffffffffffff1614610bb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610baf90612c62565b60405180910390fd5b600a60019054906101000a900460ff1615610c08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bff90612cf4565b60405180910390fd5b6001600a60016101000a81548160ff021916908315150217905550610c2e336064611cc8565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610c62611400565b73ffffffffffffffffffffffffffffffffffffffff16610c80610c30565b73ffffffffffffffffffffffffffffffffffffffff1614610cd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccd90612c62565b60405180910390fd5b8181600c9190610ce7929190612433565b505050565b606060038054610cfb90612be5565b80601f0160208091040260200160405190810160405280929190818152602001828054610d2790612be5565b8015610d745780601f10610d4957610100808354040283529160200191610d74565b820191906000526020600020905b815481529060010190602001808311610d5757829003601f168201915b5050505050905090565b600481610d8a336109e5565b610d949190612d43565b10610dd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcb90612de5565b60405180910390fd5b600a60009054906101000a900460ff16610e23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1a90612e51565b60405180910390fd5b60095481610e2f6107c9565b610e399190612d43565b1115610e7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7190612ebd565b60405180910390fd5b610e843382611cc8565b50565b610e8f611400565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ef3576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000610f00611400565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610fad611400565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610ff291906125cd565b60405180910390a35050565b6110098484846114bf565b6110288373ffffffffffffffffffffffffffffffffffffffff16611ce6565b801561103d575061103b84848484611d09565b155b15611074576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060611085826113b2565b6110bb576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006110c5611e59565b905060008151036110e55760405180602001604052806000815250611110565b806110ef84611eeb565b604051602001611100929190612f19565b6040516020818303038152906040525b915050919050565b6000600a60009054906101000a900460ff16905090565b600c805461113c90612be5565b80601f016020809104026020016040519081016040528092919081815260200182805461116890612be5565b80156111b55780601f1061118a576101008083540402835291602001916111b5565b820191906000526020600020905b81548152906001019060200180831161119857829003601f168201915b505050505081565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611259611400565b73ffffffffffffffffffffffffffffffffffffffff16611277610c30565b73ffffffffffffffffffffffffffffffffffffffff16146112cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c490612c62565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361133c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133390612faf565b60405180910390fd5b61134581611c02565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816113bd6114ba565b111580156113cc575060005482105b80156113f9575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b60006114ca82611973565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611535576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611556611400565b73ffffffffffffffffffffffffffffffffffffffff16148061158557506115848561157f611400565b6111bd565b5b806115ca5750611593611400565b73ffffffffffffffffffffffffffffffffffffffff166115b284610643565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611603576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611669576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611676858585600161204b565b61168260008487611408565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361190157600054821461190057878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461196c8585856001612051565b5050505050565b61197b6124b9565b6000829050806119896114ba565b11158015611998575060005481105b15611bcb576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611bc957600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611aad578092505050611bfd565b5b600115611bc857818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611bc3578092505050611bfd565b611aae565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611ce2828260405180602001604052806000815250612057565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611d2f611400565b8786866040518563ffffffff1660e01b8152600401611d519493929190613024565b6020604051808303816000875af1925050508015611d8d57506040513d601f19601f82011682018060405250810190611d8a9190613085565b60015b611e06573d8060008114611dbd576040519150601f19603f3d011682016040523d82523d6000602084013e611dc2565b606091505b506000815103611dfe576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600b8054611e6890612be5565b80601f0160208091040260200160405190810160405280929190818152602001828054611e9490612be5565b8015611ee15780601f10611eb657610100808354040283529160200191611ee1565b820191906000526020600020905b815481529060010190602001808311611ec457829003601f168201915b5050505050905090565b606060008203611f32576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612046565b600082905060005b60008214611f64578080611f4d906130b2565b915050600a82611f5d9190613129565b9150611f3a565b60008167ffffffffffffffff811115611f8057611f7f6129c8565b5b6040519080825280601f01601f191660200182016040528015611fb25781602001600182028036833780820191505090505b5090505b6000851461203f57600182611fcb919061315a565b9150600a85611fda919061318e565b6030611fe69190612d43565b60f81b818381518110611ffc57611ffb6131bf565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856120389190613129565b9450611fb6565b8093505050505b919050565b50505050565b50505050565b6120648383836001612069565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036120d5576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000840361210f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61211c600086838761204b565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156122e657506122e58773ffffffffffffffffffffffffffffffffffffffff16611ce6565b5b156123ab575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461235b6000888480600101955088611d09565b612391576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082036122ec5782600054146123a657600080fd5b612416565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082036123ac575b81600081905550505061242c6000868387612051565b5050505050565b82805461243f90612be5565b90600052602060002090601f01602090048101928261246157600085556124a8565b82601f1061247a57803560ff19168380011785556124a8565b828001600101855582156124a8579182015b828111156124a757823582559160200191906001019061248c565b5b5090506124b591906124fc565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156125155760008160009055506001016124fd565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6125628161252d565b811461256d57600080fd5b50565b60008135905061257f81612559565b92915050565b60006020828403121561259b5761259a612523565b5b60006125a984828501612570565b91505092915050565b60008115159050919050565b6125c7816125b2565b82525050565b60006020820190506125e260008301846125be565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612622578082015181840152602081019050612607565b83811115612631576000848401525b50505050565b6000601f19601f8301169050919050565b6000612653826125e8565b61265d81856125f3565b935061266d818560208601612604565b61267681612637565b840191505092915050565b6000602082019050818103600083015261269b8184612648565b905092915050565b6000819050919050565b6126b6816126a3565b81146126c157600080fd5b50565b6000813590506126d3816126ad565b92915050565b6000602082840312156126ef576126ee612523565b5b60006126fd848285016126c4565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061273182612706565b9050919050565b61274181612726565b82525050565b600060208201905061275c6000830184612738565b92915050565b61276b81612726565b811461277657600080fd5b50565b60008135905061278881612762565b92915050565b600080604083850312156127a5576127a4612523565b5b60006127b385828601612779565b92505060206127c4858286016126c4565b9150509250929050565b6127d7816126a3565b82525050565b60006020820190506127f260008301846127ce565b92915050565b60008060006060848603121561281157612810612523565b5b600061281f86828701612779565b935050602061283086828701612779565b9250506040612841868287016126c4565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f8401126128705761286f61284b565b5b8235905067ffffffffffffffff81111561288d5761288c612850565b5b6020830191508360018202830111156128a9576128a8612855565b5b9250929050565b600080602083850312156128c7576128c6612523565b5b600083013567ffffffffffffffff8111156128e5576128e4612528565b5b6128f18582860161285a565b92509250509250929050565b612906816125b2565b811461291157600080fd5b50565b600081359050612923816128fd565b92915050565b60006020828403121561293f5761293e612523565b5b600061294d84828501612914565b91505092915050565b60006020828403121561296c5761296b612523565b5b600061297a84828501612779565b91505092915050565b6000806040838503121561299a57612999612523565b5b60006129a885828601612779565b92505060206129b985828601612914565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612a0082612637565b810181811067ffffffffffffffff82111715612a1f57612a1e6129c8565b5b80604052505050565b6000612a32612519565b9050612a3e82826129f7565b919050565b600067ffffffffffffffff821115612a5e57612a5d6129c8565b5b612a6782612637565b9050602081019050919050565b82818337600083830152505050565b6000612a96612a9184612a43565b612a28565b905082815260208101848484011115612ab257612ab16129c3565b5b612abd848285612a74565b509392505050565b600082601f830112612ada57612ad961284b565b5b8135612aea848260208601612a83565b91505092915050565b60008060008060808587031215612b0d57612b0c612523565b5b6000612b1b87828801612779565b9450506020612b2c87828801612779565b9350506040612b3d878288016126c4565b925050606085013567ffffffffffffffff811115612b5e57612b5d612528565b5b612b6a87828801612ac5565b91505092959194509250565b60008060408385031215612b8d57612b8c612523565b5b6000612b9b85828601612779565b9250506020612bac85828601612779565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612bfd57607f821691505b602082108103612c1057612c0f612bb6565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612c4c6020836125f3565b9150612c5782612c16565b602082019050919050565b60006020820190508181036000830152612c7b81612c3f565b9050919050565b7f54686520726573657276656420737570706c7920697320616c7265616479206d60008201527f696e746564206d66657221000000000000000000000000000000000000000000602082015250565b6000612cde602b836125f3565b9150612ce982612c82565b604082019050919050565b60006020820190508181036000830152612d0d81612cd1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612d4e826126a3565b9150612d59836126a3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612d8e57612d8d612d14565b5b828201905092915050565b7f596f7520616c7265616479206861766520656e6f756768206d66657221000000600082015250565b6000612dcf601d836125f3565b9150612dda82612d99565b602082019050919050565b60006020820190508181036000830152612dfe81612dc2565b9050919050565b7f5075626c69632073616c65206e6f74206c69766520796574206d666572210000600082015250565b6000612e3b601e836125f3565b9150612e4682612e05565b602082019050919050565b60006020820190508181036000830152612e6a81612e2e565b9050919050565b7f4e6f7420656e6f75676820746f6b656e73206c656674206d6665722100000000600082015250565b6000612ea7601c836125f3565b9150612eb282612e71565b602082019050919050565b60006020820190508181036000830152612ed681612e9a565b9050919050565b600081905092915050565b6000612ef3826125e8565b612efd8185612edd565b9350612f0d818560208601612604565b80840191505092915050565b6000612f258285612ee8565b9150612f318284612ee8565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612f996026836125f3565b9150612fa482612f3d565b604082019050919050565b60006020820190508181036000830152612fc881612f8c565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612ff682612fcf565b6130008185612fda565b9350613010818560208601612604565b61301981612637565b840191505092915050565b60006080820190506130396000830187612738565b6130466020830186612738565b61305360408301856127ce565b81810360608301526130658184612feb565b905095945050505050565b60008151905061307f81612559565b92915050565b60006020828403121561309b5761309a612523565b5b60006130a984828501613070565b91505092915050565b60006130bd826126a3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036130ef576130ee612d14565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613134826126a3565b915061313f836126a3565b92508261314f5761314e6130fa565b5b828204905092915050565b6000613165826126a3565b9150613170836126a3565b92508282101561318357613182612d14565b5b828203905092915050565b6000613199826126a3565b91506131a4836126a3565b9250826131b4576131b36130fa565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220ad76b2b00cea5aca2c53752f61db547009bbf8c88d7e5fdbcb7cb2ee7ce61bb064736f6c634300080e0033

Deployed Bytecode Sourcemap

44783:1408:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26972:305;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30085:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31588:204;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31151:371;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26221:303;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32453:170;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44825:32;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32694:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45841:102;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45624:101;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29893:125;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44951:21;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27341:206;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4730:103;;;:::i;:::-;;45417:199;;;:::i;:::-;;4079:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45951:116;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30254:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45063:346;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31864:287;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32950:369;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30429:318;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46075:113;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44979:25;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32222:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4988:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26972:305;27074:4;27126:25;27111:40;;;:11;:40;;;;:105;;;;27183:33;27168:48;;;:11;:48;;;;27111:105;:158;;;;27233:36;27257:11;27233:23;:36::i;:::-;27111:158;27091:178;;26972:305;;;:::o;30085:100::-;30139:13;30172:5;30165:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30085:100;:::o;31588:204::-;31656:7;31681:16;31689:7;31681;:16::i;:::-;31676:64;;31706:34;;;;;;;;;;;;;;31676:64;31760:15;:24;31776:7;31760:24;;;;;;;;;;;;;;;;;;;;;31753:31;;31588:204;;;:::o;31151:371::-;31224:13;31240:24;31256:7;31240:15;:24::i;:::-;31224:40;;31285:5;31279:11;;:2;:11;;;31275:48;;31299:24;;;;;;;;;;;;;;31275:48;31356:5;31340:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;31366:37;31383:5;31390:12;:10;:12::i;:::-;31366:16;:37::i;:::-;31365:38;31340:63;31336:138;;;31427:35;;;;;;;;;;;;;;31336:138;31486:28;31495:2;31499:7;31508:5;31486:8;:28::i;:::-;31213:309;31151:371;;:::o;26221:303::-;26265:7;26490:15;:13;:15::i;:::-;26475:12;;26459:13;;:28;:46;26452:53;;26221:303;:::o;32453:170::-;32587:28;32597:4;32603:2;32607:7;32587:9;:28::i;:::-;32453:170;;;:::o;44825:32::-;;;;:::o;32694:185::-;32832:39;32849:4;32855:2;32859:7;32832:39;;;;;;;;;;;;:16;:39::i;:::-;32694:185;;;:::o;45841:102::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45926:9:::1;;45916:7;:19;;;;;;;:::i;:::-;;45841:102:::0;;:::o;45624:101::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45710:7:::1;45691:16;;:26;;;;;;;;;;;;;;;;;;45624:101:::0;:::o;29893:125::-;29957:7;29984:21;29997:7;29984:12;:21::i;:::-;:26;;;29977:33;;29893:125;;;:::o;44951:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27341:206::-;27405:7;27446:1;27429:19;;:5;:19;;;27425:60;;27457:28;;;;;;;;;;;;;;27425:60;27511:12;:19;27524:5;27511:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;27503:36;;27496:43;;27341:206;;;:::o;4730:103::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4795:30:::1;4822:1;4795:18;:30::i;:::-;4730:103::o:0;45417:199::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45479:13:::1;;;;;;;;;;;45478:14;45470:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;45567:4;45551:13;;:20;;;;;;;;;;;;;;;;;;45582:26;45592:10;45604:3;45582:9;:26::i;:::-;45417:199::o:0;4079:87::-;4125:7;4152:6;;;;;;;;;;;4145:13;;4079:87;:::o;45951:116::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46047:12:::1;;46033:11;:26;;;;;;;:::i;:::-;;45951:116:::0;;:::o;30254:104::-;30310:13;30343:7;30336:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30254:104;:::o;45063:346::-;45162:1;45149:9;45125:21;45135:10;45125:9;:21::i;:::-;:33;;;;:::i;:::-;45124:39;45116:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;45216:16;;;;;;;;;;;45208:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;45315:10;;45302:9;45286:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:39;;45278:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;45369:32;45379:10;45391:9;45369;:32::i;:::-;45063:346;:::o;31864:287::-;31975:12;:10;:12::i;:::-;31963:24;;:8;:24;;;31959:54;;31996:17;;;;;;;;;;;;;;31959:54;32071:8;32026:18;:32;32045:12;:10;:12::i;:::-;32026:32;;;;;;;;;;;;;;;:42;32059:8;32026:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;32124:8;32095:48;;32110:12;:10;:12::i;:::-;32095:48;;;32134:8;32095:48;;;;;;:::i;:::-;;;;;;;;31864:287;;:::o;32950:369::-;33117:28;33127:4;33133:2;33137:7;33117:9;:28::i;:::-;33160:15;:2;:13;;;:15::i;:::-;:76;;;;;33180:56;33211:4;33217:2;33221:7;33230:5;33180:30;:56::i;:::-;33179:57;33160:76;33156:156;;;33260:40;;;;;;;;;;;;;;33156:156;32950:369;;;;:::o;30429:318::-;30502:13;30533:16;30541:7;30533;:16::i;:::-;30528:59;;30558:29;;;;;;;;;;;;;;30528:59;30600:21;30624:10;:8;:10::i;:::-;30600:34;;30677:1;30658:7;30652:21;:26;:87;;;;;;;;;;;;;;;;;30705:7;30714:18;:7;:16;:18::i;:::-;30688:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;30652:87;30645:94;;;30429:318;;;:::o;46075:113::-;46128:16;46164;;;;;;;;;;;46157:23;;46075:113;:::o;44979:25::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;32222:164::-;32319:4;32343:18;:25;32362:5;32343:25;;;;;;;;;;;;;;;:35;32369:8;32343:35;;;;;;;;;;;;;;;;;;;;;;;;;32336:42;;32222:164;;;;:::o;4988:201::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5097:1:::1;5077:22;;:8;:22;;::::0;5069:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;5153:28;5172:8;5153:18;:28::i;:::-;4988:201:::0;:::o;16863:157::-;16948:4;16987:25;16972:40;;;:11;:40;;;;16965:47;;16863:157;;;:::o;33574:174::-;33631:4;33674:7;33655:15;:13;:15::i;:::-;:26;;:53;;;;;33695:13;;33685:7;:23;33655:53;:85;;;;;33713:11;:20;33725:7;33713:20;;;;;;;;;;;:27;;;;;;;;;;;;33712:28;33655:85;33648:92;;33574:174;;;:::o;2803:98::-;2856:7;2883:10;2876:17;;2803:98;:::o;41731:196::-;41873:2;41846:15;:24;41862:7;41846:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;41911:7;41907:2;41891:28;;41900:5;41891:28;;;;;;;;;;;;41731:196;;;:::o;25995:92::-;26051:7;25995:92;:::o;36674:2130::-;36789:35;36827:21;36840:7;36827:12;:21::i;:::-;36789:59;;36887:4;36865:26;;:13;:18;;;:26;;;36861:67;;36900:28;;;;;;;;;;;;;;36861:67;36941:22;36983:4;36967:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;37004:36;37021:4;37027:12;:10;:12::i;:::-;37004:16;:36::i;:::-;36967:73;:126;;;;37081:12;:10;:12::i;:::-;37057:36;;:20;37069:7;37057:11;:20::i;:::-;:36;;;36967:126;36941:153;;37112:17;37107:66;;37138:35;;;;;;;;;;;;;;37107:66;37202:1;37188:16;;:2;:16;;;37184:52;;37213:23;;;;;;;;;;;;;;37184:52;37249:43;37271:4;37277:2;37281:7;37290:1;37249:21;:43::i;:::-;37357:35;37374:1;37378:7;37387:4;37357:8;:35::i;:::-;37718:1;37688:12;:18;37701:4;37688:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37762:1;37734:12;:16;37747:2;37734:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37780:31;37814:11;:20;37826:7;37814:20;;;;;;;;;;;37780:54;;37865:2;37849:8;:13;;;:18;;;;;;;;;;;;;;;;;;37915:15;37882:8;:23;;;:49;;;;;;;;;;;;;;;;;;38183:19;38215:1;38205:7;:11;38183:33;;38231:31;38265:11;:24;38277:11;38265:24;;;;;;;;;;;38231:58;;38333:1;38308:27;;:8;:13;;;;;;;;;;;;:27;;;38304:384;;38518:13;;38503:11;:28;38499:174;;38572:4;38556:8;:13;;;:20;;;;;;;;;;;;;;;;;;38625:13;:28;;;38599:8;:23;;;:54;;;;;;;;;;;;;;;;;;38499:174;38304:384;37663:1036;;;38735:7;38731:2;38716:27;;38725:4;38716:27;;;;;;;;;;;;38754:42;38775:4;38781:2;38785:7;38794:1;38754:20;:42::i;:::-;36778:2026;;36674:2130;;;:::o;28722:1109::-;28784:21;;:::i;:::-;28818:12;28833:7;28818:22;;28901:4;28882:15;:13;:15::i;:::-;:23;;:47;;;;;28916:13;;28909:4;:20;28882:47;28878:886;;;28950:31;28984:11;:17;28996:4;28984:17;;;;;;;;;;;28950:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29025:9;:16;;;29020:729;;29096:1;29070:28;;:9;:14;;;:28;;;29066:101;;29134:9;29127:16;;;;;;29066:101;29469:261;29476:4;29469:261;;;29509:6;;;;;;;;29554:11;:17;29566:4;29554:17;;;;;;;;;;;29542:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29628:1;29602:28;;:9;:14;;;:28;;;29598:109;;29670:9;29663:16;;;;;;29598:109;29469:261;;;29020:729;28931:833;28878:886;29792:31;;;;;;;;;;;;;;28722:1109;;;;:::o;5349:191::-;5423:16;5442:6;;;;;;;;;;;5423:25;;5468:8;5459:6;;:17;;;;;;;;;;;;;;;;;;5523:8;5492:40;;5513:8;5492:40;;;;;;;;;;;;5412:128;5349:191;:::o;33756:104::-;33825:27;33835:2;33839:8;33825:27;;;;;;;;;;;;:9;:27::i;:::-;33756:104;;:::o;6780:326::-;6840:4;7097:1;7075:7;:19;;;:23;7068:30;;6780:326;;;:::o;42419:667::-;42582:4;42619:2;42603:36;;;42640:12;:10;:12::i;:::-;42654:4;42660:7;42669:5;42603:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;42599:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42854:1;42837:6;:13;:18;42833:235;;42883:40;;;;;;;;;;;;;;42833:235;43026:6;43020:13;43011:6;43007:2;43003:15;42996:38;42599:480;42732:45;;;42722:55;;;:6;:55;;;;42715:62;;;42419:667;;;;;;:::o;45733:100::-;45785:13;45818:7;45811:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45733:100;:::o;365:723::-;421:13;651:1;642:5;:10;638:53;;669:10;;;;;;;;;;;;;;;;;;;;;638:53;701:12;716:5;701:20;;732:14;757:78;772:1;764:4;:9;757:78;;790:8;;;;;:::i;:::-;;;;821:2;813:10;;;;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;845:39;;895:154;911:1;902:5;:10;895:154;;939:1;929:11;;;;;:::i;:::-;;;1006:2;998:5;:10;;;;:::i;:::-;985:2;:24;;;;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1035:2;1026:11;;;;;:::i;:::-;;;895:154;;;1073:6;1059:21;;;;;365:723;;;;:::o;43734:159::-;;;;;:::o;44552:158::-;;;;;:::o;34223:163::-;34346:32;34352:2;34356:8;34366:5;34373:4;34346:5;:32::i;:::-;34223:163;;;:::o;34645:1775::-;34784:20;34807:13;;34784:36;;34849:1;34835:16;;:2;:16;;;34831:48;;34860:19;;;;;;;;;;;;;;34831:48;34906:1;34894:8;:13;34890:44;;34916:18;;;;;;;;;;;;;;34890:44;34947:61;34977:1;34981:2;34985:12;34999:8;34947:21;:61::i;:::-;35320:8;35285:12;:16;35298:2;35285:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35384:8;35344:12;:16;35357:2;35344:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35443:2;35410:11;:25;35422:12;35410:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;35510:15;35460:11;:25;35472:12;35460:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;35543:20;35566:12;35543:35;;35593:11;35622:8;35607:12;:23;35593:37;;35651:4;:23;;;;;35659:15;:2;:13;;;:15::i;:::-;35651:23;35647:641;;;35695:314;35751:12;35747:2;35726:38;;35743:1;35726:38;;;;;;;;;;;;35792:69;35831:1;35835:2;35839:14;;;;;;35855:5;35792:30;:69::i;:::-;35787:174;;35897:40;;;;;;;;;;;;;;35787:174;36004:3;35988:12;:19;35695:314;;36090:12;36073:13;;:29;36069:43;;36104:8;;;36069:43;35647:641;;;36153:120;36209:14;;;;;;36205:2;36184:40;;36201:1;36184:40;;;;;;;;;;;;36268:3;36252:12;:19;36153:120;;35647:641;36318:12;36302:13;:28;;;;35260:1082;;36352:60;36381:1;36385:2;36389:12;36403:8;36352:20;:60::i;:::-;34773:1647;34645:1775;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:117::-;6024:1;6021;6014:12;6038:117;6147:1;6144;6137:12;6161:117;6270:1;6267;6260:12;6298:553;6356:8;6366:6;6416:3;6409:4;6401:6;6397:17;6393:27;6383:122;;6424:79;;:::i;:::-;6383:122;6537:6;6524:20;6514:30;;6567:18;6559:6;6556:30;6553:117;;;6589:79;;:::i;:::-;6553:117;6703:4;6695:6;6691:17;6679:29;;6757:3;6749:4;6741:6;6737:17;6727:8;6723:32;6720:41;6717:128;;;6764:79;;:::i;:::-;6717:128;6298:553;;;;;:::o;6857:529::-;6928:6;6936;6985:2;6973:9;6964:7;6960:23;6956:32;6953:119;;;6991:79;;:::i;:::-;6953:119;7139:1;7128:9;7124:17;7111:31;7169:18;7161:6;7158:30;7155:117;;;7191:79;;:::i;:::-;7155:117;7304:65;7361:7;7352:6;7341:9;7337:22;7304:65;:::i;:::-;7286:83;;;;7082:297;6857:529;;;;;:::o;7392:116::-;7462:21;7477:5;7462:21;:::i;:::-;7455:5;7452:32;7442:60;;7498:1;7495;7488:12;7442:60;7392:116;:::o;7514:133::-;7557:5;7595:6;7582:20;7573:29;;7611:30;7635:5;7611:30;:::i;:::-;7514:133;;;;:::o;7653:323::-;7709:6;7758:2;7746:9;7737:7;7733:23;7729:32;7726:119;;;7764:79;;:::i;:::-;7726:119;7884:1;7909:50;7951:7;7942:6;7931:9;7927:22;7909:50;:::i;:::-;7899:60;;7855:114;7653:323;;;;:::o;7982:329::-;8041:6;8090:2;8078:9;8069:7;8065:23;8061:32;8058:119;;;8096:79;;:::i;:::-;8058:119;8216:1;8241:53;8286:7;8277:6;8266:9;8262:22;8241:53;:::i;:::-;8231:63;;8187:117;7982:329;;;;:::o;8317:468::-;8382:6;8390;8439:2;8427:9;8418:7;8414:23;8410:32;8407:119;;;8445:79;;:::i;:::-;8407:119;8565:1;8590:53;8635:7;8626:6;8615:9;8611:22;8590:53;:::i;:::-;8580:63;;8536:117;8692:2;8718:50;8760:7;8751:6;8740:9;8736:22;8718:50;:::i;:::-;8708:60;;8663:115;8317:468;;;;;:::o;8791:117::-;8900:1;8897;8890:12;8914:180;8962:77;8959:1;8952:88;9059:4;9056:1;9049:15;9083:4;9080:1;9073:15;9100:281;9183:27;9205:4;9183:27;:::i;:::-;9175:6;9171:40;9313:6;9301:10;9298:22;9277:18;9265:10;9262:34;9259:62;9256:88;;;9324:18;;:::i;:::-;9256:88;9364:10;9360:2;9353:22;9143:238;9100:281;;:::o;9387:129::-;9421:6;9448:20;;:::i;:::-;9438:30;;9477:33;9505:4;9497:6;9477:33;:::i;:::-;9387:129;;;:::o;9522:307::-;9583:4;9673:18;9665:6;9662:30;9659:56;;;9695:18;;:::i;:::-;9659:56;9733:29;9755:6;9733:29;:::i;:::-;9725:37;;9817:4;9811;9807:15;9799:23;;9522:307;;;:::o;9835:154::-;9919:6;9914:3;9909;9896:30;9981:1;9972:6;9967:3;9963:16;9956:27;9835:154;;;:::o;9995:410::-;10072:5;10097:65;10113:48;10154:6;10113:48;:::i;:::-;10097:65;:::i;:::-;10088:74;;10185:6;10178:5;10171:21;10223:4;10216:5;10212:16;10261:3;10252:6;10247:3;10243:16;10240:25;10237:112;;;10268:79;;:::i;:::-;10237:112;10358:41;10392:6;10387:3;10382;10358:41;:::i;:::-;10078:327;9995:410;;;;;:::o;10424:338::-;10479:5;10528:3;10521:4;10513:6;10509:17;10505:27;10495:122;;10536:79;;:::i;:::-;10495:122;10653:6;10640:20;10678:78;10752:3;10744:6;10737:4;10729:6;10725:17;10678:78;:::i;:::-;10669:87;;10485:277;10424:338;;;;:::o;10768:943::-;10863:6;10871;10879;10887;10936:3;10924:9;10915:7;10911:23;10907:33;10904:120;;;10943:79;;:::i;:::-;10904:120;11063:1;11088:53;11133:7;11124:6;11113:9;11109:22;11088:53;:::i;:::-;11078:63;;11034:117;11190:2;11216:53;11261:7;11252:6;11241:9;11237:22;11216:53;:::i;:::-;11206:63;;11161:118;11318:2;11344:53;11389:7;11380:6;11369:9;11365:22;11344:53;:::i;:::-;11334:63;;11289:118;11474:2;11463:9;11459:18;11446:32;11505:18;11497:6;11494:30;11491:117;;;11527:79;;:::i;:::-;11491:117;11632:62;11686:7;11677:6;11666:9;11662:22;11632:62;:::i;:::-;11622:72;;11417:287;10768:943;;;;;;;:::o;11717:474::-;11785:6;11793;11842:2;11830:9;11821:7;11817:23;11813:32;11810:119;;;11848:79;;:::i;:::-;11810:119;11968:1;11993:53;12038:7;12029:6;12018:9;12014:22;11993:53;:::i;:::-;11983:63;;11939:117;12095:2;12121:53;12166:7;12157:6;12146:9;12142:22;12121:53;:::i;:::-;12111:63;;12066:118;11717:474;;;;;:::o;12197:180::-;12245:77;12242:1;12235:88;12342:4;12339:1;12332:15;12366:4;12363:1;12356:15;12383:320;12427:6;12464:1;12458:4;12454:12;12444:22;;12511:1;12505:4;12501:12;12532:18;12522:81;;12588:4;12580:6;12576:17;12566:27;;12522:81;12650:2;12642:6;12639:14;12619:18;12616:38;12613:84;;12669:18;;:::i;:::-;12613:84;12434:269;12383:320;;;:::o;12709:182::-;12849:34;12845:1;12837:6;12833:14;12826:58;12709:182;:::o;12897:366::-;13039:3;13060:67;13124:2;13119:3;13060:67;:::i;:::-;13053:74;;13136:93;13225:3;13136:93;:::i;:::-;13254:2;13249:3;13245:12;13238:19;;12897:366;;;:::o;13269:419::-;13435:4;13473:2;13462:9;13458:18;13450:26;;13522:9;13516:4;13512:20;13508:1;13497:9;13493:17;13486:47;13550:131;13676:4;13550:131;:::i;:::-;13542:139;;13269:419;;;:::o;13694:230::-;13834:34;13830:1;13822:6;13818:14;13811:58;13903:13;13898:2;13890:6;13886:15;13879:38;13694:230;:::o;13930:366::-;14072:3;14093:67;14157:2;14152:3;14093:67;:::i;:::-;14086:74;;14169:93;14258:3;14169:93;:::i;:::-;14287:2;14282:3;14278:12;14271:19;;13930:366;;;:::o;14302:419::-;14468:4;14506:2;14495:9;14491:18;14483:26;;14555:9;14549:4;14545:20;14541:1;14530:9;14526:17;14519:47;14583:131;14709:4;14583:131;:::i;:::-;14575:139;;14302:419;;;:::o;14727:180::-;14775:77;14772:1;14765:88;14872:4;14869:1;14862:15;14896:4;14893:1;14886:15;14913:305;14953:3;14972:20;14990:1;14972:20;:::i;:::-;14967:25;;15006:20;15024:1;15006:20;:::i;:::-;15001:25;;15160:1;15092:66;15088:74;15085:1;15082:81;15079:107;;;15166:18;;:::i;:::-;15079:107;15210:1;15207;15203:9;15196:16;;14913:305;;;;:::o;15224:179::-;15364:31;15360:1;15352:6;15348:14;15341:55;15224:179;:::o;15409:366::-;15551:3;15572:67;15636:2;15631:3;15572:67;:::i;:::-;15565:74;;15648:93;15737:3;15648:93;:::i;:::-;15766:2;15761:3;15757:12;15750:19;;15409:366;;;:::o;15781:419::-;15947:4;15985:2;15974:9;15970:18;15962:26;;16034:9;16028:4;16024:20;16020:1;16009:9;16005:17;15998:47;16062:131;16188:4;16062:131;:::i;:::-;16054:139;;15781:419;;;:::o;16206:180::-;16346:32;16342:1;16334:6;16330:14;16323:56;16206:180;:::o;16392:366::-;16534:3;16555:67;16619:2;16614:3;16555:67;:::i;:::-;16548:74;;16631:93;16720:3;16631:93;:::i;:::-;16749:2;16744:3;16740:12;16733:19;;16392:366;;;:::o;16764:419::-;16930:4;16968:2;16957:9;16953:18;16945:26;;17017:9;17011:4;17007:20;17003:1;16992:9;16988:17;16981:47;17045:131;17171:4;17045:131;:::i;:::-;17037:139;;16764:419;;;:::o;17189:178::-;17329:30;17325:1;17317:6;17313:14;17306:54;17189:178;:::o;17373:366::-;17515:3;17536:67;17600:2;17595:3;17536:67;:::i;:::-;17529:74;;17612:93;17701:3;17612:93;:::i;:::-;17730:2;17725:3;17721:12;17714:19;;17373:366;;;:::o;17745:419::-;17911:4;17949:2;17938:9;17934:18;17926:26;;17998:9;17992:4;17988:20;17984:1;17973:9;17969:17;17962:47;18026:131;18152:4;18026:131;:::i;:::-;18018:139;;17745:419;;;:::o;18170:148::-;18272:11;18309:3;18294:18;;18170:148;;;;:::o;18324:377::-;18430:3;18458:39;18491:5;18458:39;:::i;:::-;18513:89;18595:6;18590:3;18513:89;:::i;:::-;18506:96;;18611:52;18656:6;18651:3;18644:4;18637:5;18633:16;18611:52;:::i;:::-;18688:6;18683:3;18679:16;18672:23;;18434:267;18324:377;;;;:::o;18707:435::-;18887:3;18909:95;19000:3;18991:6;18909:95;:::i;:::-;18902:102;;19021:95;19112:3;19103:6;19021:95;:::i;:::-;19014:102;;19133:3;19126:10;;18707:435;;;;;:::o;19148:225::-;19288:34;19284:1;19276:6;19272:14;19265:58;19357:8;19352:2;19344:6;19340:15;19333:33;19148:225;:::o;19379:366::-;19521:3;19542:67;19606:2;19601:3;19542:67;:::i;:::-;19535:74;;19618:93;19707:3;19618:93;:::i;:::-;19736:2;19731:3;19727:12;19720:19;;19379:366;;;:::o;19751:419::-;19917:4;19955:2;19944:9;19940:18;19932:26;;20004:9;19998:4;19994:20;19990:1;19979:9;19975:17;19968:47;20032:131;20158:4;20032:131;:::i;:::-;20024:139;;19751:419;;;:::o;20176:98::-;20227:6;20261:5;20255:12;20245:22;;20176:98;;;:::o;20280:168::-;20363:11;20397:6;20392:3;20385:19;20437:4;20432:3;20428:14;20413:29;;20280:168;;;;:::o;20454:360::-;20540:3;20568:38;20600:5;20568:38;:::i;:::-;20622:70;20685:6;20680:3;20622:70;:::i;:::-;20615:77;;20701:52;20746:6;20741:3;20734:4;20727:5;20723:16;20701:52;:::i;:::-;20778:29;20800:6;20778:29;:::i;:::-;20773:3;20769:39;20762:46;;20544:270;20454:360;;;;:::o;20820:640::-;21015:4;21053:3;21042:9;21038:19;21030:27;;21067:71;21135:1;21124:9;21120:17;21111:6;21067:71;:::i;:::-;21148:72;21216:2;21205:9;21201:18;21192:6;21148:72;:::i;:::-;21230;21298:2;21287:9;21283:18;21274:6;21230:72;:::i;:::-;21349:9;21343:4;21339:20;21334:2;21323:9;21319:18;21312:48;21377:76;21448:4;21439:6;21377:76;:::i;:::-;21369:84;;20820:640;;;;;;;:::o;21466:141::-;21522:5;21553:6;21547:13;21538:22;;21569:32;21595:5;21569:32;:::i;:::-;21466:141;;;;:::o;21613:349::-;21682:6;21731:2;21719:9;21710:7;21706:23;21702:32;21699:119;;;21737:79;;:::i;:::-;21699:119;21857:1;21882:63;21937:7;21928:6;21917:9;21913:22;21882:63;:::i;:::-;21872:73;;21828:127;21613:349;;;;:::o;21968:233::-;22007:3;22030:24;22048:5;22030:24;:::i;:::-;22021:33;;22076:66;22069:5;22066:77;22063:103;;22146:18;;:::i;:::-;22063:103;22193:1;22186:5;22182:13;22175:20;;21968:233;;;:::o;22207:180::-;22255:77;22252:1;22245:88;22352:4;22349:1;22342:15;22376:4;22373:1;22366:15;22393:185;22433:1;22450:20;22468:1;22450:20;:::i;:::-;22445:25;;22484:20;22502:1;22484:20;:::i;:::-;22479:25;;22523:1;22513:35;;22528:18;;:::i;:::-;22513:35;22570:1;22567;22563:9;22558:14;;22393:185;;;;:::o;22584:191::-;22624:4;22644:20;22662:1;22644:20;:::i;:::-;22639:25;;22678:20;22696:1;22678:20;:::i;:::-;22673:25;;22717:1;22714;22711:8;22708:34;;;22722:18;;:::i;:::-;22708:34;22767:1;22764;22760:9;22752:17;;22584:191;;;;:::o;22781:176::-;22813:1;22830:20;22848:1;22830:20;:::i;:::-;22825:25;;22864:20;22882:1;22864:20;:::i;:::-;22859:25;;22903:1;22893:35;;22908:18;;:::i;:::-;22893:35;22949:1;22946;22942:9;22937:14;;22781:176;;;;:::o;22963:180::-;23011:77;23008:1;23001:88;23108:4;23105:1;23098:15;23132:4;23129:1;23122:15

Swarm Source

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