ETH Price: $2,967.35 (+3.57%)
Gas: 2 Gwei

Contract

0x5bd139cC4deB183C4fA2076026220D3Bcc6fe4a6
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Value
Set Approval For...189771452024-01-10 14:28:35177 days ago1704896915IN
0x5bd139cC...Bcc6fe4a6
0 ETH0.0011493946.36346939
Set Approval For...188299572023-12-20 22:02:11198 days ago1703109731IN
0x5bd139cC...Bcc6fe4a6
0 ETH0.0033938672.80005658
Set Approval For...188247652023-12-20 4:32:35199 days ago1703046755IN
0x5bd139cC...Bcc6fe4a6
0 ETH0.0009103836.72232021
Set Approval For...180608332023-09-04 4:49:23306 days ago1693802963IN
0x5bd139cC...Bcc6fe4a6
0 ETH0.000454769.73747856
Set Approval For...172838342023-05-18 3:41:35415 days ago1684381295IN
0x5bd139cC...Bcc6fe4a6
0 ETH0.0018666340.04023868
Set Approval For...170524262023-04-15 12:31:35447 days ago1681561895IN
0x5bd139cC...Bcc6fe4a6
0 ETH0.0011035923.63013166
Transfer From169360022023-03-29 22:47:35464 days ago1680130055IN
0x5bd139cC...Bcc6fe4a6
0 ETH0.0009843924.17891399
Set Approval For...168277352023-03-14 17:39:59479 days ago1678815599IN
0x5bd139cC...Bcc6fe4a6
0 ETH0.0014354230.79048736
Set Approval For...167696712023-03-06 13:40:59487 days ago1678110059IN
0x5bd139cC...Bcc6fe4a6
0 ETH0.0014771431.68550549
Set Approval For...167481722023-03-03 13:06:59490 days ago1677848819IN
0x5bd139cC...Bcc6fe4a6
0 ETH0.0009823621.06141825
Set Approval For...167439352023-03-02 22:48:47491 days ago1677797327IN
0x5bd139cC...Bcc6fe4a6
0 ETH0.0009760720.93724991
Set Approval For...167032292023-02-25 5:27:47496 days ago1677302867IN
0x5bd139cC...Bcc6fe4a6
0 ETH0.0009563620.50385212
Set Approval For...166548492023-02-18 10:12:11503 days ago1676715131IN
0x5bd139cC...Bcc6fe4a6
0 ETH0.0010732423.02168014
Set Approval For...166473252023-02-17 8:43:23504 days ago1676623403IN
0x5bd139cC...Bcc6fe4a6
0 ETH0.0010616322.76090024
Set Approval For...166352312023-02-15 16:07:47506 days ago1676477267IN
0x5bd139cC...Bcc6fe4a6
0 ETH0.0030416265.21082341
Set Approval For...165200612023-01-30 13:52:47522 days ago1675086767IN
0x5bd139cC...Bcc6fe4a6
0 ETH0.0003926115.89084125
Set Approval For...164089232023-01-15 1:27:47538 days ago1673746067IN
0x5bd139cC...Bcc6fe4a6
0 ETH0.000823317.66031676
Set Approval For...163073862022-12-31 21:18:47552 days ago1672521527IN
0x5bd139cC...Bcc6fe4a6
0 ETH0.000784216.79566385
Set Approval For...162852322022-12-28 19:05:59555 days ago1672254359IN
0x5bd139cC...Bcc6fe4a6
0 ETH0.0007263715.58099137
Set Approval For...162852002022-12-28 18:59:35555 days ago1672253975IN
0x5bd139cC...Bcc6fe4a6
0 ETH0.0008356217.89691878
Approve162851352022-12-28 18:46:35555 days ago1672253195IN
0x5bd139cC...Bcc6fe4a6
0 ETH0.0005396517.11075376
Approve162851322022-12-28 18:45:59555 days ago1672253159IN
0x5bd139cC...Bcc6fe4a6
0 ETH0.0009953419.34997804
Approve162851302022-12-28 18:45:35555 days ago1672253135IN
0x5bd139cC...Bcc6fe4a6
0 ETH0.0009909719.26508337
Set Approval For...162011212022-12-17 1:25:59567 days ago1671240359IN
0x5bd139cC...Bcc6fe4a6
0 ETH0.0006762414.50572927
Set Approval For...161998972022-12-16 21:19:47567 days ago1671225587IN
0x5bd139cC...Bcc6fe4a6
0 ETH0.0004447717.94109022
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
NotLarvaLads

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : notlarvalads.sol
// SPDX-License-Identifier: GPL-3.0

/*
FunLarvs    
*/

pragma solidity ^0.8.4;

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

pragma solidity ^0.8.4;

/**
 * @dev Contract module which provides access control
 *
 * the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * mapped to 
 * `onlyOwner`
 */
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() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

pragma solidity ^0.8.4;

/**
 * @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);
    }
}

pragma solidity ^0.8.4;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

pragma solidity ^0.8.4;

/**
 * @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);
}

pragma solidity ^0.8.4;

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

pragma solidity ^0.8.4;


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

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

pragma solidity ^0.8.4;

/**
 * @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);
}

pragma solidity ^0.8.4;

/**
 * @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);
}


pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


pragma solidity ^0.8.4;

/**
 * @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;
    }
}
pragma solidity ^0.8.4;

abstract contract ERC721P is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    string private _name;
    string private _symbol;
    address[] internal _owners;
    mapping(uint256 => address) private _tokenApprovals;
    mapping(address => mapping(address => bool)) private _operatorApprovals;
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
        interfaceId == type(IERC721).interfaceId ||
        interfaceId == type(IERC721Metadata).interfaceId ||
        super.supportsInterface(interfaceId);
    }
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        uint count = 0;
        uint length = _owners.length;
        for( uint i = 0; i < length; ++i ){
            if( owner == _owners[i] ){
                ++count;
            }
        }
        delete length;
        return count;
    }
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }
    function name() public view virtual override returns (string memory) {
        return _name;
    }
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721P.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

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

        _approve(to, tokenId);
    }
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return tokenId < _owners.length && _owners[tokenId] != address(0);
    }
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721P.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);
        _owners.push(to);

        emit Transfer(address(0), to, tokenId);
    }
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721P.ownerOf(tokenId);

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

        // Clear approvals
        _approve(address(0), tokenId);
        _owners[tokenId] = address(0);

        emit Transfer(owner, address(0), tokenId);
    }
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721P.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721P.ownerOf(tokenId), to, tokenId);
    }
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

pragma solidity ^0.8.4;

abstract contract ERC721Enum is ERC721P, IERC721Enumerable {
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721P) returns (bool) {
        return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
    }
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256 tokenId) {
        require(index < ERC721P.balanceOf(owner), "ERC721Enum: owner ioob");
        uint count;
        for( uint i; i < _owners.length; ++i ){
            if( owner == _owners[i] ){
                if( count == index )
                    return i;
                else
                    ++count;
            }
        }
        require(false, "ERC721Enum: owner ioob");
    }
    function tokensOfOwner(address owner) public view returns (uint256[] memory) {
        require(0 < ERC721P.balanceOf(owner), "ERC721Enum: owner ioob");
        uint256 tokenCount = balanceOf(owner);
        uint256[] memory tokenIds = new uint256[](tokenCount);
        for (uint256 i = 0; i < tokenCount; i++) {
            tokenIds[i] = tokenOfOwnerByIndex(owner, i);
        }
        return tokenIds;
    }
    function totalSupply() public view virtual override returns (uint256) {
        return _owners.length;
    }
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enum.totalSupply(), "ERC721Enum: global ioob");
        return index;
    }
}

pragma solidity ^0.8.4;

interface IWatcher {
    function watchTransfer(address _from, address _to, uint256 _tokenId) external;
}

contract NotLarvaLads is ERC721Enum, Ownable, ReentrancyGuard {
    using Strings for uint256;

    //sale settings
    uint256 constant private MAX_SUPPLY = 5000;
    uint256 constant private MAX_PRESALE_MINT = 5;
    uint256 private TEAM_RESERVE_AVAILABLE_MINTS = 1;
    uint256 private COST = 0.00 ether;
    uint256 private MAX_SALE_MINT = 20;
    address public _trustedContract = 0x0000000000000000000000000000000000000000;

    bool public isPresaleActive = false;
    bool public isSaleActive = false;

    //presale settings
    mapping(address => bool) public presaleWhitelist;
    mapping(address => uint256) public presaleWhitelistMints;

    string private baseURI;

    constructor(
        string memory _name,
        string memory _symbol
    ) ERC721P(_name, _symbol) {}

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

    function _publicSupply() internal view virtual returns (uint256) {
        return MAX_SUPPLY - TEAM_RESERVE_AVAILABLE_MINTS;
    }

    function _transferNotice(address _from, address _to, uint256 _tokenId) internal {
        if (_trustedContract != address(0)) {
            IWatcher(_trustedContract).watchTransfer(_from, _to, _tokenId);
        }
    }

    // external
    function isWhitelisted (address _address) external view returns (bool) {
        return presaleWhitelist[_address];
    }

    function setTrustedContract(address _contractAddress) public onlyOwner {
        _trustedContract = _contractAddress;
    }

    function flipPresaleState() external onlyOwner {
        isPresaleActive = !isPresaleActive;
    }

    function flipSaleState() external onlyOwner {
        isSaleActive = !isSaleActive;
    }

    function mint(uint256 _mintAmount) external payable {
        require(isSaleActive, "Sale is not active");
        require(_mintAmount > 0, "Minted amount should be positive" );
        require(_mintAmount <= MAX_SALE_MINT, "Minted amount exceeds sale limit" );

        uint256 totalSupply = totalSupply();

        require(totalSupply + _mintAmount <= _publicSupply(), "The requested amount exceeds the remaining supply" );
        require(msg.value >= COST * _mintAmount);

        for (uint256 i = 0; i < _mintAmount; i++) {
            _safeMint(msg.sender, totalSupply + i);
        }
    }

    function mintPresale(uint256 _mintAmount) external payable {
        require(isPresaleActive, "Presale is not active");
        require(presaleWhitelist[msg.sender], "Caller is not whitelisted");

        uint256 totalSupply = totalSupply();
        uint256 availableMints = MAX_PRESALE_MINT - presaleWhitelistMints[msg.sender];

        require(_mintAmount <= availableMints, "Too many mints requested");
        require(totalSupply + _mintAmount <= _publicSupply(), "The requested amount exceeds the remaining supply");
        require(msg.value >= COST * _mintAmount , "Wrong amount provided");

        presaleWhitelistMints[msg.sender] += _mintAmount;

        for(uint256 i = 0; i < _mintAmount; i++){
            _safeMint(msg.sender, totalSupply + i);
        }
    }

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

    function addToWhitelist(address[] calldata _addresses) external onlyOwner {
        for (uint256 i = 0; i < _addresses.length; i++) {
            require(_addresses[i] != address(0), "Null address is not allowed");
            presaleWhitelist[_addresses[i]] = true;
            presaleWhitelistMints[_addresses[i]] > 0 ? presaleWhitelistMints[_addresses[i]] : 0;
        }
    }

    function setCost(uint256 _newCost) external onlyOwner {
        COST = _newCost;
    }

    function setMaxMintAmount(uint256 _newMaxMintAmount) external onlyOwner {
        MAX_SALE_MINT = _newMaxMintAmount;
    }

    function tokenURI(uint256 _tokenId) external view virtual override returns (string memory) {
        require(_exists(_tokenId), "ERC721Metadata: Nonexistent token");
        string memory currentBaseURI = _baseURI();
        return bytes(currentBaseURI).length > 0	? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), ".json")) : "";
    }

    // admin minting
     function reserve(address _to, uint256 _reserveAmount) public onlyOwner {
        uint256 supply = totalSupply();
        require(
            _reserveAmount > 0 && _reserveAmount <= TEAM_RESERVE_AVAILABLE_MINTS,
            "Not enough reserve left for team"
        );
        for (uint256 i = 0; i < _reserveAmount; i++) {
            _safeMint(_to, supply + i);
        }
        TEAM_RESERVE_AVAILABLE_MINTS -= _reserveAmount;
    }

    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseURI = _newBaseURI;
    }

    function transferFrom(address _from, address _to, uint256 _tokenId) public override {
        ERC721P.transferFrom(_from, _to, _tokenId);
        _transferNotice(_from, _to, _tokenId);
    }

    function safeTransferFrom(address _from, address _to, uint256 _tokenId, bytes memory _data) public override {
        ERC721P.safeTransferFrom(_from, _to, _tokenId, _data);
        _transferNotice(_from, _to, _tokenId);
    }
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_trustedContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"addToWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipPresaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPresaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presaleWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presaleWhitelistMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_reserveAmount","type":"uint256"}],"name":"reserve","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":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxMintAmount","type":"uint256"}],"name":"setMaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_contractAddress","type":"address"}],"name":"setTrustedContract","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526001600755600060085560146009556000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600a60146101000a81548160ff0219169083151502179055506000600a60156101000a81548160ff0219169083151502179055503480156200009857600080fd5b5060405162005076380380620050768339818101604052810190620000be919062000320565b81818160009080519060200190620000d8929190620001f2565b508060019080519060200190620000f1929190620001f2565b50505062000114620001086200012460201b60201c565b6200012c60201b60201c565b6001600681905550505062000529565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b82805462000200906200043a565b90600052602060002090601f01602090048101928262000224576000855562000270565b82601f106200023f57805160ff191683800117855562000270565b8280016001018555821562000270579182015b828111156200026f57825182559160200191906001019062000252565b5b5090506200027f919062000283565b5090565b5b808211156200029e57600081600090555060010162000284565b5090565b6000620002b9620002b384620003ce565b620003a5565b905082815260208101848484011115620002d857620002d762000509565b5b620002e584828562000404565b509392505050565b600082601f83011262000305576200030462000504565b5b815162000317848260208601620002a2565b91505092915050565b600080604083850312156200033a576200033962000513565b5b600083015167ffffffffffffffff8111156200035b576200035a6200050e565b5b6200036985828601620002ed565b925050602083015167ffffffffffffffff8111156200038d576200038c6200050e565b5b6200039b85828601620002ed565b9150509250929050565b6000620003b1620003c4565b9050620003bf828262000470565b919050565b6000604051905090565b600067ffffffffffffffff821115620003ec57620003eb620004d5565b5b620003f78262000518565b9050602081019050919050565b60005b838110156200042457808201518184015260208101905062000407565b8381111562000434576000848401525b50505050565b600060028204905060018216806200045357607f821691505b602082108114156200046a5762000469620004a6565b5b50919050565b6200047b8262000518565b810181811067ffffffffffffffff821117156200049d576200049c620004d5565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b614b3d80620005396000396000f3fe60806040526004361061021a5760003560e01c806360d938dc11610123578063a22cb465116100ab578063e985e9c51161006f578063e985e9c5146107d2578063eb8835ab1461080f578063f2fde38b1461084c578063f759867a14610875578063f81227d4146108915761021a565b8063a22cb465146106f1578063aaf502921461071a578063b88d4fde14610743578063c87b56dd1461076c578063cc47a40b146107a95761021a565b80637f649783116100f25780637f649783146106195780638462151c146106425780638da5cb5b1461067f57806395d89b41146106aa578063a0712d68146106d55761021a565b806360d938dc1461055d5780636352211e1461058857806370a08231146105c5578063715018a6146106025761021a565b806334918dfd116101a657806344a0d68a1161017557806344a0d68a146104665780634f6ccce71461048f57806355105e9e146104cc57806355f804b314610509578063564566a8146105325761021a565b806334918dfd146103d25780633af32abf146103e95780633ccfd60b1461042657806342842e0e1461043d5761021a565b8063088a4ed0116101ed578063088a4ed0146102ef578063095ea7b31461031857806318160ddd1461034157806323b872dd1461036c5780632f745c59146103955761021a565b806301ffc9a71461021f57806306fdde031461025c578063081812fc146102875780630856f5ce146102c4575b600080fd5b34801561022b57600080fd5b5061024660048036038101906102419190613470565b6108a8565b6040516102539190613b7b565b60405180910390f35b34801561026857600080fd5b50610271610922565b60405161027e9190613b96565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a99190613513565b6109b4565b6040516102bb9190613abb565b60405180910390f35b3480156102d057600080fd5b506102d9610a39565b6040516102e69190613abb565b60405180910390f35b3480156102fb57600080fd5b5061031660048036038101906103119190613513565b610a5f565b005b34801561032457600080fd5b5061033f600480360381019061033a91906133e3565b610ae5565b005b34801561034d57600080fd5b50610356610bfd565b6040516103639190613f38565b60405180910390f35b34801561037857600080fd5b50610393600480360381019061038e91906132cd565b610c0a565b005b3480156103a157600080fd5b506103bc60048036038101906103b791906133e3565b610c25565b6040516103c99190613f38565b60405180910390f35b3480156103de57600080fd5b506103e7610d6e565b005b3480156103f557600080fd5b50610410600480360381019061040b9190613260565b610e16565b60405161041d9190613b7b565b60405180910390f35b34801561043257600080fd5b5061043b610e6c565b005b34801561044957600080fd5b50610464600480360381019061045f91906132cd565b610f28565b005b34801561047257600080fd5b5061048d60048036038101906104889190613513565b610f48565b005b34801561049b57600080fd5b506104b660048036038101906104b19190613513565b610fce565b6040516104c39190613f38565b60405180910390f35b3480156104d857600080fd5b506104f360048036038101906104ee9190613260565b611021565b6040516105009190613f38565b60405180910390f35b34801561051557600080fd5b50610530600480360381019061052b91906134ca565b611039565b005b34801561053e57600080fd5b506105476110cf565b6040516105549190613b7b565b60405180910390f35b34801561056957600080fd5b506105726110e2565b60405161057f9190613b7b565b60405180910390f35b34801561059457600080fd5b506105af60048036038101906105aa9190613513565b6110f5565b6040516105bc9190613abb565b60405180910390f35b3480156105d157600080fd5b506105ec60048036038101906105e79190613260565b6111b2565b6040516105f99190613f38565b60405180910390f35b34801561060e57600080fd5b506106176112d8565b005b34801561062557600080fd5b50610640600480360381019061063b9190613423565b611360565b005b34801561064e57600080fd5b5061066960048036038101906106649190613260565b6115f6565b6040516106769190613b59565b60405180910390f35b34801561068b57600080fd5b506106946116ef565b6040516106a19190613abb565b60405180910390f35b3480156106b657600080fd5b506106bf611719565b6040516106cc9190613b96565b60405180910390f35b6106ef60048036038101906106ea9190613513565b6117ab565b005b3480156106fd57600080fd5b50610718600480360381019061071391906133a3565b611935565b005b34801561072657600080fd5b50610741600480360381019061073c9190613260565b611ab6565b005b34801561074f57600080fd5b5061076a60048036038101906107659190613320565b611b76565b005b34801561077857600080fd5b50610793600480360381019061078e9190613513565b611b93565b6040516107a09190613b96565b60405180910390f35b3480156107b557600080fd5b506107d060048036038101906107cb91906133e3565b611c3a565b005b3480156107de57600080fd5b506107f960048036038101906107f4919061328d565b611d65565b6040516108069190613b7b565b60405180910390f35b34801561081b57600080fd5b5061083660048036038101906108319190613260565b611df9565b6040516108439190613b7b565b60405180910390f35b34801561085857600080fd5b50610873600480360381019061086e9190613260565b611e19565b005b61088f600480360381019061088a9190613513565b611f11565b005b34801561089d57600080fd5b506108a66121bf565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061091b575061091a82612267565b5b9050919050565b60606000805461093190614221565b80601f016020809104026020016040519081016040528092919081815260200182805461095d90614221565b80156109aa5780601f1061097f576101008083540402835291602001916109aa565b820191906000526020600020905b81548152906001019060200180831161098d57829003601f168201915b5050505050905090565b60006109bf82612349565b6109fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f590613dd8565b60405180910390fd5b6003600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610a676123d1565b73ffffffffffffffffffffffffffffffffffffffff16610a856116ef565b73ffffffffffffffffffffffffffffffffffffffff1614610adb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad290613df8565b60405180910390fd5b8060098190555050565b6000610af0826110f5565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5890613e98565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b806123d1565b73ffffffffffffffffffffffffffffffffffffffff161480610baf5750610bae81610ba96123d1565b611d65565b5b610bee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be590613d58565b60405180910390fd5b610bf883836123d9565b505050565b6000600280549050905090565b610c15838383612492565b610c208383836124f2565b505050565b6000610c30836111b2565b8210610c71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6890613e58565b60405180910390fd5b6000805b600280549050811015610d245760028181548110610c9657610c9561438b565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610d135783821415610d06578092505050610d68565b81610d1090614284565b91505b80610d1d90614284565b9050610c75565b506000610d66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5d90613e58565b60405180910390fd5b505b92915050565b610d766123d1565b73ffffffffffffffffffffffffffffffffffffffff16610d946116ef565b73ffffffffffffffffffffffffffffffffffffffff1614610dea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de190613df8565b60405180910390fd5b600a60159054906101000a900460ff1615600a60156101000a81548160ff021916908315150217905550565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610e746123d1565b73ffffffffffffffffffffffffffffffffffffffff16610e926116ef565b73ffffffffffffffffffffffffffffffffffffffff1614610ee8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edf90613df8565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610f2657600080fd5b565b610f4383838360405180602001604052806000815250611b76565b505050565b610f506123d1565b73ffffffffffffffffffffffffffffffffffffffff16610f6e6116ef565b73ffffffffffffffffffffffffffffffffffffffff1614610fc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbb90613df8565b60405180910390fd5b8060088190555050565b6000610fd8610bfd565b8210611019576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101090613e78565b60405180910390fd5b819050919050565b600c6020528060005260406000206000915090505481565b6110416123d1565b73ffffffffffffffffffffffffffffffffffffffff1661105f6116ef565b73ffffffffffffffffffffffffffffffffffffffff16146110b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ac90613df8565b60405180910390fd5b80600d90805190602001906110cb92919061301e565b5050565b600a60159054906101000a900460ff1681565b600a60149054906101000a900460ff1681565b6000806002838154811061110c5761110b61438b565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a090613d98565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611223576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121a90613d78565b60405180910390fd5b600080600280549050905060005b818110156112c9576002818154811061124d5761124c61438b565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156112b857826112b590614284565b92505b806112c290614284565b9050611231565b50600090508192505050919050565b6112e06123d1565b73ffffffffffffffffffffffffffffffffffffffff166112fe6116ef565b73ffffffffffffffffffffffffffffffffffffffff1614611354576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134b90613df8565b60405180910390fd5b61135e60006125df565b565b6113686123d1565b73ffffffffffffffffffffffffffffffffffffffff166113866116ef565b73ffffffffffffffffffffffffffffffffffffffff16146113dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d390613df8565b60405180910390fd5b60005b828290508110156115f157600073ffffffffffffffffffffffffffffffffffffffff168383838181106114155761141461438b565b5b905060200201602081019061142a9190613260565b73ffffffffffffffffffffffffffffffffffffffff161415611481576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147890613c38565b60405180910390fd5b6001600b600085858581811061149a5761149961438b565b5b90506020020160208101906114af9190613260565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506000600c60008585858181106115195761151861438b565b5b905060200201602081019061152e9190613260565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054116115755760006115dd565b600c600084848481811061158c5761158b61438b565b5b90506020020160208101906115a19190613260565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020545b5080806115e990614284565b9150506113df565b505050565b6060611601826111b2565b600010611643576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163a90613e58565b60405180910390fd5b600061164e836111b2565b905060008167ffffffffffffffff81111561166c5761166b6143ba565b5b60405190808252806020026020018201604052801561169a5781602001602082028036833780820191505090505b50905060005b828110156116e4576116b28582610c25565b8282815181106116c5576116c461438b565b5b60200260200101818152505080806116dc90614284565b9150506116a0565b508092505050919050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461172890614221565b80601f016020809104026020016040519081016040528092919081815260200182805461175490614221565b80156117a15780601f10611776576101008083540402835291602001916117a1565b820191906000526020600020905b81548152906001019060200180831161178457829003601f168201915b5050505050905090565b600a60159054906101000a900460ff166117fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f190613cf8565b60405180910390fd5b6000811161183d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183490613ef8565b60405180910390fd5b600954811115611882576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187990613e38565b60405180910390fd5b600061188c610bfd565b90506118966126a5565b82826118a29190614056565b11156118e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118da90613c78565b60405180910390fd5b816008546118f191906140dd565b3410156118fd57600080fd5b60005b828110156119305761191d3382846119189190614056565b6126bc565b808061192890614284565b915050611900565b505050565b61193d6123d1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a290613cd8565b60405180910390fd5b80600460006119b86123d1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a656123d1565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611aaa9190613b7b565b60405180910390a35050565b611abe6123d1565b73ffffffffffffffffffffffffffffffffffffffff16611adc6116ef565b73ffffffffffffffffffffffffffffffffffffffff1614611b32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2990613df8565b60405180910390fd5b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611b82848484846126da565b611b8d8484846124f2565b50505050565b6060611b9e82612349565b611bdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd490613bd8565b60405180910390fd5b6000611be761273c565b90506000815111611c075760405180602001604052806000815250611c32565b80611c11846127ce565b604051602001611c22929190613a8c565b6040516020818303038152906040525b915050919050565b611c426123d1565b73ffffffffffffffffffffffffffffffffffffffff16611c606116ef565b73ffffffffffffffffffffffffffffffffffffffff1614611cb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cad90613df8565b60405180910390fd5b6000611cc0610bfd565b9050600082118015611cd457506007548211155b611d13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0a90613c98565b60405180910390fd5b60005b82811015611d4657611d33848284611d2e9190614056565b6126bc565b8080611d3e90614284565b915050611d16565b508160076000828254611d599190614137565b92505081905550505050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600b6020528060005260406000206000915054906101000a900460ff1681565b611e216123d1565b73ffffffffffffffffffffffffffffffffffffffff16611e3f6116ef565b73ffffffffffffffffffffffffffffffffffffffff1614611e95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8c90613df8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efc90613c18565b60405180910390fd5b611f0e816125df565b50565b600a60149054906101000a900460ff16611f60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5790613ed8565b60405180910390fd5b600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611fec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe390613d38565b60405180910390fd5b6000611ff6610bfd565b90506000600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205460056120469190614137565b90508083111561208b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208290613bb8565b60405180910390fd5b6120936126a5565b838361209f9190614056565b11156120e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d790613c78565b60405180910390fd5b826008546120ee91906140dd565b341015612130576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212790613f18565b60405180910390fd5b82600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461217f9190614056565b9250508190555060005b838110156121b9576121a63382856121a19190614056565b6126bc565b80806121b190614284565b915050612189565b50505050565b6121c76123d1565b73ffffffffffffffffffffffffffffffffffffffff166121e56116ef565b73ffffffffffffffffffffffffffffffffffffffff161461223b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223290613df8565b60405180910390fd5b600a60149054906101000a900460ff1615600a60146101000a81548160ff021916908315150217905550565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061233257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061234257506123418261292f565b5b9050919050565b6000600280549050821080156123ca5750600073ffffffffffffffffffffffffffffffffffffffff16600283815481106123865761238561438b565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b9050919050565b600033905090565b816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661244c836110f5565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6124a361249d6123d1565b82612999565b6124e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d990613eb8565b60405180910390fd5b6124ed838383612a77565b505050565b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146125da57600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663028594648484846040518463ffffffff1660e01b81526004016125a793929190613ad6565b600060405180830381600087803b1580156125c157600080fd5b505af11580156125d5573d6000803e3d6000fd5b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006007546113886126b79190614137565b905090565b6126d6828260405180602001604052806000815250612c30565b5050565b6126eb6126e56123d1565b83612999565b61272a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272190613eb8565b60405180910390fd5b61273684848484612c8b565b50505050565b6060600d805461274b90614221565b80601f016020809104026020016040519081016040528092919081815260200182805461277790614221565b80156127c45780601f10612799576101008083540402835291602001916127c4565b820191906000526020600020905b8154815290600101906020018083116127a757829003601f168201915b5050505050905090565b60606000821415612816576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061292a565b600082905060005b6000821461284857808061283190614284565b915050600a8261284191906140ac565b915061281e565b60008167ffffffffffffffff811115612864576128636143ba565b5b6040519080825280601f01601f1916602001820160405280156128965781602001600182028036833780820191505090505b5090505b60008514612923576001826128af9190614137565b9150600a856128be91906142cd565b60306128ca9190614056565b60f81b8183815181106128e0576128df61438b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561291c91906140ac565b945061289a565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60006129a482612349565b6129e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129da90613d18565b60405180910390fd5b60006129ee836110f5565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612a5d57508373ffffffffffffffffffffffffffffffffffffffff16612a45846109b4565b73ffffffffffffffffffffffffffffffffffffffff16145b80612a6e5750612a6d8185611d65565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612a97826110f5565b73ffffffffffffffffffffffffffffffffffffffff1614612aed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ae490613e18565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5490613cb8565b60405180910390fd5b612b68838383612ce7565b612b736000826123d9565b8160028281548110612b8857612b8761438b565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b612c3a8383612cec565b612c476000848484612e74565b612c86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c7d90613bf8565b60405180910390fd5b505050565b612c96848484612a77565b612ca284848484612e74565b612ce1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cd890613bf8565b60405180910390fd5b50505050565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d5390613db8565b60405180910390fd5b612d6581612349565b15612da5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d9c90613c58565b60405180910390fd5b612db160008383612ce7565b6002829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000612e958473ffffffffffffffffffffffffffffffffffffffff1661300b565b15612ffe578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612ebe6123d1565b8786866040518563ffffffff1660e01b8152600401612ee09493929190613b0d565b602060405180830381600087803b158015612efa57600080fd5b505af1925050508015612f2b57506040513d601f19601f82011682018060405250810190612f28919061349d565b60015b612fae573d8060008114612f5b576040519150601f19603f3d011682016040523d82523d6000602084013e612f60565b606091505b50600081511415612fa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f9d90613bf8565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613003565b600190505b949350505050565b600080823b905060008111915050919050565b82805461302a90614221565b90600052602060002090601f01602090048101928261304c5760008555613093565b82601f1061306557805160ff1916838001178555613093565b82800160010185558215613093579182015b82811115613092578251825591602001919060010190613077565b5b5090506130a091906130a4565b5090565b5b808211156130bd5760008160009055506001016130a5565b5090565b60006130d46130cf84613f78565b613f53565b9050828152602081018484840111156130f0576130ef6143f8565b5b6130fb8482856141df565b509392505050565b600061311661311184613fa9565b613f53565b905082815260208101848484011115613132576131316143f8565b5b61313d8482856141df565b509392505050565b60008135905061315481614aab565b92915050565b60008083601f8401126131705761316f6143ee565b5b8235905067ffffffffffffffff81111561318d5761318c6143e9565b5b6020830191508360208202830111156131a9576131a86143f3565b5b9250929050565b6000813590506131bf81614ac2565b92915050565b6000813590506131d481614ad9565b92915050565b6000815190506131e981614ad9565b92915050565b600082601f830112613204576132036143ee565b5b81356132148482602086016130c1565b91505092915050565b600082601f830112613232576132316143ee565b5b8135613242848260208601613103565b91505092915050565b60008135905061325a81614af0565b92915050565b60006020828403121561327657613275614402565b5b600061328484828501613145565b91505092915050565b600080604083850312156132a4576132a3614402565b5b60006132b285828601613145565b92505060206132c385828601613145565b9150509250929050565b6000806000606084860312156132e6576132e5614402565b5b60006132f486828701613145565b935050602061330586828701613145565b92505060406133168682870161324b565b9150509250925092565b6000806000806080858703121561333a57613339614402565b5b600061334887828801613145565b945050602061335987828801613145565b935050604061336a8782880161324b565b925050606085013567ffffffffffffffff81111561338b5761338a6143fd565b5b613397878288016131ef565b91505092959194509250565b600080604083850312156133ba576133b9614402565b5b60006133c885828601613145565b92505060206133d9858286016131b0565b9150509250929050565b600080604083850312156133fa576133f9614402565b5b600061340885828601613145565b92505060206134198582860161324b565b9150509250929050565b6000806020838503121561343a57613439614402565b5b600083013567ffffffffffffffff811115613458576134576143fd565b5b6134648582860161315a565b92509250509250929050565b60006020828403121561348657613485614402565b5b6000613494848285016131c5565b91505092915050565b6000602082840312156134b3576134b2614402565b5b60006134c1848285016131da565b91505092915050565b6000602082840312156134e0576134df614402565b5b600082013567ffffffffffffffff8111156134fe576134fd6143fd565b5b61350a8482850161321d565b91505092915050565b60006020828403121561352957613528614402565b5b60006135378482850161324b565b91505092915050565b600061354c8383613a6e565b60208301905092915050565b6135618161416b565b82525050565b600061357282613fea565b61357c8185614018565b935061358783613fda565b8060005b838110156135b857815161359f8882613540565b97506135aa8361400b565b92505060018101905061358b565b5085935050505092915050565b6135ce8161417d565b82525050565b60006135df82613ff5565b6135e98185614029565b93506135f98185602086016141ee565b61360281614407565b840191505092915050565b600061361882614000565b613622818561403a565b93506136328185602086016141ee565b61363b81614407565b840191505092915050565b600061365182614000565b61365b818561404b565b935061366b8185602086016141ee565b80840191505092915050565b600061368460188361403a565b915061368f82614418565b602082019050919050565b60006136a760218361403a565b91506136b282614441565b604082019050919050565b60006136ca60328361403a565b91506136d582614490565b604082019050919050565b60006136ed60268361403a565b91506136f8826144df565b604082019050919050565b6000613710601b8361403a565b915061371b8261452e565b602082019050919050565b6000613733601c8361403a565b915061373e82614557565b602082019050919050565b600061375660318361403a565b915061376182614580565b604082019050919050565b600061377960208361403a565b9150613784826145cf565b602082019050919050565b600061379c60248361403a565b91506137a7826145f8565b604082019050919050565b60006137bf60198361403a565b91506137ca82614647565b602082019050919050565b60006137e260128361403a565b91506137ed82614670565b602082019050919050565b6000613805602c8361403a565b915061381082614699565b604082019050919050565b600061382860198361403a565b9150613833826146e8565b602082019050919050565b600061384b60388361403a565b915061385682614711565b604082019050919050565b600061386e602a8361403a565b915061387982614760565b604082019050919050565b600061389160298361403a565b915061389c826147af565b604082019050919050565b60006138b460208361403a565b91506138bf826147fe565b602082019050919050565b60006138d7602c8361403a565b91506138e282614827565b604082019050919050565b60006138fa60058361404b565b915061390582614876565b600582019050919050565b600061391d60208361403a565b91506139288261489f565b602082019050919050565b600061394060298361403a565b915061394b826148c8565b604082019050919050565b600061396360208361403a565b915061396e82614917565b602082019050919050565b600061398660168361403a565b915061399182614940565b602082019050919050565b60006139a960178361403a565b91506139b482614969565b602082019050919050565b60006139cc60218361403a565b91506139d782614992565b604082019050919050565b60006139ef60318361403a565b91506139fa826149e1565b604082019050919050565b6000613a1260158361403a565b9150613a1d82614a30565b602082019050919050565b6000613a3560208361403a565b9150613a4082614a59565b602082019050919050565b6000613a5860158361403a565b9150613a6382614a82565b602082019050919050565b613a77816141d5565b82525050565b613a86816141d5565b82525050565b6000613a988285613646565b9150613aa48284613646565b9150613aaf826138ed565b91508190509392505050565b6000602082019050613ad06000830184613558565b92915050565b6000606082019050613aeb6000830186613558565b613af86020830185613558565b613b056040830184613a7d565b949350505050565b6000608082019050613b226000830187613558565b613b2f6020830186613558565b613b3c6040830185613a7d565b8181036060830152613b4e81846135d4565b905095945050505050565b60006020820190508181036000830152613b738184613567565b905092915050565b6000602082019050613b9060008301846135c5565b92915050565b60006020820190508181036000830152613bb0818461360d565b905092915050565b60006020820190508181036000830152613bd181613677565b9050919050565b60006020820190508181036000830152613bf18161369a565b9050919050565b60006020820190508181036000830152613c11816136bd565b9050919050565b60006020820190508181036000830152613c31816136e0565b9050919050565b60006020820190508181036000830152613c5181613703565b9050919050565b60006020820190508181036000830152613c7181613726565b9050919050565b60006020820190508181036000830152613c9181613749565b9050919050565b60006020820190508181036000830152613cb18161376c565b9050919050565b60006020820190508181036000830152613cd18161378f565b9050919050565b60006020820190508181036000830152613cf1816137b2565b9050919050565b60006020820190508181036000830152613d11816137d5565b9050919050565b60006020820190508181036000830152613d31816137f8565b9050919050565b60006020820190508181036000830152613d518161381b565b9050919050565b60006020820190508181036000830152613d718161383e565b9050919050565b60006020820190508181036000830152613d9181613861565b9050919050565b60006020820190508181036000830152613db181613884565b9050919050565b60006020820190508181036000830152613dd1816138a7565b9050919050565b60006020820190508181036000830152613df1816138ca565b9050919050565b60006020820190508181036000830152613e1181613910565b9050919050565b60006020820190508181036000830152613e3181613933565b9050919050565b60006020820190508181036000830152613e5181613956565b9050919050565b60006020820190508181036000830152613e7181613979565b9050919050565b60006020820190508181036000830152613e918161399c565b9050919050565b60006020820190508181036000830152613eb1816139bf565b9050919050565b60006020820190508181036000830152613ed1816139e2565b9050919050565b60006020820190508181036000830152613ef181613a05565b9050919050565b60006020820190508181036000830152613f1181613a28565b9050919050565b60006020820190508181036000830152613f3181613a4b565b9050919050565b6000602082019050613f4d6000830184613a7d565b92915050565b6000613f5d613f6e565b9050613f698282614253565b919050565b6000604051905090565b600067ffffffffffffffff821115613f9357613f926143ba565b5b613f9c82614407565b9050602081019050919050565b600067ffffffffffffffff821115613fc457613fc36143ba565b5b613fcd82614407565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614061826141d5565b915061406c836141d5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156140a1576140a06142fe565b5b828201905092915050565b60006140b7826141d5565b91506140c2836141d5565b9250826140d2576140d161432d565b5b828204905092915050565b60006140e8826141d5565b91506140f3836141d5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561412c5761412b6142fe565b5b828202905092915050565b6000614142826141d5565b915061414d836141d5565b9250828210156141605761415f6142fe565b5b828203905092915050565b6000614176826141b5565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561420c5780820151818401526020810190506141f1565b8381111561421b576000848401525b50505050565b6000600282049050600182168061423957607f821691505b6020821081141561424d5761424c61435c565b5b50919050565b61425c82614407565b810181811067ffffffffffffffff8211171561427b5761427a6143ba565b5b80604052505050565b600061428f826141d5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156142c2576142c16142fe565b5b600182019050919050565b60006142d8826141d5565b91506142e3836141d5565b9250826142f3576142f261432d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f546f6f206d616e79206d696e7473207265717565737465640000000000000000600082015250565b7f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b6560008201527f6e00000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e756c6c2061646472657373206973206e6f7420616c6c6f7765640000000000600082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f5468652072657175657374656420616d6f756e7420657863656564732074686560008201527f2072656d61696e696e6720737570706c79000000000000000000000000000000602082015250565b7f4e6f7420656e6f7567682072657365727665206c65667420666f72207465616d600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f53616c65206973206e6f74206163746976650000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f43616c6c6572206973206e6f742077686974656c697374656400000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4d696e74656420616d6f756e7420657863656564732073616c65206c696d6974600082015250565b7f455243373231456e756d3a206f776e657220696f6f6200000000000000000000600082015250565b7f455243373231456e756d3a20676c6f62616c20696f6f62000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f50726573616c65206973206e6f74206163746976650000000000000000000000600082015250565b7f4d696e74656420616d6f756e742073686f756c6420626520706f736974697665600082015250565b7f57726f6e6720616d6f756e742070726f76696465640000000000000000000000600082015250565b614ab48161416b565b8114614abf57600080fd5b50565b614acb8161417d565b8114614ad657600080fd5b50565b614ae281614189565b8114614aed57600080fd5b50565b614af9816141d5565b8114614b0457600080fd5b5056fea26469706673582212200397e75135d62f1e2c2b059a4034ace4965e2c6dfcd08bf5cfc035460e8b80fe64736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000c4e6f744c617276614c616473000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034e4c4c0000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061021a5760003560e01c806360d938dc11610123578063a22cb465116100ab578063e985e9c51161006f578063e985e9c5146107d2578063eb8835ab1461080f578063f2fde38b1461084c578063f759867a14610875578063f81227d4146108915761021a565b8063a22cb465146106f1578063aaf502921461071a578063b88d4fde14610743578063c87b56dd1461076c578063cc47a40b146107a95761021a565b80637f649783116100f25780637f649783146106195780638462151c146106425780638da5cb5b1461067f57806395d89b41146106aa578063a0712d68146106d55761021a565b806360d938dc1461055d5780636352211e1461058857806370a08231146105c5578063715018a6146106025761021a565b806334918dfd116101a657806344a0d68a1161017557806344a0d68a146104665780634f6ccce71461048f57806355105e9e146104cc57806355f804b314610509578063564566a8146105325761021a565b806334918dfd146103d25780633af32abf146103e95780633ccfd60b1461042657806342842e0e1461043d5761021a565b8063088a4ed0116101ed578063088a4ed0146102ef578063095ea7b31461031857806318160ddd1461034157806323b872dd1461036c5780632f745c59146103955761021a565b806301ffc9a71461021f57806306fdde031461025c578063081812fc146102875780630856f5ce146102c4575b600080fd5b34801561022b57600080fd5b5061024660048036038101906102419190613470565b6108a8565b6040516102539190613b7b565b60405180910390f35b34801561026857600080fd5b50610271610922565b60405161027e9190613b96565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a99190613513565b6109b4565b6040516102bb9190613abb565b60405180910390f35b3480156102d057600080fd5b506102d9610a39565b6040516102e69190613abb565b60405180910390f35b3480156102fb57600080fd5b5061031660048036038101906103119190613513565b610a5f565b005b34801561032457600080fd5b5061033f600480360381019061033a91906133e3565b610ae5565b005b34801561034d57600080fd5b50610356610bfd565b6040516103639190613f38565b60405180910390f35b34801561037857600080fd5b50610393600480360381019061038e91906132cd565b610c0a565b005b3480156103a157600080fd5b506103bc60048036038101906103b791906133e3565b610c25565b6040516103c99190613f38565b60405180910390f35b3480156103de57600080fd5b506103e7610d6e565b005b3480156103f557600080fd5b50610410600480360381019061040b9190613260565b610e16565b60405161041d9190613b7b565b60405180910390f35b34801561043257600080fd5b5061043b610e6c565b005b34801561044957600080fd5b50610464600480360381019061045f91906132cd565b610f28565b005b34801561047257600080fd5b5061048d60048036038101906104889190613513565b610f48565b005b34801561049b57600080fd5b506104b660048036038101906104b19190613513565b610fce565b6040516104c39190613f38565b60405180910390f35b3480156104d857600080fd5b506104f360048036038101906104ee9190613260565b611021565b6040516105009190613f38565b60405180910390f35b34801561051557600080fd5b50610530600480360381019061052b91906134ca565b611039565b005b34801561053e57600080fd5b506105476110cf565b6040516105549190613b7b565b60405180910390f35b34801561056957600080fd5b506105726110e2565b60405161057f9190613b7b565b60405180910390f35b34801561059457600080fd5b506105af60048036038101906105aa9190613513565b6110f5565b6040516105bc9190613abb565b60405180910390f35b3480156105d157600080fd5b506105ec60048036038101906105e79190613260565b6111b2565b6040516105f99190613f38565b60405180910390f35b34801561060e57600080fd5b506106176112d8565b005b34801561062557600080fd5b50610640600480360381019061063b9190613423565b611360565b005b34801561064e57600080fd5b5061066960048036038101906106649190613260565b6115f6565b6040516106769190613b59565b60405180910390f35b34801561068b57600080fd5b506106946116ef565b6040516106a19190613abb565b60405180910390f35b3480156106b657600080fd5b506106bf611719565b6040516106cc9190613b96565b60405180910390f35b6106ef60048036038101906106ea9190613513565b6117ab565b005b3480156106fd57600080fd5b50610718600480360381019061071391906133a3565b611935565b005b34801561072657600080fd5b50610741600480360381019061073c9190613260565b611ab6565b005b34801561074f57600080fd5b5061076a60048036038101906107659190613320565b611b76565b005b34801561077857600080fd5b50610793600480360381019061078e9190613513565b611b93565b6040516107a09190613b96565b60405180910390f35b3480156107b557600080fd5b506107d060048036038101906107cb91906133e3565b611c3a565b005b3480156107de57600080fd5b506107f960048036038101906107f4919061328d565b611d65565b6040516108069190613b7b565b60405180910390f35b34801561081b57600080fd5b5061083660048036038101906108319190613260565b611df9565b6040516108439190613b7b565b60405180910390f35b34801561085857600080fd5b50610873600480360381019061086e9190613260565b611e19565b005b61088f600480360381019061088a9190613513565b611f11565b005b34801561089d57600080fd5b506108a66121bf565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061091b575061091a82612267565b5b9050919050565b60606000805461093190614221565b80601f016020809104026020016040519081016040528092919081815260200182805461095d90614221565b80156109aa5780601f1061097f576101008083540402835291602001916109aa565b820191906000526020600020905b81548152906001019060200180831161098d57829003601f168201915b5050505050905090565b60006109bf82612349565b6109fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f590613dd8565b60405180910390fd5b6003600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610a676123d1565b73ffffffffffffffffffffffffffffffffffffffff16610a856116ef565b73ffffffffffffffffffffffffffffffffffffffff1614610adb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad290613df8565b60405180910390fd5b8060098190555050565b6000610af0826110f5565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5890613e98565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b806123d1565b73ffffffffffffffffffffffffffffffffffffffff161480610baf5750610bae81610ba96123d1565b611d65565b5b610bee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be590613d58565b60405180910390fd5b610bf883836123d9565b505050565b6000600280549050905090565b610c15838383612492565b610c208383836124f2565b505050565b6000610c30836111b2565b8210610c71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6890613e58565b60405180910390fd5b6000805b600280549050811015610d245760028181548110610c9657610c9561438b565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610d135783821415610d06578092505050610d68565b81610d1090614284565b91505b80610d1d90614284565b9050610c75565b506000610d66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5d90613e58565b60405180910390fd5b505b92915050565b610d766123d1565b73ffffffffffffffffffffffffffffffffffffffff16610d946116ef565b73ffffffffffffffffffffffffffffffffffffffff1614610dea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de190613df8565b60405180910390fd5b600a60159054906101000a900460ff1615600a60156101000a81548160ff021916908315150217905550565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610e746123d1565b73ffffffffffffffffffffffffffffffffffffffff16610e926116ef565b73ffffffffffffffffffffffffffffffffffffffff1614610ee8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edf90613df8565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610f2657600080fd5b565b610f4383838360405180602001604052806000815250611b76565b505050565b610f506123d1565b73ffffffffffffffffffffffffffffffffffffffff16610f6e6116ef565b73ffffffffffffffffffffffffffffffffffffffff1614610fc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbb90613df8565b60405180910390fd5b8060088190555050565b6000610fd8610bfd565b8210611019576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101090613e78565b60405180910390fd5b819050919050565b600c6020528060005260406000206000915090505481565b6110416123d1565b73ffffffffffffffffffffffffffffffffffffffff1661105f6116ef565b73ffffffffffffffffffffffffffffffffffffffff16146110b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ac90613df8565b60405180910390fd5b80600d90805190602001906110cb92919061301e565b5050565b600a60159054906101000a900460ff1681565b600a60149054906101000a900460ff1681565b6000806002838154811061110c5761110b61438b565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a090613d98565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611223576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121a90613d78565b60405180910390fd5b600080600280549050905060005b818110156112c9576002818154811061124d5761124c61438b565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156112b857826112b590614284565b92505b806112c290614284565b9050611231565b50600090508192505050919050565b6112e06123d1565b73ffffffffffffffffffffffffffffffffffffffff166112fe6116ef565b73ffffffffffffffffffffffffffffffffffffffff1614611354576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134b90613df8565b60405180910390fd5b61135e60006125df565b565b6113686123d1565b73ffffffffffffffffffffffffffffffffffffffff166113866116ef565b73ffffffffffffffffffffffffffffffffffffffff16146113dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d390613df8565b60405180910390fd5b60005b828290508110156115f157600073ffffffffffffffffffffffffffffffffffffffff168383838181106114155761141461438b565b5b905060200201602081019061142a9190613260565b73ffffffffffffffffffffffffffffffffffffffff161415611481576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147890613c38565b60405180910390fd5b6001600b600085858581811061149a5761149961438b565b5b90506020020160208101906114af9190613260565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506000600c60008585858181106115195761151861438b565b5b905060200201602081019061152e9190613260565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054116115755760006115dd565b600c600084848481811061158c5761158b61438b565b5b90506020020160208101906115a19190613260565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020545b5080806115e990614284565b9150506113df565b505050565b6060611601826111b2565b600010611643576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163a90613e58565b60405180910390fd5b600061164e836111b2565b905060008167ffffffffffffffff81111561166c5761166b6143ba565b5b60405190808252806020026020018201604052801561169a5781602001602082028036833780820191505090505b50905060005b828110156116e4576116b28582610c25565b8282815181106116c5576116c461438b565b5b60200260200101818152505080806116dc90614284565b9150506116a0565b508092505050919050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461172890614221565b80601f016020809104026020016040519081016040528092919081815260200182805461175490614221565b80156117a15780601f10611776576101008083540402835291602001916117a1565b820191906000526020600020905b81548152906001019060200180831161178457829003601f168201915b5050505050905090565b600a60159054906101000a900460ff166117fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f190613cf8565b60405180910390fd5b6000811161183d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183490613ef8565b60405180910390fd5b600954811115611882576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187990613e38565b60405180910390fd5b600061188c610bfd565b90506118966126a5565b82826118a29190614056565b11156118e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118da90613c78565b60405180910390fd5b816008546118f191906140dd565b3410156118fd57600080fd5b60005b828110156119305761191d3382846119189190614056565b6126bc565b808061192890614284565b915050611900565b505050565b61193d6123d1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a290613cd8565b60405180910390fd5b80600460006119b86123d1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a656123d1565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611aaa9190613b7b565b60405180910390a35050565b611abe6123d1565b73ffffffffffffffffffffffffffffffffffffffff16611adc6116ef565b73ffffffffffffffffffffffffffffffffffffffff1614611b32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2990613df8565b60405180910390fd5b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611b82848484846126da565b611b8d8484846124f2565b50505050565b6060611b9e82612349565b611bdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd490613bd8565b60405180910390fd5b6000611be761273c565b90506000815111611c075760405180602001604052806000815250611c32565b80611c11846127ce565b604051602001611c22929190613a8c565b6040516020818303038152906040525b915050919050565b611c426123d1565b73ffffffffffffffffffffffffffffffffffffffff16611c606116ef565b73ffffffffffffffffffffffffffffffffffffffff1614611cb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cad90613df8565b60405180910390fd5b6000611cc0610bfd565b9050600082118015611cd457506007548211155b611d13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0a90613c98565b60405180910390fd5b60005b82811015611d4657611d33848284611d2e9190614056565b6126bc565b8080611d3e90614284565b915050611d16565b508160076000828254611d599190614137565b92505081905550505050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600b6020528060005260406000206000915054906101000a900460ff1681565b611e216123d1565b73ffffffffffffffffffffffffffffffffffffffff16611e3f6116ef565b73ffffffffffffffffffffffffffffffffffffffff1614611e95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8c90613df8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efc90613c18565b60405180910390fd5b611f0e816125df565b50565b600a60149054906101000a900460ff16611f60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5790613ed8565b60405180910390fd5b600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611fec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe390613d38565b60405180910390fd5b6000611ff6610bfd565b90506000600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205460056120469190614137565b90508083111561208b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208290613bb8565b60405180910390fd5b6120936126a5565b838361209f9190614056565b11156120e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d790613c78565b60405180910390fd5b826008546120ee91906140dd565b341015612130576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212790613f18565b60405180910390fd5b82600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461217f9190614056565b9250508190555060005b838110156121b9576121a63382856121a19190614056565b6126bc565b80806121b190614284565b915050612189565b50505050565b6121c76123d1565b73ffffffffffffffffffffffffffffffffffffffff166121e56116ef565b73ffffffffffffffffffffffffffffffffffffffff161461223b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223290613df8565b60405180910390fd5b600a60149054906101000a900460ff1615600a60146101000a81548160ff021916908315150217905550565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061233257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061234257506123418261292f565b5b9050919050565b6000600280549050821080156123ca5750600073ffffffffffffffffffffffffffffffffffffffff16600283815481106123865761238561438b565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b9050919050565b600033905090565b816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661244c836110f5565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6124a361249d6123d1565b82612999565b6124e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d990613eb8565b60405180910390fd5b6124ed838383612a77565b505050565b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146125da57600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663028594648484846040518463ffffffff1660e01b81526004016125a793929190613ad6565b600060405180830381600087803b1580156125c157600080fd5b505af11580156125d5573d6000803e3d6000fd5b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006007546113886126b79190614137565b905090565b6126d6828260405180602001604052806000815250612c30565b5050565b6126eb6126e56123d1565b83612999565b61272a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272190613eb8565b60405180910390fd5b61273684848484612c8b565b50505050565b6060600d805461274b90614221565b80601f016020809104026020016040519081016040528092919081815260200182805461277790614221565b80156127c45780601f10612799576101008083540402835291602001916127c4565b820191906000526020600020905b8154815290600101906020018083116127a757829003601f168201915b5050505050905090565b60606000821415612816576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061292a565b600082905060005b6000821461284857808061283190614284565b915050600a8261284191906140ac565b915061281e565b60008167ffffffffffffffff811115612864576128636143ba565b5b6040519080825280601f01601f1916602001820160405280156128965781602001600182028036833780820191505090505b5090505b60008514612923576001826128af9190614137565b9150600a856128be91906142cd565b60306128ca9190614056565b60f81b8183815181106128e0576128df61438b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561291c91906140ac565b945061289a565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60006129a482612349565b6129e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129da90613d18565b60405180910390fd5b60006129ee836110f5565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612a5d57508373ffffffffffffffffffffffffffffffffffffffff16612a45846109b4565b73ffffffffffffffffffffffffffffffffffffffff16145b80612a6e5750612a6d8185611d65565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612a97826110f5565b73ffffffffffffffffffffffffffffffffffffffff1614612aed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ae490613e18565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5490613cb8565b60405180910390fd5b612b68838383612ce7565b612b736000826123d9565b8160028281548110612b8857612b8761438b565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b612c3a8383612cec565b612c476000848484612e74565b612c86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c7d90613bf8565b60405180910390fd5b505050565b612c96848484612a77565b612ca284848484612e74565b612ce1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cd890613bf8565b60405180910390fd5b50505050565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d5390613db8565b60405180910390fd5b612d6581612349565b15612da5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d9c90613c58565b60405180910390fd5b612db160008383612ce7565b6002829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000612e958473ffffffffffffffffffffffffffffffffffffffff1661300b565b15612ffe578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612ebe6123d1565b8786866040518563ffffffff1660e01b8152600401612ee09493929190613b0d565b602060405180830381600087803b158015612efa57600080fd5b505af1925050508015612f2b57506040513d601f19601f82011682018060405250810190612f28919061349d565b60015b612fae573d8060008114612f5b576040519150601f19603f3d011682016040523d82523d6000602084013e612f60565b606091505b50600081511415612fa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f9d90613bf8565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613003565b600190505b949350505050565b600080823b905060008111915050919050565b82805461302a90614221565b90600052602060002090601f01602090048101928261304c5760008555613093565b82601f1061306557805160ff1916838001178555613093565b82800160010185558215613093579182015b82811115613092578251825591602001919060010190613077565b5b5090506130a091906130a4565b5090565b5b808211156130bd5760008160009055506001016130a5565b5090565b60006130d46130cf84613f78565b613f53565b9050828152602081018484840111156130f0576130ef6143f8565b5b6130fb8482856141df565b509392505050565b600061311661311184613fa9565b613f53565b905082815260208101848484011115613132576131316143f8565b5b61313d8482856141df565b509392505050565b60008135905061315481614aab565b92915050565b60008083601f8401126131705761316f6143ee565b5b8235905067ffffffffffffffff81111561318d5761318c6143e9565b5b6020830191508360208202830111156131a9576131a86143f3565b5b9250929050565b6000813590506131bf81614ac2565b92915050565b6000813590506131d481614ad9565b92915050565b6000815190506131e981614ad9565b92915050565b600082601f830112613204576132036143ee565b5b81356132148482602086016130c1565b91505092915050565b600082601f830112613232576132316143ee565b5b8135613242848260208601613103565b91505092915050565b60008135905061325a81614af0565b92915050565b60006020828403121561327657613275614402565b5b600061328484828501613145565b91505092915050565b600080604083850312156132a4576132a3614402565b5b60006132b285828601613145565b92505060206132c385828601613145565b9150509250929050565b6000806000606084860312156132e6576132e5614402565b5b60006132f486828701613145565b935050602061330586828701613145565b92505060406133168682870161324b565b9150509250925092565b6000806000806080858703121561333a57613339614402565b5b600061334887828801613145565b945050602061335987828801613145565b935050604061336a8782880161324b565b925050606085013567ffffffffffffffff81111561338b5761338a6143fd565b5b613397878288016131ef565b91505092959194509250565b600080604083850312156133ba576133b9614402565b5b60006133c885828601613145565b92505060206133d9858286016131b0565b9150509250929050565b600080604083850312156133fa576133f9614402565b5b600061340885828601613145565b92505060206134198582860161324b565b9150509250929050565b6000806020838503121561343a57613439614402565b5b600083013567ffffffffffffffff811115613458576134576143fd565b5b6134648582860161315a565b92509250509250929050565b60006020828403121561348657613485614402565b5b6000613494848285016131c5565b91505092915050565b6000602082840312156134b3576134b2614402565b5b60006134c1848285016131da565b91505092915050565b6000602082840312156134e0576134df614402565b5b600082013567ffffffffffffffff8111156134fe576134fd6143fd565b5b61350a8482850161321d565b91505092915050565b60006020828403121561352957613528614402565b5b60006135378482850161324b565b91505092915050565b600061354c8383613a6e565b60208301905092915050565b6135618161416b565b82525050565b600061357282613fea565b61357c8185614018565b935061358783613fda565b8060005b838110156135b857815161359f8882613540565b97506135aa8361400b565b92505060018101905061358b565b5085935050505092915050565b6135ce8161417d565b82525050565b60006135df82613ff5565b6135e98185614029565b93506135f98185602086016141ee565b61360281614407565b840191505092915050565b600061361882614000565b613622818561403a565b93506136328185602086016141ee565b61363b81614407565b840191505092915050565b600061365182614000565b61365b818561404b565b935061366b8185602086016141ee565b80840191505092915050565b600061368460188361403a565b915061368f82614418565b602082019050919050565b60006136a760218361403a565b91506136b282614441565b604082019050919050565b60006136ca60328361403a565b91506136d582614490565b604082019050919050565b60006136ed60268361403a565b91506136f8826144df565b604082019050919050565b6000613710601b8361403a565b915061371b8261452e565b602082019050919050565b6000613733601c8361403a565b915061373e82614557565b602082019050919050565b600061375660318361403a565b915061376182614580565b604082019050919050565b600061377960208361403a565b9150613784826145cf565b602082019050919050565b600061379c60248361403a565b91506137a7826145f8565b604082019050919050565b60006137bf60198361403a565b91506137ca82614647565b602082019050919050565b60006137e260128361403a565b91506137ed82614670565b602082019050919050565b6000613805602c8361403a565b915061381082614699565b604082019050919050565b600061382860198361403a565b9150613833826146e8565b602082019050919050565b600061384b60388361403a565b915061385682614711565b604082019050919050565b600061386e602a8361403a565b915061387982614760565b604082019050919050565b600061389160298361403a565b915061389c826147af565b604082019050919050565b60006138b460208361403a565b91506138bf826147fe565b602082019050919050565b60006138d7602c8361403a565b91506138e282614827565b604082019050919050565b60006138fa60058361404b565b915061390582614876565b600582019050919050565b600061391d60208361403a565b91506139288261489f565b602082019050919050565b600061394060298361403a565b915061394b826148c8565b604082019050919050565b600061396360208361403a565b915061396e82614917565b602082019050919050565b600061398660168361403a565b915061399182614940565b602082019050919050565b60006139a960178361403a565b91506139b482614969565b602082019050919050565b60006139cc60218361403a565b91506139d782614992565b604082019050919050565b60006139ef60318361403a565b91506139fa826149e1565b604082019050919050565b6000613a1260158361403a565b9150613a1d82614a30565b602082019050919050565b6000613a3560208361403a565b9150613a4082614a59565b602082019050919050565b6000613a5860158361403a565b9150613a6382614a82565b602082019050919050565b613a77816141d5565b82525050565b613a86816141d5565b82525050565b6000613a988285613646565b9150613aa48284613646565b9150613aaf826138ed565b91508190509392505050565b6000602082019050613ad06000830184613558565b92915050565b6000606082019050613aeb6000830186613558565b613af86020830185613558565b613b056040830184613a7d565b949350505050565b6000608082019050613b226000830187613558565b613b2f6020830186613558565b613b3c6040830185613a7d565b8181036060830152613b4e81846135d4565b905095945050505050565b60006020820190508181036000830152613b738184613567565b905092915050565b6000602082019050613b9060008301846135c5565b92915050565b60006020820190508181036000830152613bb0818461360d565b905092915050565b60006020820190508181036000830152613bd181613677565b9050919050565b60006020820190508181036000830152613bf18161369a565b9050919050565b60006020820190508181036000830152613c11816136bd565b9050919050565b60006020820190508181036000830152613c31816136e0565b9050919050565b60006020820190508181036000830152613c5181613703565b9050919050565b60006020820190508181036000830152613c7181613726565b9050919050565b60006020820190508181036000830152613c9181613749565b9050919050565b60006020820190508181036000830152613cb18161376c565b9050919050565b60006020820190508181036000830152613cd18161378f565b9050919050565b60006020820190508181036000830152613cf1816137b2565b9050919050565b60006020820190508181036000830152613d11816137d5565b9050919050565b60006020820190508181036000830152613d31816137f8565b9050919050565b60006020820190508181036000830152613d518161381b565b9050919050565b60006020820190508181036000830152613d718161383e565b9050919050565b60006020820190508181036000830152613d9181613861565b9050919050565b60006020820190508181036000830152613db181613884565b9050919050565b60006020820190508181036000830152613dd1816138a7565b9050919050565b60006020820190508181036000830152613df1816138ca565b9050919050565b60006020820190508181036000830152613e1181613910565b9050919050565b60006020820190508181036000830152613e3181613933565b9050919050565b60006020820190508181036000830152613e5181613956565b9050919050565b60006020820190508181036000830152613e7181613979565b9050919050565b60006020820190508181036000830152613e918161399c565b9050919050565b60006020820190508181036000830152613eb1816139bf565b9050919050565b60006020820190508181036000830152613ed1816139e2565b9050919050565b60006020820190508181036000830152613ef181613a05565b9050919050565b60006020820190508181036000830152613f1181613a28565b9050919050565b60006020820190508181036000830152613f3181613a4b565b9050919050565b6000602082019050613f4d6000830184613a7d565b92915050565b6000613f5d613f6e565b9050613f698282614253565b919050565b6000604051905090565b600067ffffffffffffffff821115613f9357613f926143ba565b5b613f9c82614407565b9050602081019050919050565b600067ffffffffffffffff821115613fc457613fc36143ba565b5b613fcd82614407565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614061826141d5565b915061406c836141d5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156140a1576140a06142fe565b5b828201905092915050565b60006140b7826141d5565b91506140c2836141d5565b9250826140d2576140d161432d565b5b828204905092915050565b60006140e8826141d5565b91506140f3836141d5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561412c5761412b6142fe565b5b828202905092915050565b6000614142826141d5565b915061414d836141d5565b9250828210156141605761415f6142fe565b5b828203905092915050565b6000614176826141b5565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561420c5780820151818401526020810190506141f1565b8381111561421b576000848401525b50505050565b6000600282049050600182168061423957607f821691505b6020821081141561424d5761424c61435c565b5b50919050565b61425c82614407565b810181811067ffffffffffffffff8211171561427b5761427a6143ba565b5b80604052505050565b600061428f826141d5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156142c2576142c16142fe565b5b600182019050919050565b60006142d8826141d5565b91506142e3836141d5565b9250826142f3576142f261432d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f546f6f206d616e79206d696e7473207265717565737465640000000000000000600082015250565b7f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b6560008201527f6e00000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e756c6c2061646472657373206973206e6f7420616c6c6f7765640000000000600082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f5468652072657175657374656420616d6f756e7420657863656564732074686560008201527f2072656d61696e696e6720737570706c79000000000000000000000000000000602082015250565b7f4e6f7420656e6f7567682072657365727665206c65667420666f72207465616d600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f53616c65206973206e6f74206163746976650000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f43616c6c6572206973206e6f742077686974656c697374656400000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4d696e74656420616d6f756e7420657863656564732073616c65206c696d6974600082015250565b7f455243373231456e756d3a206f776e657220696f6f6200000000000000000000600082015250565b7f455243373231456e756d3a20676c6f62616c20696f6f62000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f50726573616c65206973206e6f74206163746976650000000000000000000000600082015250565b7f4d696e74656420616d6f756e742073686f756c6420626520706f736974697665600082015250565b7f57726f6e6720616d6f756e742070726f76696465640000000000000000000000600082015250565b614ab48161416b565b8114614abf57600080fd5b50565b614acb8161417d565b8114614ad657600080fd5b50565b614ae281614189565b8114614aed57600080fd5b50565b614af9816141d5565b8114614b0457600080fd5b5056fea26469706673582212200397e75135d62f1e2c2b059a4034ace4965e2c6dfcd08bf5cfc035460e8b80fe64736f6c63430008070033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000c4e6f744c617276614c616473000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034e4c4c0000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): NotLarvaLads
Arg [1] : _symbol (string): NLL

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [3] : 4e6f744c617276614c6164730000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [5] : 4e4c4c0000000000000000000000000000000000000000000000000000000000


Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.