ETH Price: $3,362.82 (-1.58%)
Gas: 8 Gwei

Contract

0xA3F5998047579334607c47a6a2889BF87A17Fc02
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Value
Set Approval For...195758832024-04-03 14:37:1184 days ago1712155031IN
0xA3F59980...87A17Fc02
0 ETH0.0021829547.30137062
Unwrap195758322024-04-03 14:26:5984 days ago1712154419IN
0xA3F59980...87A17Fc02
0 ETH0.0037991845.79478591
Set Approval For...193757532024-03-06 11:12:23112 days ago1709723543IN
0xA3F59980...87A17Fc02
0 ETH0.0035034975.91542832
Wrap193757212024-03-06 11:05:59112 days ago1709723159IN
0xA3F59980...87A17Fc02
0 ETH0.0055299662.53562067
Set Approval For...193321152024-02-29 8:55:35118 days ago1709196935IN
0xA3F59980...87A17Fc02
0 ETH0.0027420359.32317848
Set Approval For...193318622024-02-29 8:04:47118 days ago1709193887IN
0xA3F59980...87A17Fc02
0 ETH0.0023704451.36398191
Safe Transfer Fr...193318412024-02-29 8:00:23118 days ago1709193623IN
0xA3F59980...87A17Fc02
0 ETH0.0034192856.49569421
Unwrap193152522024-02-27 0:16:35120 days ago1708992995IN
0xA3F59980...87A17Fc02
0 ETH0.0028637138
Set Approval For...192408242024-02-16 13:42:35131 days ago1708090955IN
0xA3F59980...87A17Fc02
0 ETH0.0019061841.30402912
Safe Transfer Fr...192196072024-02-13 14:14:11134 days ago1707833651IN
0xA3F59980...87A17Fc02
0 ETH0.0041184957.13470376
Set Approval For...191988642024-02-10 16:24:11137 days ago1707582251IN
0xA3F59980...87A17Fc02
0 ETH0.0016817136.44010509
Set Approval For...191434432024-02-02 21:38:59144 days ago1706909939IN
0xA3F59980...87A17Fc02
0 ETH0.0004216917.39827662
Unwrap190854102024-01-25 18:26:11153 days ago1706207171IN
0xA3F59980...87A17Fc02
0 ETH0.0020177626.77462373
Safe Transfer Fr...189983852024-01-13 13:51:47165 days ago1705153907IN
0xA3F59980...87A17Fc02
0 ETH0.0009695422.11695825
Safe Transfer Fr...189983682024-01-13 13:47:59165 days ago1705153679IN
0xA3F59980...87A17Fc02
0 ETH0.0011650219.11852374
Set Approval For...189859562024-01-11 20:07:47166 days ago1705003667IN
0xA3F59980...87A17Fc02
0 ETH0.0013027928.22954557
Unwrap188163402023-12-19 0:07:23190 days ago1702944443IN
0xA3F59980...87A17Fc02
0 ETH0.0047862950.24404361
Unwrap187864822023-12-14 19:33:11194 days ago1702582391IN
0xA3F59980...87A17Fc02
0 ETH0.0040475850.49320689
Set Approval For...187697882023-12-12 11:24:35197 days ago1702380275IN
0xA3F59980...87A17Fc02
0 ETH0.0010968623.76731779
Wrap185434762023-11-10 18:57:23228 days ago1699642643IN
0xA3F59980...87A17Fc02
0 ETH0.0036869951.69002503
Wrap185434472023-11-10 18:51:35229 days ago1699642295IN
0xA3F59980...87A17Fc02
0 ETH0.0044320550.119969
Transfer From179784582023-08-23 15:59:23308 days ago1692806363IN
0xA3F59980...87A17Fc02
0 ETH0.0014118624.51069768
Safe Transfer Fr...178872982023-08-10 21:54:23320 days ago1691704463IN
0xA3F59980...87A17Fc02
0 ETH0.0014607723.94673747
Update174032682023-06-03 23:00:47388 days ago1685833247IN
0xA3F59980...87A17Fc02
0 ETH0.0008114620.61601248
Set Approval For...170425432023-04-14 2:37:59439 days ago1681439879IN
0xA3F59980...87A17Fc02
0 ETH0.0013031828.23811726
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:
EtherRockERC721

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-09-06
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { // https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/ERC721.sol
    
    using Address for address;
    using Strings for uint256;
    
    mapping(uint => string) private hashes;
    
    // Token name
    string private _name = "Wrapped Ether Rock";

    // Token symbol
    string private _symbol = "WER";
    
    uint private _totalSupply;
    
    function totalSupply() public view returns (uint) {
        return _totalSupply;
    }
    
    function addIPFShashes() internal {
        hashes[0] = "QmS5Pb4i72JfSsip3PPCELf9Bu3ygce9D2kGS2BEx9PPGy";
        hashes[1] = "QmfWRhjNqyXyqEnarRRq5whaBmTm9sKJU7TxWPD39NX4TP";
        hashes[2] = "QmX2tgEKCBgRYHPnUAm8AdNFzDJGhjRZ4ZkvQZNmgKUe2p";
        hashes[3] = "QmSeAU7SynbUPNPNWeu8wTyV5nJGLSFk1VdequQxbvLggg";
        hashes[4] = "QmapgjCNbJmXm1bRNFiQh5ozhMTEBwmhpukpHBiqWFMdDa";
        hashes[5] = "QmeYh9ZkRe6ZvdFkRaTjqkdBUF6FwCtEJgAnihXj4j3v13";
        hashes[6] = "QmQRk4TozeBtPWnHMtq3Am36LMf33PsJQyzNPTaBWHKNFS";
        hashes[7] = "QmUSXJRyhTRxz6TA6MseGqBERXPPid3x8PVkkh99NoFv9S";
        hashes[8] = "QmSEwpg5C2dfgxywDeCmtUVaUdKiLFKXQK8d9KCku3SF2Y";
        hashes[9] = "QmcQJrWyt1TUjsbjZSjcD4Vz8nKsy4VseJsB8N7EvhSUPJ";
        hashes[10] = "QmPb12GN3pcvL78NVQ6FK9AE252ChBK8gQMCzUjez7prC7";
        hashes[11] = "QmfGXgopgkAiERmtt2inMuwvaajKv8uUow2WjVuJd8n8Cg";
        hashes[12] = "QmRpt7sGKRSxcdpnkdLEdrQZyuMyYgoqez6mYumTdAkmbo";
        hashes[13] = "QmSqE8AjqsiHx5baZ2M4p6mjC5Va35F65yDbkRebFaHGZu";
        hashes[14] = "QmQ6wZHRCaFHafhyqGAK3638biAk6tz56DCAK2BLQKPTct";
        hashes[15] = "QmT8ezQ4nuESWYMzcfbb6kcfESDDyeK2CBYp1uaRQo9xLd";
        hashes[16] = "QmZr1z7cCTXRqYWvPSatcGZwJqSt8j6hsMxLUJBQMbnVnr";
        hashes[17] = "QmTSuh4gznWdw3STbBVG1Ve1jynHHLpfFcdgFwJi4nqktD";
        hashes[18] = "QmRpCGbX5eFbtDehnhatdtp7a1kzmgnkAZSJubsD5Hx7Hh";
        hashes[19] = "QmUUDST3T2oHHrf7Sm4AbVxsh46Mt42XyV6S1AMVgFWM88";
        hashes[20] = "QmY62Pt1923mPKaJkSLyYoSWCGYbLiyxWQoZYaMHPE8FNF";
        hashes[21] = "QmZdDjcsxzS7vQkQiiRmtfDC5S5CAvHRELyMsAF1cPrF3Q";
        hashes[22] = "QmQRZ6emrZyepPGSFfGXUAiHJYVRJaKU83Qyr7KcXfNsbf";
        hashes[23] = "QmfCDeQvQJ2CwKA5VNie6LC5Ny63VdL7uy7UaZwmoJ5Cmu";
        hashes[24] = "QmV585E22k9gJjcBeZNtYdDmoi6yfr36M9yVLdiQP3LxAD";
        hashes[25] = "QmeNqqxdMN5AutjZWeqLQFJzfM6Vxvyi9mBHHKyEWv5r31";
        hashes[26] = "QmX9ZoDYo5ut3icFft1UugnmkyPbZhuYYpg8yPMJzYFftU";
        hashes[27] = "QmRJJLP1ZvPLkyenD7jx7eC798ndeFQyv22rsCaSViLN6k";
        hashes[28] = "QmRbt7LFyAAuCMnv9sAhKRtUrUMSrSQYuFPtPNhpSsjgmq";
        hashes[29] = "QmQNy8Y83KonKfB59kzhvr9eQ4DjC77mJEjuPUpNRKTiKK";
        hashes[30] = "QmZiUEGNKZwQZqrKnDV698hjxT2E4vLuq16Ps3potVDAo8";
        hashes[31] = "QmQUxDwfRXyErr8pUcfKaxjCJwUj7SiE9DLrrJHqL9wCxa";
        hashes[32] = "QmWrkTnGULvc9m7hUub5ss6H1oTfixfixjdgkbrbvxpKNr";
        hashes[33] = "Qmd8eNduEprDi1JX8NUwDXDBDuXcGPmBM3fa1xH5yuMf8d";
        hashes[34] = "QmYKXfA6LsVa28Xn2fLz435Smzm4N6FeJ1k3oVhrmvnAJF";
        hashes[35] = "Qmf6xbzaQ1P6StboKGApSkuDoXeB5cZ61wotLT5Lz1UR9G";
        hashes[36] = "QmZVE4KyoFViMApkgjrqFDnh15HEmXrmXcT9fBnNwhrByo";
        hashes[37] = "QmPWihwusF9ZwtPiXAf87MWD9cA9gENjjVAHPMtLvDBC12";
        hashes[38] = "QmXB34jHAPb7QfRVVnXqpynWaLsGMT1u5a4ZyJWwPRFE7e";
        hashes[39] = "QmZPSj78qzByt6UCFcamUtFJV52yhT5zBnWH63drhFDftf";
        hashes[40] = "QmVVKjGCh1xjTC9dq3ZUJnZLeJJoQrRJhbT2Jfb52NnsA7";
        hashes[41] = "QmauiTLCD6ZBBqZnG1XnkEtgvxfxSAN3YaKtGX9Y4xmNvN";
        hashes[42] = "QmVu9UaQ6HzMRSNh4kH3Chn1yr7zXEg3yrfDaAwJKfvynA";
        hashes[43] = "QmexUh6jw2ThRr7T8c4DkAhU9QYRzdH8AqAQHxiFrvf9Wi";
        hashes[44] = "QmPqpQBWWTb8DP6bmXWgZsXUUh6Lqj2ShMXHC2rudgzzDQ";
        hashes[45] = "QmSdPufB8nFjNnexJmkmNva4HrtwNHLDR5LmzkvWA5755d";
        hashes[46] = "QmYebUrncSKgvoGXmWo4WyYqnd7B2sE7fgeTj81s8hKann";
        hashes[47] = "QmPmFrB8afYZoq2EL3tQ71FiauxkKke5ELDtxNEAXbBe3U";
        hashes[48] = "QmQ5NiJuZNoyv6xVm7wZEpvNanqLgajknz1s2EdnEh5YDt";
        hashes[49] = "QmaCj77AeNV7F3YE8KTLk6ijXJkqLRZrqoomAcpks1ZpC1";
        hashes[50] = "QmUtFQ2NaA1zoBHoASwgaFsn2DED2ZjSR4D3wvt3Y1kTcG";
        hashes[51] = "QmZB4qQD4d2uBiSZoUQWpFSRf63FQvkMaSjFzP6CnNgTH1";
        hashes[52] = "QmQrm4mw4tYzsNMHd2wvhyqJfZ4u1FosYTr2Fmc9v1KUzt";
        hashes[53] = "QmX9ANT6HZGXegt9p5fWRfzv6Bzve2agNGA7LtDzngTJAg";
        hashes[54] = "QmczFxFCZEWAsiFCPdsdovKWMqrhAk1zfXM6HS66zFzA4P";
        hashes[55] = "QmQDceMyrYftARLBr4QANf4L1Wi4DnCAzrck6JnJ5cKLs2";
        hashes[56] = "QmQogFCB14WgPJyoPpmPScRLNynRpGAK9GpbK25Uh9u7pf";
        hashes[57] = "QmPGdKY1W7XzCasRyQ6ePyzM2vWjwbHqvUGnZY5BhZus5C";
        hashes[58] = "QmaAbvGDB22Ycw7Xn1hapGuYDESvs91jWQdqLGJDiZTLvy";
        hashes[59] = "QmbqsPb7SdUbm1TdvgWeh1HytT6ioitJ9mkzKZRsZt1iMU";
        hashes[60] = "QmPqpQBWWTb8DP6bmXWgZsXUUh6Lqj2ShMXHC2rudgzzDQ";
        hashes[61] = "QmVbZHhThcDrM37P3yge9PyzTVpeuD5EZBzwzqJukuW9CX";
        hashes[62] = "QmRruwFh2qGP4vZYsYRgDgScUBzBSWSf61XsrLBi2Y7LZi";
        hashes[63] = "QmTjUE74LVF5eUEhSmh4yVSLUwzHdwD1RwhE6MeouXzksn";
        hashes[64] = "QmTFS2tozPcH6BApzwhRW1bCVmsLPFFVcMRKHfaTADH87T";
        hashes[65] = "QmRgYA3poAMcfDa1qwW9ZbUpy5qSKEk6DYTMwtvStuSM4y";
        hashes[66] = "QmZ5eRoQ5qVTAmu41WQkjBemk4yS6nSXJjRDAeG8QmZWjJ";
        hashes[67] = "QmcK2YWM3cN7MbcDcL1Wa3uvHhdkeY3gUQjAGfqDpvZSuR";
        hashes[68] = "QmX7RSKvKDBKBLJ1zY3ohAwpsCkxp9bwejmKTdE8Lx83eQ";
        hashes[69] = "QmWgU93KrKzw7JUBzgt5zmNEfwGrwxud6nS5dZTBPnTcLZ";
        hashes[70] = "QmfEpi6bvcaHYgDcvGEBdqavgqvctg8NsVxY6bkfA4d8EE";
        hashes[71] = "QmX9ANT6HZGXegt9p5fWRfzv6Bzve2agNGA7LtDzngTJAg";
        hashes[72] = "QmPz7X7YwS2HDqTtEa4LqaUQF3geEvmgfQd3LvdaEw6zFH";
        hashes[73] = "QmfLa3r4J5DzZ85KzQRbX2sxDLqTcxiTR6gkjp5Chz3KSr";
        hashes[74] = "QmYeW9C2zLxoB3imWXLxXKXaRqopWvCbN8WhakAPauE3TK";
        hashes[75] = "QmV4CPhqmmyssCqxLU6f6i4jxhaxbkzoiojNkPgZf79Hra";
        hashes[76] = "QmP8Ckrb9BvDWXLXoZKoRJvfRhs5U4fS8NaTbEhvvGKzhV";
        hashes[77] = "QmcK2YWM3cN7MbcDcL1Wa3uvHhdkeY3gUQjAGfqDpvZSuR";
        hashes[78] = "QmTHLruP6iHriHqqw6oPX6Tsy4hiVzT7MQsUpoaubAqsij";
        hashes[79] = "QmcCaMjtstUhrv5Utm52NQikLhT4FLu9DWsA6vWTcwSakp";
        hashes[80] = "QmYKoXs9hHJy2aZn3dF35BFhmNzr9fz1YhfcgQRs46SynK";
        hashes[81] = "QmP8Ckrb9BvDWXLXoZKoRJvfRhs5U4fS8NaTbEhvvGKzhV";
        hashes[82] = "QmPqpQBWWTb8DP6bmXWgZsXUUh6Lqj2ShMXHC2rudgzzDQ";
        hashes[83] = "QmW1kvaXxDERZcBYyc1ZtzVVTno1iHr5sWGLHPEv6VnRM2";
        hashes[84] = "QmYuL7t35d6UZgqeFhXsueFm7V5KQEeyuLcEVgmr11i1Kb";
        hashes[85] = "QmP8Ckrb9BvDWXLXoZKoRJvfRhs5U4fS8NaTbEhvvGKzhV";
        hashes[86] = "QmZGTsrecqQyNWzh2SSVhsqJsGHwVT2sVEBFcNMnwV73df";
        hashes[87] = "QmX9ANT6HZGXegt9p5fWRfzv6Bzve2agNGA7LtDzngTJAg";
        hashes[88] = "QmS5Pb4i72JfSsip3PPCELf9Bu3ygce9D2kGS2BEx9PPGy";
        hashes[89] = "QmT5J37y58QSqDAJhtfT3NKfh2dxmdgDweBrcpLiedkPEH";
        hashes[90] = "QmTRCus34ftngddGLpx3e3gEzWvzoF3NHrK2rc89LNWTyc";
        hashes[91] = "QmatWTce4vojinsc5vt7U7woeqYQ87Lhn1NABHx1MYmnNZ";
        hashes[92] = "QmeNqqxdMN5AutjZWeqLQFJzfM6Vxvyi9mBHHKyEWv5r31";
        hashes[93] = "QmS8q36mainSQneGonX9fFrWB15B7A9HC8o3vkwkCSrqUA";
        hashes[94] = "QmWG3mGDQLFuVmajqsiT2nCvmEeU2qgCCCQyG3f4E53svi";
        hashes[95] = "QmXMfHnX7MgLcA7Bbj4Bpawe4b5EPg7B1McLaf4XHamq1z";
        hashes[96] = "QmS5Pb4i72JfSsip3PPCELf9Bu3ygce9D2kGS2BEx9PPGy";
        hashes[97] = "QmQJbKHjvhZtbiaFWJiJ1DxGQ6gyxZxTzKp6VxR95sTXUY";
        hashes[98] = "QmV4Bvz7URJa3Rzfp5sBmMQt4FFmWE6Dsuvg6neWpRsEBe";
        hashes[99] = "QmX4WEC3Y41mFV4sNNiV6QyTqkRhmu1NnF8ZcQBHZiFVED";
    }
    
    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(tokenId < 100, "Enter a tokenId from 0 to 99. Only 100 rocks.");

        string memory baseURI = _baseURI();
        string memory tokenHash = _hash(tokenId);
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenHash)) : ""; // returns for example 'ipfs://QmS5Pb4i72JfSsip3PPCELf9Bu3ygce9D2kGS2BEx9PPGy' for rockId 0
    }

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
    
}

contract EtherRockOG {
    struct Rock {
        address owner;
        bool currentlyForSale;
        uint price;
        uint timesSold;
    }
    mapping (uint => Rock) public rocks;
    // function buyRock(uint256 rockNumber) public payable {} // not used
    // function sellRock(uint256 rockNumber, uint256 price) public {} // not used
    function dontSellRock(uint256 rockNumber) public {}
    function giftRock(uint256 rockNumber, address receiver) public {}
}

contract EtherRockERC721 is ERC721 {

    mapping(uint => address) private ownerRecords;
    
    function checkOwnerRecord(uint tokenId) public view returns (address) {
        return ownerRecords[tokenId];
    }
    
    EtherRockOG etherrock;
    
    address OGaddress;
    
    constructor() {
        OGaddress = 0x41f28833Be34e6EDe3c58D1f597bef429861c4E2;
        etherrock = EtherRockOG(OGaddress);
        for (uint tokenId = 0; tokenId < 100; tokenId++) {
            (address ownerInOGContract, , , ) = getRockInfo(tokenId);
            ownerRecords[tokenId] = ownerInOGContract;
        }
        addIPFShashes();
    }
    
    // pull rock info from OG contract: owner, currentlyForSale, price, timesSold
    function getRockInfo(uint tokenId) public view returns (address, bool, uint, uint) {
        return(etherrock.rocks(tokenId));
    }
    
    function checkIfUpdateRequired(uint tokenId) public view returns (bool updateRequired) {
        (address ownerInOGContract, , , ) = getRockInfo(tokenId);
        if (ownerInOGContract != ownerRecords[tokenId] && ownerInOGContract != address(this)) {
            updateRequired = true;
        } else {
            updateRequired = false;
        }
        return(updateRequired);
    }
    
    function update(uint tokenId) public {
        (address ownerInOGContract, , , ) = getRockInfo(tokenId);
        if (ownerInOGContract != ownerRecords[tokenId] && ownerInOGContract != address(this)) {
            ownerRecords[tokenId] = ownerInOGContract;
        }
    }
    
    function updateAll() public {
        for (uint tokenId = 0; tokenId < 100; tokenId++) {
            update(tokenId);
        }
    }
    
    function wrap(uint tokenId) public {
        (address ownerInOGContract, bool currentlyForSale, , ) = getRockInfo(tokenId);
        require(ownerInOGContract == address(this), "Wrapper contract doesn't own rock in OG contract. Before wrapping a rock, you first have to send it to the wrapper contract by calling giftRock() in the OG contract.");
        require(msg.sender == ownerRecords[tokenId], "You are not recorded as the owner of this rock.");
        
        _safeMint(msg.sender, tokenId);
        
        if (currentlyForSale) {
            etherrock.dontSellRock(tokenId);
        }
    }
    
    // if someone gifts a rock to this wrapper contract while it's listed for sale, and someone buys it before wrap() is called (unlikely but possible), ether will get sent to this contract and receive() will get called. Revert to stop the transaction.
    receive() external payable {
        revert();
    }
    
    function unwrap(uint tokenId) public {
        require(_exists(tokenId), "This rock has not been wrapped.");
        require(_isApprovedOrOwner(_msgSender(), tokenId), "Not owner or approved.");
        
        ownerRecords[tokenId] = msg.sender;
        
        etherrock.giftRock(tokenId, msg.sender);
        
        _burn(tokenId);
    }
    
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"checkIfUpdateRequired","outputs":[{"internalType":"bool","name":"updateRequired","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"checkOwnerRecord","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getRockInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"bool","name":"","type":"bool"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"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":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"unwrap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"update","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"updateAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"wrap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c060405260126080819052715772617070656420457468657220526f636b60701b60a09081526200003591600191906200240c565b50604080518082019091526003808252622ba2a960e91b602090920191825262000062916002916200240c565b503480156200007057600080fd5b50600a80547341f28833be34e6ede3c58d1f597bef429861c4e26001600160a01b0319918216811790925560098054909116909117905560005b606481101562000106576000620000c18262000117565b505050600083815260086020526040902080546001600160a01b0319166001600160a01b03929092169190911790555080620000fd816200254b565b915050620000aa565b5062000111620001af565b62002575565b6009546040516333b67f6360e11b8152600481018390526000918291829182916001600160a01b039091169063676cfec69060240160806040518083038186803b1580156200016557600080fd5b505afa1580156200017a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001a09190620024b2565b93509350935093509193509193565b6040518060600160405280602e815260200162004642602e913960008080526020908152815162000204927fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb59201906200240c565b506040518060600160405280602e815260200162004306602e913960016000908152602090815281516200025c927fada5013122d395ba3c54772283fb069b10426056ef8ca54750cb9bb552a59e7d9201906200240c565b506040518060600160405280602e815260200162004c30602e91396002600090815260209081528151620002b4927fabbb5caa7dda850e60932de0934eb1f9d0f59695050f761dc64e443e5030a5699201906200240c565b506040518060600160405280602e8152602001620047e0602e913960036000908152602090815281516200030c927f101e368776582e57ab3d116ffe2517c0a585cd5b23174b01e275c2d8329c3d839201906200240c565b506040518060600160405280602e815260200162004ff6602e9139600460009081526020908152815162000364927f52d75039926638d3c558b2bdefb945d5be8dae29dedd1c313212a4d472d9fde59201906200240c565b506040518060600160405280602e815260200162004334602e91396005600090815260209081528151620003bc927f2b232c97452f0950c94e2539fdc7e69d21166113cf7a9bcb99b220a3fe5d720a9201906200240c565b506040518060600160405280602e81526020016200486a602e9139600660009081526020908152815162000414927f62103cf3131c85df57aad364d21cba02556d3092d6cb54c298c2e7726a7870bd9201906200240c565b506040518060600160405280602e815260200162004390602e913960076000908152602090815281516200046c927f870253054e3d98b71abec8fff9ebf8a15d167f15909091a800d4acaab9266d2b9201906200240c565b506040518060600160405280602e815260200162004a64602e91396008600090815260209081528151620004c4927f5b8b9143058ba3a137192c563ca6541845e62f0a2f9a667aac4db2fa3c334e3c9201906200240c565b506040518060600160405280602e8152602001620043be602e913960096000908152602090815281516200051c927f324fdf7bfe7bd2828491073f0b7868a9a19ee3eff384c2805040be3e426447f59201906200240c565b506040518060600160405280602e815260200162004168602e9139600a60009081526020908152815162000574927f3e9abaca0aad9ede81f4474766c846d8539f70688e1c8f521bbe1597874e3dc49201906200240c565b506040518060600160405280602e8152602001620046fa602e9139600b600090815260209081528151620005cc927f9115655cbcdb654012cf1b2f7e5dbf11c9ef14e152a19d5f8ea75a329092d5a69201906200240c565b506040518060600160405280602e8152602001620041f2602e9139600c60009081526020908152815162000624927fd0a75bf7ea87fba36ff8a17b4519c45fb727609e6c9161b106680b25b3e2705f9201906200240c565b506040518060600160405280602e815260200162004728602e9139600d6000908152602090815281516200067c927f7ca5987043ac53676c6e30f77ff1a34e98a5fae86b27e5d0cf74ac1711b8a8db9201906200240c565b506040518060600160405280602e815260200162004e58602e9139600e600090815260209081528151620006d4927fe9bc119772df33ac6a685b572c53e6a4988bbdde79a460a23bed029791109f399201906200240c565b506040518060600160405280602e8152602001620041c4602e9139600f6000908152602090815281516200072c927f7536f03fc5db63ca945db399fd3b92bff9b5879a5c0d7d84d2973ef5c841ea069201906200240c565b506040518060600160405280602e81526020016200427c602e9139601060009081526020908152815162000784927f020abee21eef15c21bc31a406c2b8ac3afc5df94a4b02b38abb286f4334e6c5b9201906200240c565b506040518060600160405280602e81526020016200413a602e91396011600090815260209081528151620007dc927fa29f2962b8badecbf4d3036e28fcd7dcf22db126f130193790f7698ee4d3dd849201906200240c565b506040518060600160405280602e815260200162004aee602e9139601260009081526020908152815162000834927f1cb7ce0668e72b96f704af9e1445a9dc6f6ac599eec355bfcfe4d3befbb001be9201906200240c565b506040518060600160405280602e815260200162004b1c602e913960136000908152602090815281516200088c927f50a82f9cbcdfaca82fe46b4a494d325ee6dc33d1fa55b218ab142e6cc2c8a58b9201906200240c565b506040518060600160405280602e815260200162004dce602e91396014600090815260209081528151620008e4927f9998fe8c12a1a1395171fc2449145bb1f0c273bfc80ab4ea62eb7a9cb439450c9201906200240c565b506040518060600160405280602e815260200162004a08602e913960156000908152602090815281516200093c927f52774d722ab93275a0199da6072cca5400bf7f03bf064dd4a2b1af238c418d499201906200240c565b506040518060600160405280602e8152602001620044a4602e9139601660009081526020908152815162000994927fb44b86596a635358e7aa60b17d32860c3f1efe2d3e53fb82c0bb23213b9c4be39201906200240c565b506040518060600160405280602e81526020016200441a602e91396017600090815260209081528151620009ec927fdc275f13e83bcad5305f77e8f2f06c8d9840ee8b7d606ee958f86f59784b2de39201906200240c565b506040518060600160405280602e8152602001620049da602e9139601860009081526020908152815162000a44927f1da244b7f8b81d82e17fde46fbf307da20557945243b38ef4c87c9487b59901b9201906200240c565b506040518060600160405280602e8152602001620049ac602e9139601960009081526020908152815162000a9c927fb0bad370a213ac7dcb3dfe3423b8d60077054da2a57d974f5e9768ef98fd60b69201906200240c565b506040518060600160405280602e81526020016200480e602e9139601a60009081526020908152815162000af4927fed3d8ee28c5f40179e0b53bf87b486c0b1a6ccfb36f03b3c762c723793e066319201906200240c565b506040518060600160405280602e81526020016200452e602e9139601b60009081526020908152815162000b4c927f15129b35860f89ea2ac5b4ba3d68417e9ec4bae78e7eab8959d5f8f3ad42ee799201906200240c565b506040518060600160405280602e815260200162004c5e602e9139601c60009081526020908152815162000ba4927ff548adfdedfd2f8b2416994318306c690dadb026395430e32e9a141187933c869201906200240c565b506040518060600160405280602e815260200162005080602e9139601d60009081526020908152815162000bfc927fb84e4298f3a6292774b798b43a202ce92291460f19fe80ed2d2d7e8e4674dcba9201906200240c565b506040518060600160405280602e815260200162004784602e9139601e60009081526020908152815162000c54927f24d30d6da666a4009a2a398534c9f4ad83932433c3c6d78b8e8d1c3efb30a9bc9201906200240c565b506040518060600160405280602e815260200162004ba6602e9139601f60009081526020908152815162000cac927fcdbf706faff1444e72b0106ae4486b0256043747c99858ded580d001655540f59201906200240c565b506040518060600160405280602e8152602001620043ec602e9139602060008181528152815162000d01927f569e75fc77c1a856f6daaf9e69d8a9566ca34aa47f9133711ce065a571af0cfd9201906200240c565b506040518060600160405280602e815260200162004f6c602e9139602160009081526020908152815162000d59927f20b8703968a1421b7417fbc8615cbe909dc21c5d6ab0d6fd4579bae332adc9379201906200240c565b506040518060600160405280602e81526020016200469e602e9139602260009081526020908152815162000db1927f660960054c44c4d83c420af65c54e6f3437517cffaa9996495231fee01bdba419201906200240c565b506040518060600160405280602e815260200162004a36602e9139602360009081526020908152815162000e09927f2a400e8b310fbd326e4c5c4aed5c8212a6b2bd98d80dbef0077b1b2ee20907d49201906200240c565b506040518060600160405280602e8152602001620044d2602e9139602460009081526020908152815162000e61927ffaaf1897615a4d5824a81780f33dd422a304cae5e7b14f0f9215d1a3deeea9e29201906200240c565b506040518060600160405280602e815260200162004614602e9139602560009081526020908152815162000eb9927fd554518f31b5833712aff068198f0745641f5708162a7286bfaa31c5f461f1ba9201906200240c565b506040518060600160405280602e81526020016200497e602e9139602660009081526020908152815162000f11927fd54e89dee95b843939c00dce8c49063df67efe61a3c8ec818ccaee72d7b7f5a39201906200240c565b506040518060600160405280602e815260200162004670602e9139602760009081526020908152815162000f69927fd6866844f1a8c30f9968e80fa46697288da4b41c675b67a51469639e5afc24359201906200240c565b506040518060600160405280602e81526020016200410c602e9139602860009081526020908152815162000fc1927f5bbfe49fc46bd3c0efd63509af9eb2a12636d52d97f4d1cf52bf53227ef389c29201906200240c565b506040518060600160405280602e81526020016200455c602e9139602960009081526020908152815162001019927f49bfe3c65dd9f3794050d39474bec15417a1630abed1727c133877e89823c14f9201906200240c565b506040518060600160405280602e815260200162004ce8602e9139602a60009081526020908152815162001071927f64d962e4eec2a0d2e4053fc69d3b480f61c5923c09e4bad52cdeec343ff950739201906200240c565b506040518060600160405280602e815260200162004fc8602e9139602b600090815260209081528151620010c9927fe7cae067b01565dd4b0755dfbf1d7c22c5312c3cf1fbed6e1243374844e8ea879201906200240c565b506040518060600160405280602e815260200162004d16602e9139602c60009081526020908152815162001121927f2bfb33747d039531bb279f93c386332ae05e0c10b395017fd2d93fe9fc4c6e239201906200240c565b506040518060600160405280602e8152602001620046cc602e9139602d60009081526020908152815162001179927f1c0457050ca41a86014d854f2d228a8ef35463cc39136c54a5e4f4078eeef5c19201906200240c565b506040518060600160405280602e815260200162004756602e9139602e600090815260209081528151620011d1927f775c7d9143a499372f77b03579dcbb57f9394ad88b4be4180d4b72ba058cd69d9201906200240c565b506040518060600160405280602e815260200162004362602e9139602f60009081526020908152815162001229927f706825d676d3ce2a83ed578770284ddbf9eabdba0c4e14bba165c41389b73c569201906200240c565b506040518060600160405280602e8152602001620042aa602e9139603060009081526020908152815162001281927f28c3dd0e618e8bddf8cf30cd1a2e788f719d9c1f097596a24acbe0c7cb1e05c69201906200240c565b506040518060600160405280602e8152602001620040de602e91396031600090815260209081528151620012d9927fa20a1f31e7e0c47a407717c0b73e822e9ce414e0fc1925c4df69c43f77ac765e9201906200240c565b506040518060600160405280602e8152602001620048c6602e9139603260009081526020908152815162001331927f9e91c95f108ead30341468db9696e39ed81de6a68bc8c6702bcb66393fce6e759201906200240c565b506040518060600160405280602e815260200162004196602e9139603360009081526020908152815162001389927f3884095ca26754c19839d1d65ed3564b4558896672ae6763c55fd1245d56ef7b9201906200240c565b506040518060600160405280602e8152602001620048f4602e91396034600090815260209081528151620013e1927f34c816dab9c312a23fa45b66dbf9c10a2294a4455b7a50973d5e33fd47c39f4a9201906200240c565b506040518060600160405280602e815260200162004f3e602e9139603560009081526020908152815162001439927f0de8d66b2bd125dbab6c2314a8cd08ca7e2ac381b265aefa7ce27c5d9d75d9339201906200240c565b506040518060600160405280602e815260200162004c02602e9139603660009081526020908152815162001491927fe6bccefd92fc2fa71227cbd31f39b085fabc5c0f7b7d07eb4a639c53ad5822f49201906200240c565b506040518060600160405280602e815260200162004476602e91396037600090815260209081528151620014e9927f4e349fca397a2203dbb3e457a82dc8ae1a5129362fdfcdae82619128ca92c0339201906200240c565b506040518060600160405280602e815260200162005024602e9139603860009081526020908152815162001541927f463154dffd5ddce82baa6ddaa825ffda4b4cc1dd8abd5af72f421c487b1335db9201906200240c565b506040518060600160405280602e815260200162004f9a602e9139603960009081526020908152815162001599927fa68e398350be805d9560b1ec3307f811e9f6dda9bf8906288e5b598ec4ea19289201906200240c565b506040518060600160405280602e815260200162005052602e9139603a600090815260209081528151620015f1927ffb34942ebc6f77e2a4779d58cebad9f418cb83cee5ae5135ce8e901b843c34969201906200240c565b506040518060600160405280602e815260200162004ac0602e9139603b60009081526020908152815162001649927f13878d49584e1449cb7c4d09e4633874e2c2915817f025fd56e9ac92bf634fe99201906200240c565b506040518060600160405280602e815260200162004d16602e9139603c600090815260209081528151620016a1927fefaa5c7cc1adb414582a0dc440bee1ceb90207c7493c33cc335d47995e0441049201906200240c565b506040518060600160405280602e815260200162004e2a602e9139603d600090815260209081528151620016f9927fa81c3a5a553fab8c561679d85bb19e6a7eb0218b4839501a326c84cd4158b2d59201906200240c565b506040518060600160405280602e815260200162004ee2602e9139603e60009081526020908152815162001751927f5ee7521a899a1bbd499ad817e1d673d594eb84ef5130440e43abd9ab111048679201906200240c565b506040518060600160405280602e815260200162004950602e9139603f600090815260209081528151620017a9927f5c51f339e19e5238fd1fe3ad8516ae4df2bc1dce47a36fc5eb7f2877185d9eda9201906200240c565b506040518060600160405280602e81526020016200483c602e9139604060009081526020908152815162001801927f55a5bd2f1561a275dba97a3e23bf64b586a74cc4c4a2dc9f1c147ffdbbce11229201906200240c565b506040518060600160405280602e815260200162004d44602e9139604160009081526020908152815162001859927f3511b8eb393fd3b4ce4300791eee67b9f8a8531a570ff8912fc2b075959b0a2b9201906200240c565b506040518060600160405280602e815260200162004eb4602e91396042600090815260209081528151620018b1927f2852b577eb917e124a16ffd8dc1efc55441aabd0717d5d636c873192a2f582429201906200240c565b506040518060600160405280602e8152602001620047b2602e9139604360009081526020908152815162001909927f12f11d7a24fd4754d73b8fe1da0aca1fd3f1aa67e379acf825ea7817ded4a9be9201906200240c565b506040518060600160405280602e81526020016200424e602e9139604460009081526020908152815162001961927ff02924c33170f8ea85c75f37820cb709ac1ad023d409a00f0c3417335c3c2e559201906200240c565b506040518060600160405280602e815260200162004500602e91396045600090815260209081528151620019b9927f8279194eb4b29c3028809787a815b5fcda9c911d6a8c1dab7e4ef293adf594b99201906200240c565b506040518060600160405280602e815260200162004f10602e9139604660009081526020908152815162001a11927f5fdb3bae7605635c99696d6886565eb14e12e4f81036089e8c08d464cdbe16279201906200240c565b506040518060600160405280602e815260200162004f3e602e9139604760009081526020908152815162001a69927f8908f5b1fa9c621f1c60f18c20e096502b8355321351f8d252a3551a3ba770df9201906200240c565b506040518060600160405280602e8152602001620045e6602e9139604860009081526020908152815162001ac1927fb4c4e2b6245313ebc2e84fd30cd4004aef84bd2a40151a93462f49c26e7506fb9201906200240c565b506040518060600160405280602e815260200162004922602e9139604960009081526020908152815162001b19927f901ca3aca1b292c5c6a1550922e912fc3d21ed9dbcca3b2c46ab298fe770ee3b9201906200240c565b506040518060600160405280602e815260200162004220602e9139604a60009081526020908152815162001b71927faf2119b7c214ae78969ba62732e44d4a27b5c140e313a2cf0e18ed8e715c93099201906200240c565b506040518060600160405280602e8152602001620050dc602e9139604b60009081526020908152815162001bc9927f1f7174d3d8fdbe34b9aeded13c683edd11ea2390304ae93f2846b80eb92f3a3d9201906200240c565b506040518060600160405280602e815260200162004da0602e9139604c60009081526020908152815162001c21927ffec8fc345c07e1cb780845776a87475444a9ad5d006d1c0ba391a7299932fc3d9201906200240c565b506040518060600160405280602e8152602001620047b2602e9139604d60009081526020908152815162001c79927f9aeb295f3776ed2ed0cfac59c56dc7082ddda9b6fb55b3bce5672dd474eab0b09201906200240c565b506040518060600160405280602e8152602001620042d8602e9139604e60009081526020908152815162001cd1927fbc1b1bcc71127fe45b676f9e483b926bd80482bed59dc990c5f13506110621ee9201906200240c565b506040518060600160405280602e815260200162004d72602e9139604f60009081526020908152815162001d29927f3f5212df9218f2b491a27f248ede579de03abbd94c4b33b8082cf0a227f4d8aa9201906200240c565b506040518060600160405280602e815260200162004e86602e9139605060009081526020908152815162001d81927fce88c2024293c40081d827eb1442391a6e97fee8350fa59e1b7b8acfc87139009201906200240c565b506040518060600160405280602e815260200162004da0602e9139605160009081526020908152815162001dd9927fecf130467c3ca6d7c047f2161ca24c032bbc3d4b2a77446d9e0dac48aff2d09a9201906200240c565b506040518060600160405280602e815260200162004d16602e9139605260009081526020908152815162001e31927fdbda1a136d50200849f8280b0c8c10720f88f3c1e0a6bdc54afc86d4ba2fcea39201906200240c565b506040518060600160405280602e815260200162004448602e9139605360009081526020908152815162001e89927f66f4851715b29678b0cca267bfde816a0838d4b72ddc17590aadfd30fc1f1d139201906200240c565b506040518060600160405280602e815260200162004cba602e9139605460009081526020908152815162001ee1927f252b89bf90b319923f6559e774e32f611a27a81d0f532f5b807532a98a9da5df9201906200240c565b506040518060600160405280602e815260200162004da0602e9139605560009081526020908152815162001f39927f26fa9be578b8b817d2c38c2bf2937eb5c8c883596c0de630888dc7b5a78fc7419201906200240c565b506040518060600160405280602e815260200162004898602e9139605660009081526020908152815162001f91927f2fb528e6d471a01e3882e5387da3916bb9170371273d83f39d41ca7d6cf645dd9201906200240c565b506040518060600160405280602e815260200162004f3e602e9139605760009081526020908152815162001fe9927f38a644c74784d8c3ea245c3a1a2e10a4b1f65348c8ba4914eba002c10f9841cd9201906200240c565b506040518060600160405280602e815260200162004642602e9139605860009081526020908152815162002041927f0630a341adb3ad67be2247788989a78092dfe1bdc3c736fed4044992d522638e9201906200240c565b506040518060600160405280602e815260200162004bd4602e9139605960009081526020908152815162002099927faa9c48affdb922d59f20f1d42ac3e33fda279577a858e81575cb3e6bb2721cd39201906200240c565b506040518060600160405280602e8152602001620045b8602e9139605a600090815260209081528151620020f1927f72c829b6ff1176aa52fa1b14a601e30df23c347f3efcd72b6af910346dd8917d9201906200240c565b506040518060600160405280602e815260200162004b4a602e9139605b60009081526020908152815162002149927f850851725d682f1253eaf508bb01a9accd1b7e85e9304c89ea15b305a8e841ad9201906200240c565b506040518060600160405280602e8152602001620049ac602e9139605c600090815260209081528151620021a1927fd535fbefa7125c4a47f58bb6d6723c954e19556f2eca67da8b68ae7ef937dd779201906200240c565b506040518060600160405280602e815260200162004dfc602e9139605d600090815260209081528151620021f9927f81562e4f3949fbdc22d278b4fedbaa5dce7e2385b03e958e7f52fd6ed7b68fff9201906200240c565b506040518060600160405280602e8152602001620050ae602e9139605e60009081526020908152815162002251927fff91e8593b941cc006a9af6dd29cf00c1d93d745cd30e13d28db6ad34229c7279201906200240c565b506040518060600160405280602e81526020016200458a602e9139605f600090815260209081528151620022a9927fd97cbaa9a69d46aa3f57910da3a2981ddacb51cc9a918902a0ba29b879ca92139201906200240c565b506040518060600160405280602e815260200162004642602e9139606060009081526020908152815162002301927f493f012b4fee264d1b91d564c0d88212eeb0a4de487e2b0da91b21ef0a242cef9201906200240c565b506040518060600160405280602e815260200162004a92602e9139606160009081526020908152815162002359927fd376c0dc9e6a0a44867c5e1fefd6ecef82bbd522b0a13a792fef5100445ee3239201906200240c565b506040518060600160405280602e815260200162004c8c602e91396062600090815260209081528151620023b1927f82dba07ff31d1c675816f9969faac321de6f27d903da0f4c49327d1f3945e7fc9201906200240c565b506040518060600160405280602e815260200162004b78602e9139606360009081526020908152815162002409927f01c4951e729acbc05299798279cd10e5be143681a3d883a027edec470c12b1a99201906200240c565b50565b8280546200241a906200250e565b90600052602060002090601f0160209004810192826200243e576000855562002489565b82601f106200245957805160ff191683800117855562002489565b8280016001018555821562002489579182015b82811115620024895782518255916020019190600101906200246c565b50620024979291506200249b565b5090565b5b808211156200249757600081556001016200249c565b60008060008060808587031215620024c957600080fd5b84516001600160a01b0381168114620024e157600080fd5b60208601519094508015158114620024f857600080fd5b6040860151606090960151949790965092505050565b600181811c908216806200252357607f821691505b602082108114156200254557634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156200256e57634e487b7160e01b600052601160045260246000fd5b5060010190565b611b5980620025856000396000f3fe60806040526004361061012e5760003560e01c80636e223710116100ab578063b88d4fde1161006f578063b88d4fde14610377578063bf005d1114610397578063c87b56dd146103b7578063de0e9a3e146103d7578063e985e9c5146103f7578063ea598cb01461044057600080fd5b80636e223710146102b857806370a082311461030257806382ab890a1461032257806395d89b4114610342578063a22cb4651461035757600080fd5b806318160ddd116100f257806318160ddd1461022457806323b872dd1461024357806342842e0e1461026357806353d78693146102835780636352211e1461029857600080fd5b806301ffc9a71461013d57806306fdde0314610172578063081812fc14610194578063095ea7b3146101cc57806314abc351146101ee57600080fd5b3661013857600080fd5b600080fd5b34801561014957600080fd5b5061015d610158366004611872565b610460565b60405190151581526020015b60405180910390f35b34801561017e57600080fd5b506101876104b2565b604051610169919061195d565b3480156101a057600080fd5b506101b46101af3660046118ac565b610544565b6040516001600160a01b039091168152602001610169565b3480156101d857600080fd5b506101ec6101e7366004611846565b6105de565b005b3480156101fa57600080fd5b506101b46102093660046118ac565b6000908152600860205260409020546001600160a01b031690565b34801561023057600080fd5b506003545b604051908152602001610169565b34801561024f57600080fd5b506101ec61025e3660046116af565b6106f4565b34801561026f57600080fd5b506101ec61027e3660046116af565b610726565b34801561028f57600080fd5b506101ec610741565b3480156102a457600080fd5b506101b46102b33660046118ac565b61076b565b3480156102c457600080fd5b506102d86102d33660046118ac565b6107e2565b604080516001600160a01b0390951685529215156020850152918301526060820152608001610169565b34801561030e57600080fd5b5061023561031d366004611652565b610876565b34801561032e57600080fd5b506101ec61033d3660046118ac565b6108fd565b34801561034e57600080fd5b50610187610972565b34801561036357600080fd5b506101ec6103723660046117d0565b610981565b34801561038357600080fd5b506101ec6103923660046116f0565b610a46565b3480156103a357600080fd5b5061015d6103b23660046118ac565b610a7e565b3480156103c357600080fd5b506101876103d23660046118ac565b610adc565b3480156103e357600080fd5b506101ec6103f23660046118ac565b610bc2565b34801561040357600080fd5b5061015d610412366004611676565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561044c57600080fd5b506101ec61045b3660046118ac565b610d05565b60006001600160e01b031982166380ac58cd60e01b148061049157506001600160e01b03198216635b5e139f60e01b145b806104ac57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546104c190611a6e565b80601f01602080910402602001604051908101604052809291908181526020018280546104ed90611a6e565b801561053a5780601f1061050f5761010080835404028352916020019161053a565b820191906000526020600020905b81548152906001019060200180831161051d57829003601f168201915b5050505050905090565b6000818152600460205260408120546001600160a01b03166105c25760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006105e98261076b565b9050806001600160a01b0316836001600160a01b031614156106575760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016105b9565b336001600160a01b038216148061067357506106738133610412565b6106e55760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016105b9565b6106ef8383610f08565b505050565b6106ff335b82610f76565b61071b5760405162461bcd60e51b81526004016105b9906119c2565b6106ef838383611069565b6106ef83838360405180602001604052806000815250610a46565b60005b606481101561076857610756816108fd565b8061076081611aa3565b915050610744565b50565b6000818152600460205260408120546001600160a01b0316806104ac5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016105b9565b6009546040516333b67f6360e11b8152600481018390526000918291829182916001600160a01b039091169063676cfec69060240160806040518083038186803b15801561082f57600080fd5b505afa158015610843573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061086791906117fe565b93509350935093509193509193565b60006001600160a01b0382166108e15760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016105b9565b506001600160a01b031660009081526005602052604090205490565b6000610908826107e2565b5050506000838152600860205260409020549091506001600160a01b0380831691161480159061094157506001600160a01b0381163014155b1561096e57600082815260086020526040902080546001600160a01b0319166001600160a01b0383161790555b5050565b6060600280546104c190611a6e565b6001600160a01b0382163314156109da5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016105b9565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610a503383610f76565b610a6c5760405162461bcd60e51b81526004016105b9906119c2565b610a7884848484611209565b50505050565b600080610a8a836107e2565b5050506000848152600860205260409020549091506001600160a01b03808316911614801590610ac357506001600160a01b0381163014155b15610ad15760019150610ad6565b600091505b50919050565b606060648210610b445760405162461bcd60e51b815260206004820152602d60248201527f456e746572206120746f6b656e49642066726f6d203020746f2039392e204f6e60448201526c363c90189818103937b1b5b99760991b60648201526084016105b9565b6000610b6a604080518082019091526007815266697066733a2f2f60c81b602082015290565b90506000610b778461123c565b90506000825111610b975760405180602001604052806000815250610bba565b8181604051602001610baa9291906118f1565b6040516020818303038152906040525b949350505050565b6000818152600460205260409020546001600160a01b0316610c265760405162461bcd60e51b815260206004820152601f60248201527f5468697320726f636b20686173206e6f74206265656e20777261707065642e0060448201526064016105b9565b610c2f336106f9565b610c745760405162461bcd60e51b81526020600482015260166024820152752737ba1037bbb732b91037b91030b8383937bb32b21760511b60448201526064016105b9565b6000818152600860205260409081902080546001600160a01b031916339081179091556009549151630d9f100160e11b81526004810184905260248101919091526001600160a01b0390911690631b3e200290604401600060405180830381600087803b158015610ce457600080fd5b505af1158015610cf8573d6000803e3d6000fd5b50505050610768816112de565b600080610d11836107e2565b509193509150506001600160a01b0382163014610e175760405162461bcd60e51b81526020600482015260a560248201527f5772617070657220636f6e747261637420646f65736e2774206f776e20726f6360448201527f6b20696e204f4720636f6e74726163742e204265666f7265207772617070696e60648201527f67206120726f636b2c20796f75206669727374206861766520746f2073656e6460848201527f20697420746f20746865207772617070657220636f6e7472616374206279206360a48201527f616c6c696e672067696674526f636b282920696e20746865204f4720636f6e7460c4820152643930b1ba1760d91b60e4820152610104016105b9565b6000838152600860205260409020546001600160a01b03163314610e955760405162461bcd60e51b815260206004820152602f60248201527f596f7520617265206e6f74207265636f7264656420617320746865206f776e6560448201526e391037b3103a3434b9903937b1b59760891b60648201526084016105b9565b610e9f3384611394565b80156106ef5760095460405163153d80b960e11b8152600481018590526001600160a01b0390911690632a7b017290602401600060405180830381600087803b158015610eeb57600080fd5b505af1158015610eff573d6000803e3d6000fd5b50505050505050565b600081815260066020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610f3d8261076b565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600460205260408120546001600160a01b0316610fef5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105b9565b6000610ffa8361076b565b9050806001600160a01b0316846001600160a01b031614806110355750836001600160a01b031661102a84610544565b6001600160a01b0316145b80610bba57506001600160a01b0380821660009081526007602090815260408083209388168352929052205460ff16610bba565b826001600160a01b031661107c8261076b565b6001600160a01b0316146110e45760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016105b9565b6001600160a01b0382166111465760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016105b9565b611151600082610f08565b6001600160a01b038316600090815260056020526040812080546001929061117a908490611a2b565b90915550506001600160a01b03821660009081526005602052604081208054600192906111a8908490611a13565b909155505060008181526004602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b611214848484611069565b611220848484846113ae565b610a785760405162461bcd60e51b81526004016105b990611970565b600081815260208190526040902080546060919061125990611a6e565b80601f016020809104026020016040519081016040528092919081815260200182805461128590611a6e565b80156112d25780601f106112a7576101008083540402835291602001916112d2565b820191906000526020600020905b8154815290600101906020018083116112b557829003601f168201915b50505050509050919050565b60006112e98261076b565b90506112f6600083610f08565b6001600160a01b038116600090815260056020526040812080546001929061131f908490611a2b565b9091555050600082815260046020526040812080546001600160a01b03191690556003805460019290611353908490611a2b565b909155505060405182906000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b61096e8282604051806020016040528060008152506114bb565b60006001600160a01b0384163b156114b057604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906113f2903390899088908890600401611920565b602060405180830381600087803b15801561140c57600080fd5b505af192505050801561143c575060408051601f3d908101601f191682019092526114399181019061188f565b60015b611496573d80801561146a576040519150601f19603f3d011682016040523d82523d6000602084013e61146f565b606091505b50805161148e5760405162461bcd60e51b81526004016105b990611970565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610bba565b506001949350505050565b6114c583836114ee565b6114d260008484846113ae565b6106ef5760405162461bcd60e51b81526004016105b990611970565b6001600160a01b0382166115445760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016105b9565b6000818152600460205260409020546001600160a01b0316156115a95760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105b9565b6001600160a01b03821660009081526005602052604081208054600192906115d2908490611a13565b9091555050600081815260046020526040812080546001600160a01b0319166001600160a01b0385161790556003805460019290611611908490611a13565b909155505060405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006020828403121561166457600080fd5b813561166f81611aea565b9392505050565b6000806040838503121561168957600080fd5b823561169481611aea565b915060208301356116a481611aea565b809150509250929050565b6000806000606084860312156116c457600080fd5b83356116cf81611aea565b925060208401356116df81611aea565b929592945050506040919091013590565b6000806000806080858703121561170657600080fd5b843561171181611aea565b9350602085013561172181611aea565b925060408501359150606085013567ffffffffffffffff8082111561174557600080fd5b818701915087601f83011261175957600080fd5b81358181111561176b5761176b611ad4565b604051601f8201601f19908116603f0116810190838211818310171561179357611793611ad4565b816040528281528a60208487010111156117ac57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156117e357600080fd5b82356117ee81611aea565b915060208301356116a481611aff565b6000806000806080858703121561181457600080fd5b845161181f81611aea565b602086015190945061183081611aff565b6040860151606090960151949790965092505050565b6000806040838503121561185957600080fd5b823561186481611aea565b946020939093013593505050565b60006020828403121561188457600080fd5b813561166f81611b0d565b6000602082840312156118a157600080fd5b815161166f81611b0d565b6000602082840312156118be57600080fd5b5035919050565b600081518084526118dd816020860160208601611a42565b601f01601f19169290920160200192915050565b60008351611903818460208801611a42565b835190830190611917818360208801611a42565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611953908301846118c5565b9695505050505050565b60208152600061166f60208301846118c5565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611a2657611a26611abe565b500190565b600082821015611a3d57611a3d611abe565b500390565b60005b83811015611a5d578181015183820152602001611a45565b83811115610a785750506000910152565b600181811c90821680611a8257607f821691505b60208210811415610ad657634e487b7160e01b600052602260045260246000fd5b6000600019821415611ab757611ab7611abe565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461076857600080fd5b801515811461076857600080fd5b6001600160e01b03198116811461076857600080fdfea2646970667358221220cfeb0c1aa848991995d9c5a081c10aaa10dd17168c0f3cd96c093e03969d6f7064736f6c63430008070033516d61436a373741654e563746335945384b544c6b36696a584a6b714c525a72716f6f6d4163706b73315a704331516d56564b6a47436831786a5443396471335a554a6e5a4c654a4a6f5172524a686254324a666235324e6e734137516d5453756834677a6e57647733535462425647315665316a796e48484c70664663646746774a69346e716b7444516d50623132474e337063764c37384e565136464b3941453235324368424b3867514d437a556a657a3770724337516d5a4234715144346432754269535a6f555157704653526636334651766b4d61536a467a5036436e4e67544831516d5438657a51346e75455357594d7a63666262366b63664553444479654b324342597031756152516f39784c64516d5270743773474b5253786364706e6b644c456472515a79754d7959676f71657a366d59756d5464416b6d626f516d5965573943327a4c786f4233696d57584c78584b586152716f70577643624e385768616b415061754533544b516d583752534b764b44424b424c4a317a59336f6841777073436b7870396277656a6d4b546445384c7838336551516d5a72317a376343545852715957765053617463475a774a715374386a3668734d784c554a42514d626e566e72516d51354e694a755a4e6f79763678566d37775a4570764e616e714c67616a6b6e7a31733245646e456835594474516d54484c727550366948726948717177366f505836547379346869567a54374d517355706f617562417173696a516d665752686a4e7179587971456e617252527135776861426d546d39734b4a5537547857504433394e58345450516d655968395a6b5265365a7664466b5261546a716b644255463646774374454a67416e6968586a346a33763133516d506d467242386166595a6f7132454c337451373146696175786b4b6b6535454c4474784e4541586242653355516d5553584a5279685452787a365441364d73654771424552585050696433783850566b6b6839394e6f46763953516d63514a725779743154556a73626a5a536a634434567a386e4b7379345673654a7342384e374576685355504a516d57726b546e47554c7663396d37685575623573733648316f546669786669786a64676b6272627678704b4e72516d664344655176514a3243774b4135564e6965364c43354e79363356644c3775793755615a776d6f4a35436d75516d57316b766158784445525a6342597963315a747a5656546e6f31694872357357474c4850457636566e524d32516d514463654d797259667441524c42723451414e66344c31576934446e43417a72636b364a6e4a35634b4c7332516d51525a36656d725a79657050475346664758554169484a5956524a614b553833517972374b6358664e736266516d5a5645344b796f4656694d41706b676a727146446e68313548456d58726d5863543966426e4e77687242796f516d57675539334b724b7a77374a55427a6774357a6d4e456677477277787564366e5335645a5442506e54634c5a516d524a4a4c50315a76504c6b79656e44376a783765433739386e6465465179763232727343615356694c4e366b516d617569544c4344365a4242715a6e4731586e6b4574677678667853414e3359614b744758395934786d4e764e516d584d66486e58374d674c63413742626a3442706177653462354550673742314d634c6166345848616d71317a516d5452437573333466746e676464474c707833653367457a57767a6f46334e48724b32726338394c4e57547963516d507a3758375977533248447154744561344c716155514633676545766d67665164334c7664614577367a4648516d5057696877757346395a7774506958416638374d57443963413967454e6a6a564148504d744c764442433132516d53355062346937324a665373697033505043454c6639427533796763653944326b4753324245783950504779516d5a50536a3738717a4279743655434663616d5574464a563532796854357a426e574836336472684644667466516d594b586641364c7356613238586e32664c7a343335536d7a6d344e3646654a316b336f5668726d766e414a46516d536450756642386e466a4e6e65784a6d6b6d4e766134487274774e484c4452354c6d7a6b7657413537353564516d664758676f70676b416945526d747432696e4d75777661616a4b763875556f7732576a56754a64386e384367516d53714538416a71736948783562615a324d3470366d6a4335566133354636357944626b526562466148475a75516d59656255726e63534b67766f47586d576f34577959716e64374232734537666765546a38317338684b616e6e516d5a695545474e4b5a77515a71724b6e4456363938686a7854324534764c75713136507333706f745644416f38516d634b3259574d33634e374d626344634c3157613375764868646b6559336755516a414766714470765a537552516d536541553753796e6255504e504e5765753877547956356e4a474c53466b315664657175517862764c676767516d58395a6f44596f357574336963466674315575676e6d6b7950625a6875595970673879504d4a7a5946667455516d54465332746f7a506348364241707a77685257316243566d734c50464656634d524b48666154414448383754516d51526b34546f7a65427450576e484d747133416d33364c4d66333350734a51797a4e5054614257484b4e4653516d5a4754737265637151794e577a68325353566873714a734748775654327356454246634e4d6e775637336466516d55744651324e6141317a6f42486f415377676146736e32444544325a6a53523444337776743359316b546347516d51726d346d773474597a734e4d48643277766879714a665a347531466f7359547232466d633976314b557a74516d664c613372344a35447a5a38354b7a51526258327378444c7154637869545236676b6a703543687a334b5372516d546a554537344c56463565554568536d68347956534c55777a486477443152776845364d656f75587a6b736e516d584233346a484150623751665256566e587170796e57614c73474d5431753561345a794a5777505246453765516d654e717178644d4e354175746a5a5765714c51464a7a664d365678767969396d4248484b7945577635723331516d563538354532326b39674a6a6342655a4e745964446d6f693679667233364d3979564c64695150334c784144516d5a64446a6373787a533776516b516969526d746644433553354341764852454c794d73414631635072463351516d663678627a61513150365374626f4b474170536b75446f58654235635a3631776f744c54354c7a3155523947516d53457770673543326466677879774465436d7455566155644b694c464b58514b3864394b436b753353463259516d514a624b486a76685a7462696146574a694a3144784751366779785a78547a4b703656785239357354585559516d627173506237536455626d3154647667576568314879745436696f69744a396d6b7a4b5a52735a7431694d55516d52704347625835654662744465686e6861746474703761316b7a6d676e6b415a534a75627344354878374868516d55554453543354326f4848726637536d3441625678736834364d743432587956365331414d566746574d3838516d61745754636534766f6a696e7363357674375537776f6571595138374c686e314e41424878314d596d6e4e5a516d5834574543335934316d465634734e4e695636517954716b52686d75314e6e46385a635142485a6946564544516d51557844776652587945727238705563664b61786a434a77556a3753694539444c72724a48714c3977437861516d54354a333779353851537144414a68746654334e4b66683264786d6467447765427263704c6965646b504548516d637a467846435a45574173694643506473646f764b574d717268416b317a66584d36485336367a467a413450516d58327467454b434267525948506e55416d3841644e467a444a47686a525a345a6b76515a4e6d674b55653270516d526274374c4679414175434d6e76397341684b52745572554d537253515975465074504e687053736a676d71516d563442767a3755524a6133527a66703573426d4d51743446466d5745364473757667366e6557705273454265516d59754c377433356436555a677165466858737565466d3756354b51456579754c634556676d72313169314b62516d56753955615136487a4d52534e68346b483343686e317972377a58456733797266446141774a4b6676796e41516d50717051425757546238445036626d5857675a7358555568364c716a3253684d58484332727564677a7a4451516d5267594133706f414d6366446131717757395a625570793571534b456b364459544d777476537475534d3479516d6343614d6a747374556872763555746d35324e51696b4c685434464c75394457734136765754637753616b70516d5038436b72623942764457584c586f5a4b6f524a76665268733555346653384e61546245687676474b7a6856516d5936325074313932336d504b614a6b534c79596f5357434759624c69797857516f5a59614d48504538464e46516d53387133366d61696e53516e65476f6e583966467257423135423741394843386f33766b776b435372715541516d56625a486854686344724d333750337967653950797a54567065754435455a427a777a714a756b7557394358516d5136775a485243614648616668797147414b333633386269416b36747a35364443414b32424c514b50546374516d594b6f58733968484a7932615a6e33644633354246686d4e7a7239667a315968666367515273343653796e4b516d5a3565526f5135715654416d75343157516b6a42656d6b347953366e53584a6a524441654738516d5a576a4a516d5272757746683271475034765a59735952674467536355427a425357536636315873724c42693259374c5a69516d66457069366276636148596744637647454264716176677176637467384e7356785936626b66413464384545516d5839414e5436485a4758656774397035665752667a7636427a76653261674e4741374c74447a6e67544a4167516d6438654e64754570724469314a58384e5577445844424475586347506d424d3366613178483579754d663864516d5047644b59315737587a436173527951366550797a4d3276576a776248717655476e5a593542685a75733543516d65785568366a7732546852723754386334446b416855395159527a6448384171415148786946727666395769516d6170676a434e624a6d586d3162524e46695168356f7a684d544542776d6870756b704842697157464d644461516d516f6746434231345767504a796f50706d505363524c4e796e527047414b394770624b323555683975377066516d61416276474442323259637737586e31686170477559444553767339316a575164714c474a44695a544c7679516d514e79385938334b6f6e4b664235396b7a68767239655134446a4337376d4a456a755055704e524b54694b4b516d5747336d4744514c4675566d616a71736954326e43766d456555327167434343517947336634453533737669516d5634435068716d6d7973734371784c5536663669346a78686178626b7a6f696f6a4e6b50675a663739487261

Deployed Bytecode

0x60806040526004361061012e5760003560e01c80636e223710116100ab578063b88d4fde1161006f578063b88d4fde14610377578063bf005d1114610397578063c87b56dd146103b7578063de0e9a3e146103d7578063e985e9c5146103f7578063ea598cb01461044057600080fd5b80636e223710146102b857806370a082311461030257806382ab890a1461032257806395d89b4114610342578063a22cb4651461035757600080fd5b806318160ddd116100f257806318160ddd1461022457806323b872dd1461024357806342842e0e1461026357806353d78693146102835780636352211e1461029857600080fd5b806301ffc9a71461013d57806306fdde0314610172578063081812fc14610194578063095ea7b3146101cc57806314abc351146101ee57600080fd5b3661013857600080fd5b600080fd5b34801561014957600080fd5b5061015d610158366004611872565b610460565b60405190151581526020015b60405180910390f35b34801561017e57600080fd5b506101876104b2565b604051610169919061195d565b3480156101a057600080fd5b506101b46101af3660046118ac565b610544565b6040516001600160a01b039091168152602001610169565b3480156101d857600080fd5b506101ec6101e7366004611846565b6105de565b005b3480156101fa57600080fd5b506101b46102093660046118ac565b6000908152600860205260409020546001600160a01b031690565b34801561023057600080fd5b506003545b604051908152602001610169565b34801561024f57600080fd5b506101ec61025e3660046116af565b6106f4565b34801561026f57600080fd5b506101ec61027e3660046116af565b610726565b34801561028f57600080fd5b506101ec610741565b3480156102a457600080fd5b506101b46102b33660046118ac565b61076b565b3480156102c457600080fd5b506102d86102d33660046118ac565b6107e2565b604080516001600160a01b0390951685529215156020850152918301526060820152608001610169565b34801561030e57600080fd5b5061023561031d366004611652565b610876565b34801561032e57600080fd5b506101ec61033d3660046118ac565b6108fd565b34801561034e57600080fd5b50610187610972565b34801561036357600080fd5b506101ec6103723660046117d0565b610981565b34801561038357600080fd5b506101ec6103923660046116f0565b610a46565b3480156103a357600080fd5b5061015d6103b23660046118ac565b610a7e565b3480156103c357600080fd5b506101876103d23660046118ac565b610adc565b3480156103e357600080fd5b506101ec6103f23660046118ac565b610bc2565b34801561040357600080fd5b5061015d610412366004611676565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561044c57600080fd5b506101ec61045b3660046118ac565b610d05565b60006001600160e01b031982166380ac58cd60e01b148061049157506001600160e01b03198216635b5e139f60e01b145b806104ac57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546104c190611a6e565b80601f01602080910402602001604051908101604052809291908181526020018280546104ed90611a6e565b801561053a5780601f1061050f5761010080835404028352916020019161053a565b820191906000526020600020905b81548152906001019060200180831161051d57829003601f168201915b5050505050905090565b6000818152600460205260408120546001600160a01b03166105c25760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006105e98261076b565b9050806001600160a01b0316836001600160a01b031614156106575760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016105b9565b336001600160a01b038216148061067357506106738133610412565b6106e55760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016105b9565b6106ef8383610f08565b505050565b6106ff335b82610f76565b61071b5760405162461bcd60e51b81526004016105b9906119c2565b6106ef838383611069565b6106ef83838360405180602001604052806000815250610a46565b60005b606481101561076857610756816108fd565b8061076081611aa3565b915050610744565b50565b6000818152600460205260408120546001600160a01b0316806104ac5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016105b9565b6009546040516333b67f6360e11b8152600481018390526000918291829182916001600160a01b039091169063676cfec69060240160806040518083038186803b15801561082f57600080fd5b505afa158015610843573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061086791906117fe565b93509350935093509193509193565b60006001600160a01b0382166108e15760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016105b9565b506001600160a01b031660009081526005602052604090205490565b6000610908826107e2565b5050506000838152600860205260409020549091506001600160a01b0380831691161480159061094157506001600160a01b0381163014155b1561096e57600082815260086020526040902080546001600160a01b0319166001600160a01b0383161790555b5050565b6060600280546104c190611a6e565b6001600160a01b0382163314156109da5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016105b9565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610a503383610f76565b610a6c5760405162461bcd60e51b81526004016105b9906119c2565b610a7884848484611209565b50505050565b600080610a8a836107e2565b5050506000848152600860205260409020549091506001600160a01b03808316911614801590610ac357506001600160a01b0381163014155b15610ad15760019150610ad6565b600091505b50919050565b606060648210610b445760405162461bcd60e51b815260206004820152602d60248201527f456e746572206120746f6b656e49642066726f6d203020746f2039392e204f6e60448201526c363c90189818103937b1b5b99760991b60648201526084016105b9565b6000610b6a604080518082019091526007815266697066733a2f2f60c81b602082015290565b90506000610b778461123c565b90506000825111610b975760405180602001604052806000815250610bba565b8181604051602001610baa9291906118f1565b6040516020818303038152906040525b949350505050565b6000818152600460205260409020546001600160a01b0316610c265760405162461bcd60e51b815260206004820152601f60248201527f5468697320726f636b20686173206e6f74206265656e20777261707065642e0060448201526064016105b9565b610c2f336106f9565b610c745760405162461bcd60e51b81526020600482015260166024820152752737ba1037bbb732b91037b91030b8383937bb32b21760511b60448201526064016105b9565b6000818152600860205260409081902080546001600160a01b031916339081179091556009549151630d9f100160e11b81526004810184905260248101919091526001600160a01b0390911690631b3e200290604401600060405180830381600087803b158015610ce457600080fd5b505af1158015610cf8573d6000803e3d6000fd5b50505050610768816112de565b600080610d11836107e2565b509193509150506001600160a01b0382163014610e175760405162461bcd60e51b81526020600482015260a560248201527f5772617070657220636f6e747261637420646f65736e2774206f776e20726f6360448201527f6b20696e204f4720636f6e74726163742e204265666f7265207772617070696e60648201527f67206120726f636b2c20796f75206669727374206861766520746f2073656e6460848201527f20697420746f20746865207772617070657220636f6e7472616374206279206360a48201527f616c6c696e672067696674526f636b282920696e20746865204f4720636f6e7460c4820152643930b1ba1760d91b60e4820152610104016105b9565b6000838152600860205260409020546001600160a01b03163314610e955760405162461bcd60e51b815260206004820152602f60248201527f596f7520617265206e6f74207265636f7264656420617320746865206f776e6560448201526e391037b3103a3434b9903937b1b59760891b60648201526084016105b9565b610e9f3384611394565b80156106ef5760095460405163153d80b960e11b8152600481018590526001600160a01b0390911690632a7b017290602401600060405180830381600087803b158015610eeb57600080fd5b505af1158015610eff573d6000803e3d6000fd5b50505050505050565b600081815260066020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610f3d8261076b565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600460205260408120546001600160a01b0316610fef5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105b9565b6000610ffa8361076b565b9050806001600160a01b0316846001600160a01b031614806110355750836001600160a01b031661102a84610544565b6001600160a01b0316145b80610bba57506001600160a01b0380821660009081526007602090815260408083209388168352929052205460ff16610bba565b826001600160a01b031661107c8261076b565b6001600160a01b0316146110e45760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016105b9565b6001600160a01b0382166111465760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016105b9565b611151600082610f08565b6001600160a01b038316600090815260056020526040812080546001929061117a908490611a2b565b90915550506001600160a01b03821660009081526005602052604081208054600192906111a8908490611a13565b909155505060008181526004602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b611214848484611069565b611220848484846113ae565b610a785760405162461bcd60e51b81526004016105b990611970565b600081815260208190526040902080546060919061125990611a6e565b80601f016020809104026020016040519081016040528092919081815260200182805461128590611a6e565b80156112d25780601f106112a7576101008083540402835291602001916112d2565b820191906000526020600020905b8154815290600101906020018083116112b557829003601f168201915b50505050509050919050565b60006112e98261076b565b90506112f6600083610f08565b6001600160a01b038116600090815260056020526040812080546001929061131f908490611a2b565b9091555050600082815260046020526040812080546001600160a01b03191690556003805460019290611353908490611a2b565b909155505060405182906000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b61096e8282604051806020016040528060008152506114bb565b60006001600160a01b0384163b156114b057604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906113f2903390899088908890600401611920565b602060405180830381600087803b15801561140c57600080fd5b505af192505050801561143c575060408051601f3d908101601f191682019092526114399181019061188f565b60015b611496573d80801561146a576040519150601f19603f3d011682016040523d82523d6000602084013e61146f565b606091505b50805161148e5760405162461bcd60e51b81526004016105b990611970565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610bba565b506001949350505050565b6114c583836114ee565b6114d260008484846113ae565b6106ef5760405162461bcd60e51b81526004016105b990611970565b6001600160a01b0382166115445760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016105b9565b6000818152600460205260409020546001600160a01b0316156115a95760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105b9565b6001600160a01b03821660009081526005602052604081208054600192906115d2908490611a13565b9091555050600081815260046020526040812080546001600160a01b0319166001600160a01b0385161790556003805460019290611611908490611a13565b909155505060405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006020828403121561166457600080fd5b813561166f81611aea565b9392505050565b6000806040838503121561168957600080fd5b823561169481611aea565b915060208301356116a481611aea565b809150509250929050565b6000806000606084860312156116c457600080fd5b83356116cf81611aea565b925060208401356116df81611aea565b929592945050506040919091013590565b6000806000806080858703121561170657600080fd5b843561171181611aea565b9350602085013561172181611aea565b925060408501359150606085013567ffffffffffffffff8082111561174557600080fd5b818701915087601f83011261175957600080fd5b81358181111561176b5761176b611ad4565b604051601f8201601f19908116603f0116810190838211818310171561179357611793611ad4565b816040528281528a60208487010111156117ac57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156117e357600080fd5b82356117ee81611aea565b915060208301356116a481611aff565b6000806000806080858703121561181457600080fd5b845161181f81611aea565b602086015190945061183081611aff565b6040860151606090960151949790965092505050565b6000806040838503121561185957600080fd5b823561186481611aea565b946020939093013593505050565b60006020828403121561188457600080fd5b813561166f81611b0d565b6000602082840312156118a157600080fd5b815161166f81611b0d565b6000602082840312156118be57600080fd5b5035919050565b600081518084526118dd816020860160208601611a42565b601f01601f19169290920160200192915050565b60008351611903818460208801611a42565b835190830190611917818360208801611a42565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611953908301846118c5565b9695505050505050565b60208152600061166f60208301846118c5565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611a2657611a26611abe565b500190565b600082821015611a3d57611a3d611abe565b500390565b60005b83811015611a5d578181015183820152602001611a45565b83811115610a785750506000910152565b600181811c90821680611a8257607f821691505b60208210811415610ad657634e487b7160e01b600052602260045260246000fd5b6000600019821415611ab757611ab7611abe565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461076857600080fd5b801515811461076857600080fd5b6001600160e01b03198116811461076857600080fdfea2646970667358221220cfeb0c1aa848991995d9c5a081c10aaa10dd17168c0f3cd96c093e03969d6f7064736f6c63430008070033

Deployed Bytecode Sourcemap

40187:3040:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42837:8;;;40187:3040;;;;27183:305;;;;;;;;;;-1:-1:-1;27183:305:0;;;;;:::i;:::-;;:::i;:::-;;;6329:14:1;;6322:22;6304:41;;6292:2;6277:18;27183:305:0;;;;;;;;28128:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29951:221::-;;;;;;;;;;-1:-1:-1;29951:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5195:32:1;;;5177:51;;5165:2;5150:18;29951:221:0;5031:203:1;29474:411:0;;;;;;;;;;-1:-1:-1;29474:411:0;;;;;:::i;:::-;;:::i;:::-;;40289:117;;;;;;;;;;-1:-1:-1;40289:117:0;;;;;:::i;:::-;40350:7;40377:21;;;:12;:21;;;;;;-1:-1:-1;;;;;40377:21:0;;40289:117;19338:88;;;;;;;;;;-1:-1:-1;19406:12:0;;19338:88;;;14160:25:1;;;14148:2;14133:18;19338:88:0;14014:177:1;30841:339:0;;;;;;;;;;-1:-1:-1;30841:339:0;;;;;:::i;:::-;;:::i;31251:185::-;;;;;;;;;;-1:-1:-1;31251:185:0;;;;;:::i;:::-;;:::i;41773:137::-;;;;;;;;;;;;;:::i;27822:239::-;;;;;;;;;;-1:-1:-1;27822:239:0;;;;;:::i;:::-;;:::i;40933:134::-;;;;;;;;;;-1:-1:-1;40933:134:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;5975:32:1;;;5957:51;;6051:14;;6044:22;6039:2;6024:18;;6017:50;6083:18;;;6076:34;6141:2;6126:18;;6119:34;5944:3;5929:19;40933:134:0;5732:427:1;27552:208:0;;;;;;;;;;-1:-1:-1;27552:208:0;;;;;:::i;:::-;;:::i;41485:276::-;;;;;;;;;;-1:-1:-1;41485:276:0;;;;;:::i;:::-;;:::i;28297:104::-;;;;;;;;;;;;;:::i;30244:295::-;;;;;;;;;;-1:-1:-1;30244:295:0;;;;;:::i;:::-;;:::i;31507:328::-;;;;;;;;;;-1:-1:-1;31507:328:0;;;;;:::i;:::-;;:::i;41079:394::-;;;;;;;;;;-1:-1:-1;41079:394:0;;;;;:::i;:::-;;:::i;28472:463::-;;;;;;;;;;-1:-1:-1;28472:463:0;;;;;:::i;:::-;;:::i;42865:353::-;;;;;;;;;;-1:-1:-1;42865:353:0;;;;;:::i;:::-;;:::i;30610:164::-;;;;;;;;;;-1:-1:-1;30610:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;30731:25:0;;;30707:4;30731:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;30610:164;41922:611;;;;;;;;;;-1:-1:-1;41922:611:0;;;;;:::i;:::-;;:::i;27183:305::-;27285:4;-1:-1:-1;;;;;;27322:40:0;;-1:-1:-1;;;27322:40:0;;:105;;-1:-1:-1;;;;;;;27379:48:0;;-1:-1:-1;;;27379:48:0;27322:105;:158;;;-1:-1:-1;;;;;;;;;;18559:40:0;;;27444:36;27302:178;27183:305;-1:-1:-1;;27183:305:0:o;28128:100::-;28182:13;28215:5;28208:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28128:100;:::o;29951:221::-;30027:7;33434:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33434:16:0;30047:73;;;;-1:-1:-1;;;30047:73:0;;11048:2:1;30047:73:0;;;11030:21:1;11087:2;11067:18;;;11060:30;11126:34;11106:18;;;11099:62;-1:-1:-1;;;11177:18:1;;;11170:42;11229:19;;30047:73:0;;;;;;;;;-1:-1:-1;30140:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;30140:24:0;;29951:221::o;29474:411::-;29555:13;29571:23;29586:7;29571:14;:23::i;:::-;29555:39;;29619:5;-1:-1:-1;;;;;29613:11:0;:2;-1:-1:-1;;;;;29613:11:0;;;29605:57;;;;-1:-1:-1;;;29605:57:0;;11871:2:1;29605:57:0;;;11853:21:1;11910:2;11890:18;;;11883:30;11949:34;11929:18;;;11922:62;-1:-1:-1;;;12000:18:1;;;11993:31;12041:19;;29605:57:0;11669:397:1;29605:57:0;15633:10;-1:-1:-1;;;;;29697:21:0;;;;:62;;-1:-1:-1;29722:37:0;29739:5;15633:10;30610:164;:::i;29722:37::-;29675:168;;;;-1:-1:-1;;;29675:168:0;;9441:2:1;29675:168:0;;;9423:21:1;9480:2;9460:18;;;9453:30;9519:34;9499:18;;;9492:62;9590:26;9570:18;;;9563:54;9634:19;;29675:168:0;9239:420:1;29675:168:0;29856:21;29865:2;29869:7;29856:8;:21::i;:::-;29544:341;29474:411;;:::o;30841:339::-;31036:41;15633:10;31055:12;31069:7;31036:18;:41::i;:::-;31028:103;;;;-1:-1:-1;;;31028:103:0;;;;;;;:::i;:::-;31144:28;31154:4;31160:2;31164:7;31144:9;:28::i;31251:185::-;31389:39;31406:4;31412:2;31416:7;31389:39;;;;;;;;;;;;:16;:39::i;41773:137::-;41817:12;41812:91;41845:3;41835:7;:13;41812:91;;;41876:15;41883:7;41876:6;:15::i;:::-;41850:9;;;;:::i;:::-;;;;41812:91;;;;41773:137::o;27822:239::-;27894:7;27930:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27930:16:0;27965:19;27957:73;;;;-1:-1:-1;;;27957:73:0;;10277:2:1;27957:73:0;;;10259:21:1;10316:2;10296:18;;;10289:30;10355:34;10335:18;;;10328:62;-1:-1:-1;;;10406:18:1;;;10399:39;10455:19;;27957:73:0;10075:405:1;40933:134:0;41034:9;;:24;;-1:-1:-1;;;41034:24:0;;;;;14160:25:1;;;40989:7:0;;;;;;;;-1:-1:-1;;;;;41034:9:0;;;;:15;;14133:18:1;;41034:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;41027:32;;;;;;;;40933:134;;;;;:::o;27552:208::-;27624:7;-1:-1:-1;;;;;27652:19:0;;27644:74;;;;-1:-1:-1;;;27644:74:0;;9866:2:1;27644:74:0;;;9848:21:1;9905:2;9885:18;;;9878:30;9944:34;9924:18;;;9917:62;-1:-1:-1;;;9995:18:1;;;9988:40;10045:19;;27644:74:0;9664:406:1;27644:74:0;-1:-1:-1;;;;;;27736:16:0;;;;;:9;:16;;;;;;;27552:208::o;41485:276::-;41534:25;41569:20;41581:7;41569:11;:20::i;:::-;-1:-1:-1;;;41625:21:0;;;;:12;:21;;;;;;41533:56;;-1:-1:-1;;;;;;41604:42:0;;;41625:21;;41604:42;;;;:80;;-1:-1:-1;;;;;;41650:34:0;;41679:4;41650:34;;41604:80;41600:154;;;41701:21;;;;:12;:21;;;;;:41;;-1:-1:-1;;;;;;41701:41:0;-1:-1:-1;;;;;41701:41:0;;;;;41600:154;41522:239;41485:276;:::o;28297:104::-;28353:13;28386:7;28379:14;;;;;:::i;30244:295::-;-1:-1:-1;;;;;30347:24:0;;15633:10;30347:24;;30339:62;;;;-1:-1:-1;;;30339:62:0;;8674:2:1;30339:62:0;;;8656:21:1;8713:2;8693:18;;;8686:30;8752:27;8732:18;;;8725:55;8797:18;;30339:62:0;8472:349:1;30339:62:0;15633:10;30414:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;30414:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;30414:53:0;;;;;;;;;;30483:48;;6304:41:1;;;30414:42:0;;15633:10;30483:48;;6277:18:1;30483:48:0;;;;;;;30244:295;;:::o;31507:328::-;31682:41;15633:10;31715:7;31682:18;:41::i;:::-;31674:103;;;;-1:-1:-1;;;31674:103:0;;;;;;;:::i;:::-;31788:39;31802:4;31808:2;31812:7;31821:5;31788:13;:39::i;:::-;31507:328;;;;:::o;41079:394::-;41145:19;41178:25;41213:20;41225:7;41213:11;:20::i;:::-;-1:-1:-1;;;41269:21:0;;;;:12;:21;;;;;;41177:56;;-1:-1:-1;;;;;;41248:42:0;;;41269:21;;41248:42;;;;:80;;-1:-1:-1;;;;;;41294:34:0;;41323:4;41294:34;;41248:80;41244:189;;;41362:4;41345:21;;41244:189;;;41416:5;41399:22;;41244:189;41443:22;41079:394;;;:::o;28472:463::-;28545:13;28589:3;28579:7;:13;28571:71;;;;-1:-1:-1;;;28571:71:0;;12691:2:1;28571:71:0;;;12673:21:1;12730:2;12710:18;;;12703:30;12769:34;12749:18;;;12742:62;-1:-1:-1;;;12820:18:1;;;12813:43;12873:19;;28571:71:0;12489:409:1;28571:71:0;28655:21;28679:10;29260:16;;;;;;;;;;;;-1:-1:-1;;;29260:16:0;;;;;29183:101;28679:10;28655:34;;28700:23;28726:14;28732:7;28726:5;:14::i;:::-;28700:40;;28782:1;28764:7;28758:21;:25;:77;;;;;;;;;;;;;;;;;28810:7;28819:9;28793:36;;;;;;;;;:::i;:::-;;;;;;;;;;;;;28758:77;28751:84;28472:463;-1:-1:-1;;;;28472:463:0:o;42865:353::-;33410:4;33434:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33434:16:0;42913:60;;;;-1:-1:-1;;;42913:60:0;;7909:2:1;42913:60:0;;;7891:21:1;7948:2;7928:18;;;7921:30;7987:33;7967:18;;;7960:61;8038:18;;42913:60:0;7707:355:1;42913:60:0;42992:41;15633:10;43011:12;15553:98;42992:41;42984:76;;;;-1:-1:-1;;;42984:76:0;;6782:2:1;42984:76:0;;;6764:21:1;6821:2;6801:18;;;6794:30;-1:-1:-1;;;6840:18:1;;;6833:52;6902:18;;42984:76:0;6580:346:1;42984:76:0;43081:21;;;;:12;:21;;;;;;;:34;;-1:-1:-1;;;;;;43081:34:0;43105:10;43081:34;;;;;;43136:9;;:39;;-1:-1:-1;;;43136:39:0;;;;;14370:25:1;;;14411:18;;;14404:60;;;;-1:-1:-1;;;;;43136:9:0;;;;:18;;14343::1;;43136:39:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43196:14;43202:7;43196:5;:14::i;41922:611::-;41969:25;41996:21;42025:20;42037:7;42025:11;:20::i;:::-;-1:-1:-1;41968:77:0;;-1:-1:-1;41968:77:0;-1:-1:-1;;;;;;;42064:34:0;;42093:4;42064:34;42056:212;;;;-1:-1:-1;;;42056:212:0;;13105:2:1;42056:212:0;;;13087:21:1;13144:3;13124:18;;;13117:31;13184:34;13164:18;;;13157:62;13255:34;13235:18;;;13228:62;13327:34;13306:19;;;13299:63;13399:34;13378:19;;;13371:63;13471:34;13450:19;;;13443:63;-1:-1:-1;;;13522:19:1;;;13515:36;13568:19;;42056:212:0;12903:690:1;42056:212:0;42301:21;;;;:12;:21;;;;;;-1:-1:-1;;;;;42301:21:0;42287:10;:35;42279:95;;;;-1:-1:-1;;;42279:95:0;;13800:2:1;42279:95:0;;;13782:21:1;13839:2;13819:18;;;13812:30;13878:34;13858:18;;;13851:62;-1:-1:-1;;;13929:18:1;;;13922:45;13984:19;;42279:95:0;13598:411:1;42279:95:0;42395:30;42405:10;42417:7;42395:9;:30::i;:::-;42450:16;42446:80;;;42483:9;;:31;;-1:-1:-1;;;42483:31:0;;;;;14160:25:1;;;-1:-1:-1;;;;;42483:9:0;;;;:22;;14133:18:1;;42483:31:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41957:576;;41922:611;:::o;37453:174::-;37528:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;37528:29:0;-1:-1:-1;;;;;37528:29:0;;;;;;;;:24;;37582:23;37528:24;37582:14;:23::i;:::-;-1:-1:-1;;;;;37573:46:0;;;;;;;;;;;37453:174;;:::o;33639:348::-;33732:4;33434:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33434:16:0;33749:73;;;;-1:-1:-1;;;33749:73:0;;9028:2:1;33749:73:0;;;9010:21:1;9067:2;9047:18;;;9040:30;9106:34;9086:18;;;9079:62;-1:-1:-1;;;9157:18:1;;;9150:42;9209:19;;33749:73:0;8826:408:1;33749:73:0;33833:13;33849:23;33864:7;33849:14;:23::i;:::-;33833:39;;33902:5;-1:-1:-1;;;;;33891:16:0;:7;-1:-1:-1;;;;;33891:16:0;;:51;;;;33935:7;-1:-1:-1;;;;;33911:31:0;:20;33923:7;33911:11;:20::i;:::-;-1:-1:-1;;;;;33911:31:0;;33891:51;:87;;;-1:-1:-1;;;;;;30731:25:0;;;30707:4;30731:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;33946:32;30610:164;36707:628;36866:4;-1:-1:-1;;;;;36839:31:0;:23;36854:7;36839:14;:23::i;:::-;-1:-1:-1;;;;;36839:31:0;;36831:85;;;;-1:-1:-1;;;36831:85:0;;11461:2:1;36831:85:0;;;11443:21:1;11500:2;11480:18;;;11473:30;11539:34;11519:18;;;11512:62;-1:-1:-1;;;11590:18:1;;;11583:39;11639:19;;36831:85:0;11259:405:1;36831:85:0;-1:-1:-1;;;;;36935:16:0;;36927:65;;;;-1:-1:-1;;;36927:65:0;;8269:2:1;36927:65:0;;;8251:21:1;8308:2;8288:18;;;8281:30;8347:34;8327:18;;;8320:62;-1:-1:-1;;;8398:18:1;;;8391:34;8442:19;;36927:65:0;8067:400:1;36927:65:0;37109:29;37126:1;37130:7;37109:8;:29::i;:::-;-1:-1:-1;;;;;37151:15:0;;;;;;:9;:15;;;;;:20;;37170:1;;37151:15;:20;;37170:1;;37151:20;:::i;:::-;;;;-1:-1:-1;;;;;;;37182:13:0;;;;;;:9;:13;;;;;:18;;37199:1;;37182:13;:18;;37199:1;;37182:18;:::i;:::-;;;;-1:-1:-1;;37211:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;37211:21:0;-1:-1:-1;;;;;37211:21:0;;;;;;;;;37300:27;;37211:16;;37300:27;;;;;;;36707:628;;;:::o;32717:315::-;32874:28;32884:4;32890:2;32894:7;32874:9;:28::i;:::-;32921:48;32944:4;32950:2;32954:7;32963:5;32921:22;:48::i;:::-;32913:111;;;;-1:-1:-1;;;32913:111:0;;;;;;;:::i;29296:116::-;29389:6;:15;;;;;;;;;;29382:22;;29356:13;;29389:15;29382:22;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29296:116;;;:::o;35972:398::-;36032:13;36048:23;36063:7;36048:14;:23::i;:::-;36032:39;;36173:29;36190:1;36194:7;36173:8;:29::i;:::-;-1:-1:-1;;;;;36215:16:0;;;;;;:9;:16;;;;;:21;;36235:1;;36215:16;:21;;36235:1;;36215:21;:::i;:::-;;;;-1:-1:-1;;36254:16:0;;;;:7;:16;;;;;36247:23;;-1:-1:-1;;;;;;36247:23:0;;;36291:12;:17;;36247:23;;36254:16;36291:17;;36247:23;;36291:17;:::i;:::-;;;;-1:-1:-1;;36326:36:0;;36354:7;;36350:1;;-1:-1:-1;;;;;36326:36:0;;;;;36350:1;;36326:36;36021:349;35972:398;:::o;34329:110::-;34405:26;34415:2;34419:7;34405:26;;;;;;;;;;;;:9;:26::i;38192:799::-;38347:4;-1:-1:-1;;;;;38368:13:0;;8005:20;8053:8;38364:620;;38404:72;;-1:-1:-1;;;38404:72:0;;-1:-1:-1;;;;;38404:36:0;;;;;:72;;15633:10;;38455:4;;38461:7;;38470:5;;38404:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38404:72:0;;;;;;;;-1:-1:-1;;38404:72:0;;;;;;;;;;;;:::i;:::-;;;38400:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38646:13:0;;38642:272;;38689:60;;-1:-1:-1;;;38689:60:0;;;;;;;:::i;38642:272::-;38864:6;38858:13;38849:6;38845:2;38841:15;38834:38;38400:529;-1:-1:-1;;;;;;38527:51:0;-1:-1:-1;;;38527:51:0;;-1:-1:-1;38520:58:0;;38364:620;-1:-1:-1;38968:4:0;38192:799;;;;;;:::o;34666:321::-;34796:18;34802:2;34806:7;34796:5;:18::i;:::-;34847:54;34878:1;34882:2;34886:7;34895:5;34847:22;:54::i;:::-;34825:154;;;;-1:-1:-1;;;34825:154:0;;;;;;;:::i;35323:420::-;-1:-1:-1;;;;;35403:16:0;;35395:61;;;;-1:-1:-1;;;35395:61:0;;10687:2:1;35395:61:0;;;10669:21:1;;;10706:18;;;10699:30;10765:34;10745:18;;;10738:62;10817:18;;35395:61:0;10485:356:1;35395:61:0;33410:4;33434:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33434:16:0;:30;35467:58;;;;-1:-1:-1;;;35467:58:0;;7552:2:1;35467:58:0;;;7534:21:1;7591:2;7571:18;;;7564:30;7630;7610:18;;;7603:58;7678:18;;35467:58:0;7350:352:1;35467:58:0;-1:-1:-1;;;;;35596:13:0;;;;;;:9;:13;;;;;:18;;35613:1;;35596:13;:18;;35613:1;;35596:18;:::i;:::-;;;;-1:-1:-1;;35625:16:0;;;;:7;:16;;;;;:21;;-1:-1:-1;;;;;;35625:21:0;-1:-1:-1;;;;;35625:21:0;;;;;35667:12;:17;;-1:-1:-1;;35625:16:0;35667:17;;-1:-1:-1;;35667:17:0;:::i;:::-;;;;-1:-1:-1;;35702:33:0;;35727:7;;-1:-1:-1;;;;;35702:33:0;;;35719:1;;35702:33;;35719:1;;35702:33;35323:420;;:::o;14:247:1:-;73:6;126:2;114:9;105:7;101:23;97:32;94:52;;;142:1;139;132:12;94:52;181:9;168:23;200:31;225:5;200:31;:::i;:::-;250:5;14:247;-1:-1:-1;;;14:247:1:o;266:388::-;334:6;342;395:2;383:9;374:7;370:23;366:32;363:52;;;411:1;408;401:12;363:52;450:9;437:23;469:31;494:5;469:31;:::i;:::-;519:5;-1:-1:-1;576:2:1;561:18;;548:32;589:33;548:32;589:33;:::i;:::-;641:7;631:17;;;266:388;;;;;:::o;659:456::-;736:6;744;752;805:2;793:9;784:7;780:23;776:32;773:52;;;821:1;818;811:12;773:52;860:9;847:23;879:31;904:5;879:31;:::i;:::-;929:5;-1:-1:-1;986:2:1;971:18;;958:32;999:33;958:32;999:33;:::i;:::-;659:456;;1051:7;;-1:-1:-1;;;1105:2:1;1090:18;;;;1077:32;;659:456::o;1120:1266::-;1215:6;1223;1231;1239;1292:3;1280:9;1271:7;1267:23;1263:33;1260:53;;;1309:1;1306;1299:12;1260:53;1348:9;1335:23;1367:31;1392:5;1367:31;:::i;:::-;1417:5;-1:-1:-1;1474:2:1;1459:18;;1446:32;1487:33;1446:32;1487:33;:::i;:::-;1539:7;-1:-1:-1;1593:2:1;1578:18;;1565:32;;-1:-1:-1;1648:2:1;1633:18;;1620:32;1671:18;1701:14;;;1698:34;;;1728:1;1725;1718:12;1698:34;1766:6;1755:9;1751:22;1741:32;;1811:7;1804:4;1800:2;1796:13;1792:27;1782:55;;1833:1;1830;1823:12;1782:55;1869:2;1856:16;1891:2;1887;1884:10;1881:36;;;1897:18;;:::i;:::-;1972:2;1966:9;1940:2;2026:13;;-1:-1:-1;;2022:22:1;;;2046:2;2018:31;2014:40;2002:53;;;2070:18;;;2090:22;;;2067:46;2064:72;;;2116:18;;:::i;:::-;2156:10;2152:2;2145:22;2191:2;2183:6;2176:18;2231:7;2226:2;2221;2217;2213:11;2209:20;2206:33;2203:53;;;2252:1;2249;2242:12;2203:53;2308:2;2303;2299;2295:11;2290:2;2282:6;2278:15;2265:46;2353:1;2348:2;2343;2335:6;2331:15;2327:24;2320:35;2374:6;2364:16;;;;;;;1120:1266;;;;;;;:::o;2391:382::-;2456:6;2464;2517:2;2505:9;2496:7;2492:23;2488:32;2485:52;;;2533:1;2530;2523:12;2485:52;2572:9;2559:23;2591:31;2616:5;2591:31;:::i;:::-;2641:5;-1:-1:-1;2698:2:1;2683:18;;2670:32;2711:30;2670:32;2711:30;:::i;2778:502::-;2872:6;2880;2888;2896;2949:3;2937:9;2928:7;2924:23;2920:33;2917:53;;;2966:1;2963;2956:12;2917:53;2998:9;2992:16;3017:31;3042:5;3017:31;:::i;:::-;3117:2;3102:18;;3096:25;3067:5;;-1:-1:-1;3130:30:1;3096:25;3130:30;:::i;:::-;3226:2;3211:18;;3205:25;3270:2;3255:18;;;3249:25;2778:502;;3179:7;;-1:-1:-1;2778:502:1;-1:-1:-1;;;2778:502:1:o;3285:315::-;3353:6;3361;3414:2;3402:9;3393:7;3389:23;3385:32;3382:52;;;3430:1;3427;3420:12;3382:52;3469:9;3456:23;3488:31;3513:5;3488:31;:::i;:::-;3538:5;3590:2;3575:18;;;;3562:32;;-1:-1:-1;;;3285:315:1:o;3605:245::-;3663:6;3716:2;3704:9;3695:7;3691:23;3687:32;3684:52;;;3732:1;3729;3722:12;3684:52;3771:9;3758:23;3790:30;3814:5;3790:30;:::i;3855:249::-;3924:6;3977:2;3965:9;3956:7;3952:23;3948:32;3945:52;;;3993:1;3990;3983:12;3945:52;4025:9;4019:16;4044:30;4068:5;4044:30;:::i;4109:180::-;4168:6;4221:2;4209:9;4200:7;4196:23;4192:32;4189:52;;;4237:1;4234;4227:12;4189:52;-1:-1:-1;4260:23:1;;4109:180;-1:-1:-1;4109:180:1:o;4294:257::-;4335:3;4373:5;4367:12;4400:6;4395:3;4388:19;4416:63;4472:6;4465:4;4460:3;4456:14;4449:4;4442:5;4438:16;4416:63;:::i;:::-;4533:2;4512:15;-1:-1:-1;;4508:29:1;4499:39;;;;4540:4;4495:50;;4294:257;-1:-1:-1;;4294:257:1:o;4556:470::-;4735:3;4773:6;4767:13;4789:53;4835:6;4830:3;4823:4;4815:6;4811:17;4789:53;:::i;:::-;4905:13;;4864:16;;;;4927:57;4905:13;4864:16;4961:4;4949:17;;4927:57;:::i;:::-;5000:20;;4556:470;-1:-1:-1;;;;4556:470:1:o;5239:488::-;-1:-1:-1;;;;;5508:15:1;;;5490:34;;5560:15;;5555:2;5540:18;;5533:43;5607:2;5592:18;;5585:34;;;5655:3;5650:2;5635:18;;5628:31;;;5433:4;;5676:45;;5701:19;;5693:6;5676:45;:::i;:::-;5668:53;5239:488;-1:-1:-1;;;;;;5239:488:1:o;6356:219::-;6505:2;6494:9;6487:21;6468:4;6525:44;6565:2;6554:9;6550:18;6542:6;6525:44;:::i;6931:414::-;7133:2;7115:21;;;7172:2;7152:18;;;7145:30;7211:34;7206:2;7191:18;;7184:62;-1:-1:-1;;;7277:2:1;7262:18;;7255:48;7335:3;7320:19;;6931:414::o;12071:413::-;12273:2;12255:21;;;12312:2;12292:18;;;12285:30;12351:34;12346:2;12331:18;;12324:62;-1:-1:-1;;;12417:2:1;12402:18;;12395:47;12474:3;12459:19;;12071:413::o;14475:128::-;14515:3;14546:1;14542:6;14539:1;14536:13;14533:39;;;14552:18;;:::i;:::-;-1:-1:-1;14588:9:1;;14475:128::o;14608:125::-;14648:4;14676:1;14673;14670:8;14667:34;;;14681:18;;:::i;:::-;-1:-1:-1;14718:9:1;;14608:125::o;14738:258::-;14810:1;14820:113;14834:6;14831:1;14828:13;14820:113;;;14910:11;;;14904:18;14891:11;;;14884:39;14856:2;14849:10;14820:113;;;14951:6;14948:1;14945:13;14942:48;;;-1:-1:-1;;14986:1:1;14968:16;;14961:27;14738:258::o;15001:380::-;15080:1;15076:12;;;;15123;;;15144:61;;15198:4;15190:6;15186:17;15176:27;;15144:61;15251:2;15243:6;15240:14;15220:18;15217:38;15214:161;;;15297:10;15292:3;15288:20;15285:1;15278:31;15332:4;15329:1;15322:15;15360:4;15357:1;15350:15;15386:135;15425:3;-1:-1:-1;;15446:17:1;;15443:43;;;15466:18;;:::i;:::-;-1:-1:-1;15513:1:1;15502:13;;15386:135::o;15526:127::-;15587:10;15582:3;15578:20;15575:1;15568:31;15618:4;15615:1;15608:15;15642:4;15639:1;15632:15;15658:127;15719:10;15714:3;15710:20;15707:1;15700:31;15750:4;15747:1;15740:15;15774:4;15771:1;15764:15;15790:131;-1:-1:-1;;;;;15865:31:1;;15855:42;;15845:70;;15911:1;15908;15901:12;15926:118;16012:5;16005:13;15998:21;15991:5;15988:32;15978:60;;16034:1;16031;16024:12;16049:131;-1:-1:-1;;;;;;16123:32:1;;16113:43;;16103:71;;16170:1;16167;16160:12

Swarm Source

ipfs://cfeb0c1aa848991995d9c5a081c10aaa10dd17168c0f3cd96c093e03969d6f70

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.