ETH Price: $3,830.55 (+5.35%)

Token

Hexelz (HEXELZ)
 

Overview

Max Total Supply

38 HEXELZ

Holders

38

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 HEXELZ
0xf5751a0bf66634e3c8633c33d6ae69ccc2daf358
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Hexelz

Compiler Version
v0.8.5+commit.a4f2e591

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : Hexelz.sol
// Sources flattened with hardhat v2.6.2 https://hardhat.org

// File contracts/common/meta-transactions/Initializable.
pragma solidity ^0.8.0;

contract Initializable {
    bool inited = false;

    modifier initializer() {
        require(!inited, "already inited");
        _;
        inited = true;
    }
}


// File contracts/common/meta-transactions/EIP712Base.
pragma solidity ^0.8.0;

contract EIP712Base is Initializable {
    struct EIP712Domain {
        string name;
        string version;
        address verifyingContract;
        bytes32 salt;
    }

    string constant public ERC712_VERSION = "1";

    bytes32 internal constant EIP712_DOMAIN_TYPEHASH = keccak256(
        bytes(
            "EIP712Domain(string name,string version,address verifyingContract,bytes32 salt)"
        )
    );
    bytes32 internal domainSeperator;

    // supposed to be called once while initializing.
    // one of the contracts that inherits this contract follows proxy pattern
    // so it is not possible to do this in a constructor
    function _initializeEIP712(
        string memory name
    )
        internal
        initializer
    {
        _setDomainSeperator(name);
    }

    function _setDomainSeperator(string memory name) internal {
        domainSeperator = keccak256(
            abi.encode(
                EIP712_DOMAIN_TYPEHASH,
                keccak256(bytes(name)),
                keccak256(bytes(ERC712_VERSION)),
                address(this),
                bytes32(getChainId())
            )
        );
    }

    function getDomainSeperator() public view returns (bytes32) {
        return domainSeperator;
    }

    function getChainId() public view returns (uint256) {
        uint256 id;
        assembly {
            id := chainid()
        }
        return id;
    }

    /**
     * Accept message hash and returns hash message in EIP712 compatible form
     * So that it can be used to recover signer from signature signed using EIP712 formatted data
     * https://eips.ethereum.org/EIPS/eip-712
     * "\\x19" makes the encoding deterministic
     * "\\x01" is the version byte to make it compatible to EIP-191
     */
    function toTypedMessageHash(bytes32 messageHash)
        internal
        view
        returns (bytes32)
    {
        return
            keccak256(
                abi.encodePacked("\x19\x01", getDomainSeperator(), messageHash)
            );
    }
}


// File @openzeppelin/contracts/utils/math/SafeMath.sol@v4.
pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}


// File contracts/common/meta-transactions/NativeMetaTransaction.
pragma solidity ^0.8.0;


contract NativeMetaTransaction is EIP712Base {
    using SafeMath for uint256;
    bytes32 private constant META_TRANSACTION_TYPEHASH = keccak256(
        bytes(
            "MetaTransaction(uint256 nonce,address from,bytes functionSignature)"
        )
    );
    event MetaTransactionExecuted(
        address userAddress,
        address payable relayerAddress,
        bytes functionSignature
    );
    mapping(address => uint256) nonces;

    /*
     * Meta transaction structure.
     * No point of including value field here as if user is doing value transfer then he has the funds to pay for gas
     * He should call the desired function directly in that case.
     */
    struct MetaTransaction {
        uint256 nonce;
        address from;
        bytes functionSignature;
    }

    function executeMetaTransaction(
        address userAddress,
        bytes memory functionSignature,
        bytes32 sigR,
        bytes32 sigS,
        uint8 sigV
    ) public payable returns (bytes memory) {
        MetaTransaction memory metaTx = MetaTransaction({
            nonce: nonces[userAddress],
            from: userAddress,
            functionSignature: functionSignature
        });

        require(
            verify(userAddress, metaTx, sigR, sigS, sigV),
            "Signer and signature do not match"
        );

        // increase nonce for user (to avoid re-use)
        nonces[userAddress] = nonces[userAddress].add(1);

        emit MetaTransactionExecuted(
            userAddress,
            payable(msg.sender),
            functionSignature
        );

        // Append userAddress and relayer address at the end to extract it from calling context
        (bool success, bytes memory returnData) = address(this).call(
            abi.encodePacked(functionSignature, userAddress)
        );
        require(success, "Function call not successful");

        return returnData;
    }

    function hashMetaTransaction(MetaTransaction memory metaTx)
        internal
        pure
        returns (bytes32)
    {
        return
            keccak256(
                abi.encode(
                    META_TRANSACTION_TYPEHASH,
                    metaTx.nonce,
                    metaTx.from,
                    keccak256(metaTx.functionSignature)
                )
            );
    }

    function getNonce(address user) public view returns (uint256 nonce) {
        nonce = nonces[user];
    }

    function verify(
        address signer,
        MetaTransaction memory metaTx,
        bytes32 sigR,
        bytes32 sigS,
        uint8 sigV
    ) internal view returns (bool) {
        require(signer != address(0), "NativeMetaTransaction: INVALID_SIGNER");
        return
            signer ==
            ecrecover(
                toTypedMessageHash(hashMetaTransaction(metaTx)),
                sigV,
                sigR,
                sigS
            );
    }
}


// File @openzeppelin/contracts/utils/introspection/IERC165.sol@v4.
pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/token/ERC721/IERC721.sol@v4.
pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol@v4.
pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol@v4.
pragma solidity ^0.8.0;

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

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

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


// File @openzeppelin/contracts/utils/Address.sol@v4.
pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/utils/Context.sol@v4.
pragma solidity ^0.8.0;

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

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


// File @openzeppelin/contracts/utils/Strings.sol@v4.
pragma solidity ^0.8.0;

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

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

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

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

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


// File @openzeppelin/contracts/utils/introspection/ERC165.sol@v4.
pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/token/ERC721/ERC721.sol@v4.
pragma solidity ^0.8.0;







/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

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

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

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        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;

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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


// File @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol@v4.
pragma solidity ^0.8.0;

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

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

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


// File @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol@v4.
pragma solidity ^0.8.0;


/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @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` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * 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 override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}


// File @openzeppelin/contracts/access/Ownable.sol@v4.
pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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


// File contracts/common/meta-transactions/ContentMixin.
pragma solidity ^0.8.0;

abstract contract ContextMixin {
    function msgSender()
        internal
        view
        returns (address payable sender)
    {
        if (msg.sender == address(this)) {
            bytes memory array = msg.data;
            uint256 index = msg.data.length;
            assembly {
                // Load the 32 bytes word from memory with the address on the lower 20 bytes, and mask those.
                sender := and(
                    mload(add(array, index)),
                    0xffffffffffffffffffffffffffffffffffffffff
                )
            }
        } else {
            sender = payable(msg.sender);
        }
        return sender;
    }
}


// File contracts/ERC721Tradable.
pragma solidity ^0.8.0;






contract OwnableDelegateProxy {}

contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

/**
 * @title ERC721Tradable
 * ERC721Tradable - ERC721 contract that whitelists a trading address, and has minting functionality.
 */
abstract contract ERC721Tradable is ContextMixin, ERC721Enumerable, NativeMetaTransaction, Ownable {
    using SafeMath for uint256;

    address proxyRegistryAddress;
    uint256 public currentTokenId = 0;

    constructor(
        string memory _name,
        string memory _symbol,
        address _proxyRegistryAddress
    ) ERC721(_name, _symbol) {
        proxyRegistryAddress = _proxyRegistryAddress;
        _initializeEIP712(_name);
    }

    /**
     * @dev Mints a token to an address with a tokenURI.
     * @param _to address of the future owner of the token
     */
    function mintTo(address _to) public onlyOwner {
        uint256 newTokenId = _getNextTokenId();
        _mint(_to, newTokenId);
        _incrementTokenId();
    }

    /**
     * @dev calculates the next token ID based on value of currentTokenId
     * @return uint256 for the next token ID
     */
    function _getNextTokenId() internal view returns (uint256) {
        return currentTokenId.add(1);
    }

    /**
     * @dev increments the value of currentTokenId
     */
    function _incrementTokenId() internal {
        currentTokenId++;
    }

    function baseTokenURI() virtual public view returns (string memory);

    function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
        return string(abi.encodePacked(baseTokenURI(), Strings.toString(_tokenId)));
    }

    /**
     * Override isApprovedForAll to whitelist user's OpenSea proxy accounts to enable gas-less listings.
     */
    function isApprovedForAll(address owner, address operator)
        override
        virtual
        public
        view
        returns (bool)
    {
        // Whitelist OpenSea proxy contract for easy trading.
        ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress);
        if (address(proxyRegistry.proxies(owner)) == operator) {
            return true;
        }

        return super.isApprovedForAll(owner, operator);
    }

    /**
     * This is used instead of msg.sender as transactions won't be sent by the original token owner, but by OpenSea.
     */
    function _msgSender()
        internal
        override
        virtual
        view
        returns (address sender)
    {
        return ContextMixin.msgSender();
    }
}


// File contracts/Hexelz.sol

pragma solidity 0.8.5;

contract Hexelz is ERC721Tradable {
    string baseURI;
    uint256 public MAX_SUPPLY = 100;
    uint256 public basePrice = 550000000000000000;
    mapping(address => bool) public minted;

    constructor(string memory baseURI_)
        ERC721Tradable("Hexelz", "HEXELZ", address(0))
    {
        baseURI = baseURI_;
    }

    function mint() external payable {
        uint256 newTokenId = _getNextTokenId();
        require(msg.value == basePrice, "Incorrect ETH Amount");
        require(newTokenId < MAX_SUPPLY, "Sold out");
        require(!minted[_msgSender()], "Already bought");
        minted[_msgSender()] = true;
        _incrementTokenId();
        _mint(_msgSender(), newTokenId);
        payable(owner()).transfer(msg.value);
    }

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        return
            string(abi.encodePacked(baseTokenURI(), Strings.toString(tokenId)));
    }

    function isApprovedForAll(address _owner, address operator)
        public
        view
        override
        returns (bool)
    {
        // Whitelist OpenSea proxy contract for easy trading.
        ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress);
        if (
            proxyRegistryAddress != address(0) &&
            address(proxyRegistry.proxies(_owner)) == operator
        ) {
            return true;
        }

        return super.isApprovedForAll(_owner, operator);
    }

    function setProxyRegistry(address _proxyRegistryAddress)
        external
        onlyOwner
    {
        proxyRegistryAddress = _proxyRegistryAddress;
    }

    function setBaseURI(string memory baseURI_) external onlyOwner {
        baseURI = baseURI_;
    }

    function baseTokenURI() public view override returns (string memory) {
        return _baseURI();
    }

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

    function _msgSender()
        internal
        view
        virtual
        override
        returns (address sender)
    {
        return ContextMixin.msgSender();
    }

}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"userAddress","type":"address"},{"indexed":false,"internalType":"address payable","name":"relayerAddress","type":"address"},{"indexed":false,"internalType":"bytes","name":"functionSignature","type":"bytes"}],"name":"MetaTransactionExecuted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"ERC712_VERSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"basePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"userAddress","type":"address"},{"internalType":"bytes","name":"functionSignature","type":"bytes"},{"internalType":"bytes32","name":"sigR","type":"bytes32"},{"internalType":"bytes32","name":"sigS","type":"bytes32"},{"internalType":"uint8","name":"sigV","type":"uint8"}],"name":"executeMetaTransaction","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getChainId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getDomainSeperator","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getNonce","outputs":[{"internalType":"uint256","name":"nonce","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":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"mintTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_proxyRegistryAddress","type":"address"}],"name":"setProxyRegistry","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600a60006101000a81548160ff0219169083151502179055506000600f5560646011556707a1fe16027700006012553480156200004257600080fd5b5060405162005488380380620054888339818101604052810190620000689190620005a2565b6040518060400160405280600681526020017f486578656c7a00000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f484558454c5a0000000000000000000000000000000000000000000000000000815250600082828160009080519060200190620000f092919062000474565b5080600190805190602001906200010992919062000474565b5050506200012c62000120620001a160201b60201c565b620001bd60201b60201c565b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200017e836200028360201b60201c565b50505080601090805190602001906200019992919062000474565b5050620008b7565b6000620001b86200030560201b62001ad41760201c565b905090565b6000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600a60009054906101000a900460ff1615620002d6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002cd9062000699565b60405180910390fd5b620002e781620003b860201b60201c565b6001600a60006101000a81548160ff02191690831515021790555050565b60003073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415620003b157600080368080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509050600080369050905073ffffffffffffffffffffffffffffffffffffffff818301511692505050620003b5565b3390505b90565b6040518060800160405280604f815260200162005439604f91398051906020012081805190602001206040518060400160405280600181526020017f310000000000000000000000000000000000000000000000000000000000000081525080519060200120306200042f6200046760201b60201c565b60001b604051602001620004489594939291906200063c565b60405160208183030381529060405280519060200120600b8190555050565b6000804690508091505090565b82805462000482906200079f565b90600052602060002090601f016020900481019282620004a65760008555620004f2565b82601f10620004c157805160ff1916838001178555620004f2565b82800160010185558215620004f2579182015b82811115620004f1578251825591602001919060010190620004d4565b5b50905062000501919062000505565b5090565b5b808211156200052057600081600090555060010162000506565b5090565b60006200053b6200053584620006e4565b620006bb565b9050828152602081018484840111156200055a57620005596200086e565b5b6200056784828562000769565b509392505050565b600082601f83011262000587576200058662000869565b5b81516200059984826020860162000524565b91505092915050565b600060208284031215620005bb57620005ba62000878565b5b600082015167ffffffffffffffff811115620005dc57620005db62000873565b5b620005ea848285016200056f565b91505092915050565b620005fe816200072b565b82525050565b6200060f816200073f565b82525050565b600062000624600e836200071a565b915062000631826200088e565b602082019050919050565b600060a08201905062000653600083018862000604565b62000662602083018762000604565b62000671604083018662000604565b620006806060830185620005f3565b6200068f608083018462000604565b9695505050505050565b60006020820190508181036000830152620006b48162000615565b9050919050565b6000620006c7620006da565b9050620006d58282620007d5565b919050565b6000604051905090565b600067ffffffffffffffff8211156200070257620007016200083a565b5b6200070d826200087d565b9050602081019050919050565b600082825260208201905092915050565b6000620007388262000749565b9050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60005b83811015620007895780820151818401526020810190506200076c565b8381111562000799576000848401525b50505050565b60006002820490506001821680620007b857607f821691505b60208210811415620007cf57620007ce6200080b565b5b50919050565b620007e0826200087d565b810181811067ffffffffffffffff821117156200080257620008016200083a565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f616c726561647920696e69746564000000000000000000000000000000000000600082015250565b614b7280620008c76000396000f3fe6080604052600436106101ed5760003560e01c806342842e0e1161010d57806395d89b41116100a0578063c7876ea41161006f578063c7876ea4146106f6578063c87b56dd14610721578063d547cfb71461075e578063e985e9c514610789578063f2fde38b146107c6576101ed565b806395d89b4114610650578063a22cb4651461067b578063adfdeef9146106a4578063b88d4fde146106cd576101ed565b806370a08231116100dc57806370a08231146105a8578063715018a6146105e5578063755edd17146105fc5780638da5cb5b14610625576101ed565b806342842e0e146104dc5780634f6ccce71461050557806355f804b3146105425780636352211e1461056b576101ed565b806318160ddd116101855780632d0335ab116101545780632d0335ab1461040c5780632f745c591461044957806332cb6b0c146104865780633408e470146104b1576101ed565b806318160ddd146103505780631e7269c51461037b57806320379ee5146103b857806323b872dd146103e3576101ed565b8063095ea7b3116101c1578063095ea7b3146102c25780630c53c51c146102eb5780630f7e59701461031b5780631249c58b14610346576101ed565b80629a9b7b146101f257806301ffc9a71461021d57806306fdde031461025a578063081812fc14610285575b600080fd5b3480156101fe57600080fd5b506102076107ef565b6040516102149190613f04565b60405180910390f35b34801561022957600080fd5b50610244600480360381019061023f91906133fd565b6107f5565b6040516102519190613b00565b60405180910390f35b34801561026657600080fd5b5061026f61086f565b60405161027c9190613be2565b60405180910390f35b34801561029157600080fd5b506102ac60048036038101906102a791906134cd565b610901565b6040516102b99190613a5b565b60405180910390f35b3480156102ce57600080fd5b506102e960048036038101906102e491906133bd565b610986565b005b61030560048036038101906103009190613326565b610a9e565b6040516103129190613bc0565b60405180910390f35b34801561032757600080fd5b50610330610d10565b60405161033d9190613be2565b60405180910390f35b61034e610d49565b005b34801561035c57600080fd5b50610365610f3a565b6040516103729190613f04565b60405180910390f35b34801561038757600080fd5b506103a2600480360381019061039d91906131a3565b610f47565b6040516103af9190613b00565b60405180910390f35b3480156103c457600080fd5b506103cd610f67565b6040516103da9190613b1b565b60405180910390f35b3480156103ef57600080fd5b5061040a60048036038101906104059190613210565b610f71565b005b34801561041857600080fd5b50610433600480360381019061042e91906131a3565b610fd1565b6040516104409190613f04565b60405180910390f35b34801561045557600080fd5b50610470600480360381019061046b91906133bd565b61101a565b60405161047d9190613f04565b60405180910390f35b34801561049257600080fd5b5061049b6110bf565b6040516104a89190613f04565b60405180910390f35b3480156104bd57600080fd5b506104c66110c5565b6040516104d39190613f04565b60405180910390f35b3480156104e857600080fd5b5061050360048036038101906104fe9190613210565b6110d2565b005b34801561051157600080fd5b5061052c600480360381019061052791906134cd565b6110f2565b6040516105399190613f04565b60405180910390f35b34801561054e57600080fd5b5061056960048036038101906105649190613484565b611163565b005b34801561057757600080fd5b50610592600480360381019061058d91906134cd565b6111f9565b60405161059f9190613a5b565b60405180910390f35b3480156105b457600080fd5b506105cf60048036038101906105ca91906131a3565b6112ab565b6040516105dc9190613f04565b60405180910390f35b3480156105f157600080fd5b506105fa611363565b005b34801561060857600080fd5b50610623600480360381019061061e91906131a3565b6113eb565b005b34801561063157600080fd5b5061063a611489565b6040516106479190613a5b565b60405180910390f35b34801561065c57600080fd5b506106656114b3565b6040516106729190613be2565b60405180910390f35b34801561068757600080fd5b506106a2600480360381019061069d91906132e6565b611545565b005b3480156106b057600080fd5b506106cb60048036038101906106c691906131a3565b6116c6565b005b3480156106d957600080fd5b506106f460048036038101906106ef9190613263565b611786565b005b34801561070257600080fd5b5061070b6117e8565b6040516107189190613f04565b60405180910390f35b34801561072d57600080fd5b50610748600480360381019061074391906134cd565b6117ee565b6040516107559190613be2565b60405180910390f35b34801561076a57600080fd5b50610773611870565b6040516107809190613be2565b60405180910390f35b34801561079557600080fd5b506107b060048036038101906107ab91906131d0565b61187f565b6040516107bd9190613b00565b60405180910390f35b3480156107d257600080fd5b506107ed60048036038101906107e891906131a3565b6119dc565b005b600f5481565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610868575061086782611b85565b5b9050919050565b60606000805461087e906141a0565b80601f01602080910402602001604051908101604052809291908181526020018280546108aa906141a0565b80156108f75780601f106108cc576101008083540402835291602001916108f7565b820191906000526020600020905b8154815290600101906020018083116108da57829003601f168201915b5050505050905090565b600061090c82611c67565b61094b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094290613de4565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610991826111f9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a02576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f990613e84565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a21611cd3565b73ffffffffffffffffffffffffffffffffffffffff161480610a505750610a4f81610a4a611cd3565b61187f565b5b610a8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8690613d64565b60405180910390fd5b610a998383611ce2565b505050565b606060006040518060600160405280600c60008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205481526020018873ffffffffffffffffffffffffffffffffffffffff168152602001878152509050610b218782878787611d9b565b610b60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5790613e44565b60405180910390fd5b610bb36001600c60008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ea490919063ffffffff16565b600c60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055507f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b873388604051610c2993929190613a76565b60405180910390a16000803073ffffffffffffffffffffffffffffffffffffffff16888a604051602001610c5e9291906139d8565b604051602081830303815290604052604051610c7a91906139c1565b6000604051808303816000865af19150503d8060008114610cb7576040519150601f19603f3d011682016040523d82523d6000602084013e610cbc565b606091505b509150915081610d01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf890613ca4565b60405180910390fd5b80935050505095945050505050565b6040518060400160405280600181526020017f310000000000000000000000000000000000000000000000000000000000000081525081565b6000610d53611eba565b90506012543414610d99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9090613c04565b60405180910390fd5b6011548110610ddd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd490613ec4565b60405180910390fd5b60136000610de9611cd3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610e71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6890613c24565b60405180910390fd5b600160136000610e7f611cd3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610ed8611ed7565b610ee9610ee3611cd3565b82611ef1565b610ef1611489565b73ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f19350505050158015610f36573d6000803e3d6000fd5b5050565b6000600880549050905090565b60136020528060005260406000206000915054906101000a900460ff1681565b6000600b54905090565b610f82610f7c611cd3565b826120bf565b610fc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb890613ea4565b60405180910390fd5b610fcc83838361219d565b505050565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000611025836112ab565b8210611066576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105d90613c44565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60115481565b6000804690508091505090565b6110ed83838360405180602001604052806000815250611786565b505050565b60006110fc610f3a565b821061113d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113490613ee4565b60405180910390fd5b6008828154811061115157611150614367565b5b90600052602060002001549050919050565b61116b611cd3565b73ffffffffffffffffffffffffffffffffffffffff16611189611489565b73ffffffffffffffffffffffffffffffffffffffff16146111df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d690613e04565b60405180910390fd5b80601090805190602001906111f5929190612f78565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156112a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129990613da4565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561131c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131390613d84565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61136b611cd3565b73ffffffffffffffffffffffffffffffffffffffff16611389611489565b73ffffffffffffffffffffffffffffffffffffffff16146113df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d690613e04565b60405180910390fd5b6113e960006123f9565b565b6113f3611cd3565b73ffffffffffffffffffffffffffffffffffffffff16611411611489565b73ffffffffffffffffffffffffffffffffffffffff1614611467576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145e90613e04565b60405180910390fd5b6000611471611eba565b905061147d8282611ef1565b611485611ed7565b5050565b6000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546114c2906141a0565b80601f01602080910402602001604051908101604052809291908181526020018280546114ee906141a0565b801561153b5780601f106115105761010080835404028352916020019161153b565b820191906000526020600020905b81548152906001019060200180831161151e57829003601f168201915b5050505050905090565b61154d611cd3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b290613d04565b60405180910390fd5b80600560006115c8611cd3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611675611cd3565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116ba9190613b00565b60405180910390a35050565b6116ce611cd3565b73ffffffffffffffffffffffffffffffffffffffff166116ec611489565b73ffffffffffffffffffffffffffffffffffffffff1614611742576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173990613e04565b60405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611797611791611cd3565b836120bf565b6117d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117cd90613ea4565b60405180910390fd5b6117e2848484846124bf565b50505050565b60125481565b60606117f982611c67565b611838576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182f90613e64565b60405180910390fd5b611840611870565b6118498361251b565b60405160200161185a929190613a00565b6040516020818303038152906040529050919050565b606061187a61267c565b905090565b600080600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141580156119b957508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b81526004016119519190613a5b565b60206040518083038186803b15801561196957600080fd5b505afa15801561197d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119a19190613457565b73ffffffffffffffffffffffffffffffffffffffff16145b156119c85760019150506119d6565b6119d2848461270e565b9150505b92915050565b6119e4611cd3565b73ffffffffffffffffffffffffffffffffffffffff16611a02611489565b73ffffffffffffffffffffffffffffffffffffffff1614611a58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4f90613e04565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ac8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abf90613c84565b60405180910390fd5b611ad1816123f9565b50565b60003073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415611b7e57600080368080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509050600080369050905073ffffffffffffffffffffffffffffffffffffffff818301511692505050611b82565b3390505b90565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611c5057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611c605750611c5f82612810565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6000611cdd611ad4565b905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611d55836111f9565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff161415611e0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0390613d44565b60405180910390fd5b6001611e1f611e1a8761287a565b6128e2565b83868660405160008152602001604052604051611e3f9493929190613b7b565b6020604051602081039080840390855afa158015611e61573d6000803e3d6000fd5b5050506020604051035173ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614905095945050505050565b60008183611eb29190613ff4565b905092915050565b6000611ed26001600f54611ea490919063ffffffff16565b905090565b600f6000815480929190611eea90614203565b9190505550565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5890613dc4565b60405180910390fd5b611f6a81611c67565b15611faa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa190613cc4565b60405180910390fd5b611fb66000838361291b565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120069190613ff4565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60006120ca82611c67565b612109576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210090613d24565b60405180910390fd5b6000612114836111f9565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061218357508373ffffffffffffffffffffffffffffffffffffffff1661216b84610901565b73ffffffffffffffffffffffffffffffffffffffff16145b806121945750612193818561187f565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166121bd826111f9565b73ffffffffffffffffffffffffffffffffffffffff1614612213576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220a90613e24565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612283576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227a90613ce4565b60405180910390fd5b61228e83838361291b565b612299600082611ce2565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122e9919061407b565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123409190613ff4565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6124ca84848461219d565b6124d684848484612a2f565b612515576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250c90613c64565b60405180910390fd5b50505050565b60606000821415612563576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612677565b600082905060005b6000821461259557808061257e90614203565b915050600a8261258e919061404a565b915061256b565b60008167ffffffffffffffff8111156125b1576125b0614396565b5b6040519080825280601f01601f1916602001820160405280156125e35781602001600182028036833780820191505090505b5090505b60008514612670576001826125fc919061407b565b9150600a8561260b919061427a565b60306126179190613ff4565b60f81b81838151811061262d5761262c614367565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612669919061404a565b94506125e7565b8093505050505b919050565b60606010805461268b906141a0565b80601f01602080910402602001604051908101604052809291908181526020018280546126b7906141a0565b80156127045780601f106126d957610100808354040283529160200191612704565b820191906000526020600020905b8154815290600101906020018083116126e757829003601f168201915b5050505050905090565b600080600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b81526004016127869190613a5b565b60206040518083038186803b15801561279e57600080fd5b505afa1580156127b2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127d69190613457565b73ffffffffffffffffffffffffffffffffffffffff1614156127fc57600191505061280a565b6128068484612bc6565b9150505b92915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000604051806080016040528060438152602001614afa6043913980519060200120826000015183602001518460400151805190602001206040516020016128c59493929190613b36565b604051602081830303815290604052805190602001209050919050565b60006128ec610f67565b826040516020016128fe929190613a24565b604051602081830303815290604052805190602001209050919050565b612926838383612c5a565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156129695761296481612c5f565b6129a8565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146129a7576129a68382612ca8565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129eb576129e681612e15565b612a2a565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612a2957612a288282612ee6565b5b5b505050565b6000612a508473ffffffffffffffffffffffffffffffffffffffff16612f65565b15612bb9578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a79611cd3565b8786866040518563ffffffff1660e01b8152600401612a9b9493929190613ab4565b602060405180830381600087803b158015612ab557600080fd5b505af1925050508015612ae657506040513d601f19601f82011682018060405250810190612ae3919061342a565b60015b612b69573d8060008114612b16576040519150601f19603f3d011682016040523d82523d6000602084013e612b1b565b606091505b50600081511415612b61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5890613c64565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612bbe565b600190505b949350505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612cb5846112ab565b612cbf919061407b565b9050600060076000848152602001908152602001600020549050818114612da4576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612e29919061407b565b9050600060096000848152602001908152602001600020549050600060088381548110612e5957612e58614367565b5b906000526020600020015490508060088381548110612e7b57612e7a614367565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612eca57612ec9614338565b5b6001900381819060005260206000200160009055905550505050565b6000612ef1836112ab565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b828054612f84906141a0565b90600052602060002090601f016020900481019282612fa65760008555612fed565b82601f10612fbf57805160ff1916838001178555612fed565b82800160010185558215612fed579182015b82811115612fec578251825591602001919060010190612fd1565b5b509050612ffa9190612ffe565b5090565b5b80821115613017576000816000905550600101612fff565b5090565b600061302e61302984613f44565b613f1f565b90508281526020810184848401111561304a576130496143ca565b5b61305584828561415e565b509392505050565b600061307061306b84613f75565b613f1f565b90508281526020810184848401111561308c5761308b6143ca565b5b61309784828561415e565b509392505050565b6000813590506130ae81614a58565b92915050565b6000813590506130c381614a6f565b92915050565b6000813590506130d881614a86565b92915050565b6000813590506130ed81614a9d565b92915050565b60008151905061310281614a9d565b92915050565b600082601f83011261311d5761311c6143c5565b5b813561312d84826020860161301b565b91505092915050565b60008151905061314581614ab4565b92915050565b600082601f8301126131605761315f6143c5565b5b813561317084826020860161305d565b91505092915050565b60008135905061318881614acb565b92915050565b60008135905061319d81614ae2565b92915050565b6000602082840312156131b9576131b86143d4565b5b60006131c78482850161309f565b91505092915050565b600080604083850312156131e7576131e66143d4565b5b60006131f58582860161309f565b92505060206132068582860161309f565b9150509250929050565b600080600060608486031215613229576132286143d4565b5b60006132378682870161309f565b93505060206132488682870161309f565b925050604061325986828701613179565b9150509250925092565b6000806000806080858703121561327d5761327c6143d4565b5b600061328b8782880161309f565b945050602061329c8782880161309f565b93505060406132ad87828801613179565b925050606085013567ffffffffffffffff8111156132ce576132cd6143cf565b5b6132da87828801613108565b91505092959194509250565b600080604083850312156132fd576132fc6143d4565b5b600061330b8582860161309f565b925050602061331c858286016130b4565b9150509250929050565b600080600080600060a08688031215613342576133416143d4565b5b60006133508882890161309f565b955050602086013567ffffffffffffffff811115613371576133706143cf565b5b61337d88828901613108565b945050604061338e888289016130c9565b935050606061339f888289016130c9565b92505060806133b08882890161318e565b9150509295509295909350565b600080604083850312156133d4576133d36143d4565b5b60006133e28582860161309f565b92505060206133f385828601613179565b9150509250929050565b600060208284031215613413576134126143d4565b5b6000613421848285016130de565b91505092915050565b6000602082840312156134405761343f6143d4565b5b600061344e848285016130f3565b91505092915050565b60006020828403121561346d5761346c6143d4565b5b600061347b84828501613136565b91505092915050565b60006020828403121561349a576134996143d4565b5b600082013567ffffffffffffffff8111156134b8576134b76143cf565b5b6134c48482850161314b565b91505092915050565b6000602082840312156134e3576134e26143d4565b5b60006134f184828501613179565b91505092915050565b613503816140c1565b82525050565b613512816140af565b82525050565b613529613524826140af565b61424c565b82525050565b613538816140d3565b82525050565b613547816140df565b82525050565b61355e613559826140df565b61425e565b82525050565b600061356f82613fa6565b6135798185613fbc565b935061358981856020860161416d565b613592816143d9565b840191505092915050565b60006135a882613fa6565b6135b28185613fcd565b93506135c281856020860161416d565b80840191505092915050565b60006135d982613fb1565b6135e38185613fd8565b93506135f381856020860161416d565b6135fc816143d9565b840191505092915050565b600061361282613fb1565b61361c8185613fe9565b935061362c81856020860161416d565b80840191505092915050565b6000613645601483613fd8565b9150613650826143f7565b602082019050919050565b6000613668600e83613fd8565b915061367382614420565b602082019050919050565b600061368b602b83613fd8565b915061369682614449565b604082019050919050565b60006136ae603283613fd8565b91506136b982614498565b604082019050919050565b60006136d1602683613fd8565b91506136dc826144e7565b604082019050919050565b60006136f4601c83613fd8565b91506136ff82614536565b602082019050919050565b6000613717601c83613fd8565b91506137228261455f565b602082019050919050565b600061373a600283613fe9565b915061374582614588565b600282019050919050565b600061375d602483613fd8565b9150613768826145b1565b604082019050919050565b6000613780601983613fd8565b915061378b82614600565b602082019050919050565b60006137a3602c83613fd8565b91506137ae82614629565b604082019050919050565b60006137c6602583613fd8565b91506137d182614678565b604082019050919050565b60006137e9603883613fd8565b91506137f4826146c7565b604082019050919050565b600061380c602a83613fd8565b915061381782614716565b604082019050919050565b600061382f602983613fd8565b915061383a82614765565b604082019050919050565b6000613852602083613fd8565b915061385d826147b4565b602082019050919050565b6000613875602c83613fd8565b9150613880826147dd565b604082019050919050565b6000613898602083613fd8565b91506138a38261482c565b602082019050919050565b60006138bb602983613fd8565b91506138c682614855565b604082019050919050565b60006138de602183613fd8565b91506138e9826148a4565b604082019050919050565b6000613901602f83613fd8565b915061390c826148f3565b604082019050919050565b6000613924602183613fd8565b915061392f82614942565b604082019050919050565b6000613947603183613fd8565b915061395282614991565b604082019050919050565b600061396a600883613fd8565b9150613975826149e0565b602082019050919050565b600061398d602c83613fd8565b915061399882614a09565b604082019050919050565b6139ac81614147565b82525050565b6139bb81614151565b82525050565b60006139cd828461359d565b915081905092915050565b60006139e4828561359d565b91506139f08284613518565b6014820191508190509392505050565b6000613a0c8285613607565b9150613a188284613607565b91508190509392505050565b6000613a2f8261372d565b9150613a3b828561354d565b602082019150613a4b828461354d565b6020820191508190509392505050565b6000602082019050613a706000830184613509565b92915050565b6000606082019050613a8b6000830186613509565b613a9860208301856134fa565b8181036040830152613aaa8184613564565b9050949350505050565b6000608082019050613ac96000830187613509565b613ad66020830186613509565b613ae360408301856139a3565b8181036060830152613af58184613564565b905095945050505050565b6000602082019050613b15600083018461352f565b92915050565b6000602082019050613b30600083018461353e565b92915050565b6000608082019050613b4b600083018761353e565b613b5860208301866139a3565b613b656040830185613509565b613b72606083018461353e565b95945050505050565b6000608082019050613b90600083018761353e565b613b9d60208301866139b2565b613baa604083018561353e565b613bb7606083018461353e565b95945050505050565b60006020820190508181036000830152613bda8184613564565b905092915050565b60006020820190508181036000830152613bfc81846135ce565b905092915050565b60006020820190508181036000830152613c1d81613638565b9050919050565b60006020820190508181036000830152613c3d8161365b565b9050919050565b60006020820190508181036000830152613c5d8161367e565b9050919050565b60006020820190508181036000830152613c7d816136a1565b9050919050565b60006020820190508181036000830152613c9d816136c4565b9050919050565b60006020820190508181036000830152613cbd816136e7565b9050919050565b60006020820190508181036000830152613cdd8161370a565b9050919050565b60006020820190508181036000830152613cfd81613750565b9050919050565b60006020820190508181036000830152613d1d81613773565b9050919050565b60006020820190508181036000830152613d3d81613796565b9050919050565b60006020820190508181036000830152613d5d816137b9565b9050919050565b60006020820190508181036000830152613d7d816137dc565b9050919050565b60006020820190508181036000830152613d9d816137ff565b9050919050565b60006020820190508181036000830152613dbd81613822565b9050919050565b60006020820190508181036000830152613ddd81613845565b9050919050565b60006020820190508181036000830152613dfd81613868565b9050919050565b60006020820190508181036000830152613e1d8161388b565b9050919050565b60006020820190508181036000830152613e3d816138ae565b9050919050565b60006020820190508181036000830152613e5d816138d1565b9050919050565b60006020820190508181036000830152613e7d816138f4565b9050919050565b60006020820190508181036000830152613e9d81613917565b9050919050565b60006020820190508181036000830152613ebd8161393a565b9050919050565b60006020820190508181036000830152613edd8161395d565b9050919050565b60006020820190508181036000830152613efd81613980565b9050919050565b6000602082019050613f1960008301846139a3565b92915050565b6000613f29613f3a565b9050613f3582826141d2565b919050565b6000604051905090565b600067ffffffffffffffff821115613f5f57613f5e614396565b5b613f68826143d9565b9050602081019050919050565b600067ffffffffffffffff821115613f9057613f8f614396565b5b613f99826143d9565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613fff82614147565b915061400a83614147565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561403f5761403e6142ab565b5b828201905092915050565b600061405582614147565b915061406083614147565b9250826140705761406f6142da565b5b828204905092915050565b600061408682614147565b915061409183614147565b9250828210156140a4576140a36142ab565b5b828203905092915050565b60006140ba82614127565b9050919050565b60006140cc82614127565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000614120826140af565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b8381101561418b578082015181840152602081019050614170565b8381111561419a576000848401525b50505050565b600060028204905060018216806141b857607f821691505b602082108114156141cc576141cb614309565b5b50919050565b6141db826143d9565b810181811067ffffffffffffffff821117156141fa576141f9614396565b5b80604052505050565b600061420e82614147565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614241576142406142ab565b5b600182019050919050565b600061425782614268565b9050919050565b6000819050919050565b6000614273826143ea565b9050919050565b600061428582614147565b915061429083614147565b9250826142a05761429f6142da565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f496e636f72726563742045544820416d6f756e74000000000000000000000000600082015250565b7f416c726561647920626f75676874000000000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f46756e6374696f6e2063616c6c206e6f74207375636365737366756c00000000600082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f1901000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360008201527f49474e4552000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f5369676e657220616e64207369676e617475726520646f206e6f74206d61746360008201527f6800000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f536f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b614a61816140af565b8114614a6c57600080fd5b50565b614a78816140d3565b8114614a8357600080fd5b50565b614a8f816140df565b8114614a9a57600080fd5b50565b614aa6816140e9565b8114614ab157600080fd5b50565b614abd81614115565b8114614ac857600080fd5b50565b614ad481614147565b8114614adf57600080fd5b50565b614aeb81614151565b8114614af657600080fd5b5056fe4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e617475726529a2646970667358221220a8a66f1ae8a5f80360536f37c12655c3dfdf94e26e2c54de5ccfa97bcaaf8f6d64736f6c63430008050033454950373132446f6d61696e28737472696e67206e616d652c737472696e672076657273696f6e2c6164647265737320766572696679696e67436f6e74726163742c627974657333322073616c74290000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001e68747470733a2f2f686578656c7a2e696f2f696d67732f486578656c7a2f0000

Deployed Bytecode

0x6080604052600436106101ed5760003560e01c806342842e0e1161010d57806395d89b41116100a0578063c7876ea41161006f578063c7876ea4146106f6578063c87b56dd14610721578063d547cfb71461075e578063e985e9c514610789578063f2fde38b146107c6576101ed565b806395d89b4114610650578063a22cb4651461067b578063adfdeef9146106a4578063b88d4fde146106cd576101ed565b806370a08231116100dc57806370a08231146105a8578063715018a6146105e5578063755edd17146105fc5780638da5cb5b14610625576101ed565b806342842e0e146104dc5780634f6ccce71461050557806355f804b3146105425780636352211e1461056b576101ed565b806318160ddd116101855780632d0335ab116101545780632d0335ab1461040c5780632f745c591461044957806332cb6b0c146104865780633408e470146104b1576101ed565b806318160ddd146103505780631e7269c51461037b57806320379ee5146103b857806323b872dd146103e3576101ed565b8063095ea7b3116101c1578063095ea7b3146102c25780630c53c51c146102eb5780630f7e59701461031b5780631249c58b14610346576101ed565b80629a9b7b146101f257806301ffc9a71461021d57806306fdde031461025a578063081812fc14610285575b600080fd5b3480156101fe57600080fd5b506102076107ef565b6040516102149190613f04565b60405180910390f35b34801561022957600080fd5b50610244600480360381019061023f91906133fd565b6107f5565b6040516102519190613b00565b60405180910390f35b34801561026657600080fd5b5061026f61086f565b60405161027c9190613be2565b60405180910390f35b34801561029157600080fd5b506102ac60048036038101906102a791906134cd565b610901565b6040516102b99190613a5b565b60405180910390f35b3480156102ce57600080fd5b506102e960048036038101906102e491906133bd565b610986565b005b61030560048036038101906103009190613326565b610a9e565b6040516103129190613bc0565b60405180910390f35b34801561032757600080fd5b50610330610d10565b60405161033d9190613be2565b60405180910390f35b61034e610d49565b005b34801561035c57600080fd5b50610365610f3a565b6040516103729190613f04565b60405180910390f35b34801561038757600080fd5b506103a2600480360381019061039d91906131a3565b610f47565b6040516103af9190613b00565b60405180910390f35b3480156103c457600080fd5b506103cd610f67565b6040516103da9190613b1b565b60405180910390f35b3480156103ef57600080fd5b5061040a60048036038101906104059190613210565b610f71565b005b34801561041857600080fd5b50610433600480360381019061042e91906131a3565b610fd1565b6040516104409190613f04565b60405180910390f35b34801561045557600080fd5b50610470600480360381019061046b91906133bd565b61101a565b60405161047d9190613f04565b60405180910390f35b34801561049257600080fd5b5061049b6110bf565b6040516104a89190613f04565b60405180910390f35b3480156104bd57600080fd5b506104c66110c5565b6040516104d39190613f04565b60405180910390f35b3480156104e857600080fd5b5061050360048036038101906104fe9190613210565b6110d2565b005b34801561051157600080fd5b5061052c600480360381019061052791906134cd565b6110f2565b6040516105399190613f04565b60405180910390f35b34801561054e57600080fd5b5061056960048036038101906105649190613484565b611163565b005b34801561057757600080fd5b50610592600480360381019061058d91906134cd565b6111f9565b60405161059f9190613a5b565b60405180910390f35b3480156105b457600080fd5b506105cf60048036038101906105ca91906131a3565b6112ab565b6040516105dc9190613f04565b60405180910390f35b3480156105f157600080fd5b506105fa611363565b005b34801561060857600080fd5b50610623600480360381019061061e91906131a3565b6113eb565b005b34801561063157600080fd5b5061063a611489565b6040516106479190613a5b565b60405180910390f35b34801561065c57600080fd5b506106656114b3565b6040516106729190613be2565b60405180910390f35b34801561068757600080fd5b506106a2600480360381019061069d91906132e6565b611545565b005b3480156106b057600080fd5b506106cb60048036038101906106c691906131a3565b6116c6565b005b3480156106d957600080fd5b506106f460048036038101906106ef9190613263565b611786565b005b34801561070257600080fd5b5061070b6117e8565b6040516107189190613f04565b60405180910390f35b34801561072d57600080fd5b50610748600480360381019061074391906134cd565b6117ee565b6040516107559190613be2565b60405180910390f35b34801561076a57600080fd5b50610773611870565b6040516107809190613be2565b60405180910390f35b34801561079557600080fd5b506107b060048036038101906107ab91906131d0565b61187f565b6040516107bd9190613b00565b60405180910390f35b3480156107d257600080fd5b506107ed60048036038101906107e891906131a3565b6119dc565b005b600f5481565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610868575061086782611b85565b5b9050919050565b60606000805461087e906141a0565b80601f01602080910402602001604051908101604052809291908181526020018280546108aa906141a0565b80156108f75780601f106108cc576101008083540402835291602001916108f7565b820191906000526020600020905b8154815290600101906020018083116108da57829003601f168201915b5050505050905090565b600061090c82611c67565b61094b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094290613de4565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610991826111f9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a02576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f990613e84565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a21611cd3565b73ffffffffffffffffffffffffffffffffffffffff161480610a505750610a4f81610a4a611cd3565b61187f565b5b610a8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8690613d64565b60405180910390fd5b610a998383611ce2565b505050565b606060006040518060600160405280600c60008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205481526020018873ffffffffffffffffffffffffffffffffffffffff168152602001878152509050610b218782878787611d9b565b610b60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5790613e44565b60405180910390fd5b610bb36001600c60008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ea490919063ffffffff16565b600c60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055507f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b873388604051610c2993929190613a76565b60405180910390a16000803073ffffffffffffffffffffffffffffffffffffffff16888a604051602001610c5e9291906139d8565b604051602081830303815290604052604051610c7a91906139c1565b6000604051808303816000865af19150503d8060008114610cb7576040519150601f19603f3d011682016040523d82523d6000602084013e610cbc565b606091505b509150915081610d01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf890613ca4565b60405180910390fd5b80935050505095945050505050565b6040518060400160405280600181526020017f310000000000000000000000000000000000000000000000000000000000000081525081565b6000610d53611eba565b90506012543414610d99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9090613c04565b60405180910390fd5b6011548110610ddd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd490613ec4565b60405180910390fd5b60136000610de9611cd3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610e71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6890613c24565b60405180910390fd5b600160136000610e7f611cd3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610ed8611ed7565b610ee9610ee3611cd3565b82611ef1565b610ef1611489565b73ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f19350505050158015610f36573d6000803e3d6000fd5b5050565b6000600880549050905090565b60136020528060005260406000206000915054906101000a900460ff1681565b6000600b54905090565b610f82610f7c611cd3565b826120bf565b610fc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb890613ea4565b60405180910390fd5b610fcc83838361219d565b505050565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000611025836112ab565b8210611066576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105d90613c44565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60115481565b6000804690508091505090565b6110ed83838360405180602001604052806000815250611786565b505050565b60006110fc610f3a565b821061113d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113490613ee4565b60405180910390fd5b6008828154811061115157611150614367565b5b90600052602060002001549050919050565b61116b611cd3565b73ffffffffffffffffffffffffffffffffffffffff16611189611489565b73ffffffffffffffffffffffffffffffffffffffff16146111df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d690613e04565b60405180910390fd5b80601090805190602001906111f5929190612f78565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156112a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129990613da4565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561131c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131390613d84565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61136b611cd3565b73ffffffffffffffffffffffffffffffffffffffff16611389611489565b73ffffffffffffffffffffffffffffffffffffffff16146113df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d690613e04565b60405180910390fd5b6113e960006123f9565b565b6113f3611cd3565b73ffffffffffffffffffffffffffffffffffffffff16611411611489565b73ffffffffffffffffffffffffffffffffffffffff1614611467576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145e90613e04565b60405180910390fd5b6000611471611eba565b905061147d8282611ef1565b611485611ed7565b5050565b6000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546114c2906141a0565b80601f01602080910402602001604051908101604052809291908181526020018280546114ee906141a0565b801561153b5780601f106115105761010080835404028352916020019161153b565b820191906000526020600020905b81548152906001019060200180831161151e57829003601f168201915b5050505050905090565b61154d611cd3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b290613d04565b60405180910390fd5b80600560006115c8611cd3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611675611cd3565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116ba9190613b00565b60405180910390a35050565b6116ce611cd3565b73ffffffffffffffffffffffffffffffffffffffff166116ec611489565b73ffffffffffffffffffffffffffffffffffffffff1614611742576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173990613e04565b60405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611797611791611cd3565b836120bf565b6117d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117cd90613ea4565b60405180910390fd5b6117e2848484846124bf565b50505050565b60125481565b60606117f982611c67565b611838576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182f90613e64565b60405180910390fd5b611840611870565b6118498361251b565b60405160200161185a929190613a00565b6040516020818303038152906040529050919050565b606061187a61267c565b905090565b600080600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141580156119b957508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b81526004016119519190613a5b565b60206040518083038186803b15801561196957600080fd5b505afa15801561197d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119a19190613457565b73ffffffffffffffffffffffffffffffffffffffff16145b156119c85760019150506119d6565b6119d2848461270e565b9150505b92915050565b6119e4611cd3565b73ffffffffffffffffffffffffffffffffffffffff16611a02611489565b73ffffffffffffffffffffffffffffffffffffffff1614611a58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4f90613e04565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ac8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abf90613c84565b60405180910390fd5b611ad1816123f9565b50565b60003073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415611b7e57600080368080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509050600080369050905073ffffffffffffffffffffffffffffffffffffffff818301511692505050611b82565b3390505b90565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611c5057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611c605750611c5f82612810565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6000611cdd611ad4565b905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611d55836111f9565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff161415611e0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0390613d44565b60405180910390fd5b6001611e1f611e1a8761287a565b6128e2565b83868660405160008152602001604052604051611e3f9493929190613b7b565b6020604051602081039080840390855afa158015611e61573d6000803e3d6000fd5b5050506020604051035173ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614905095945050505050565b60008183611eb29190613ff4565b905092915050565b6000611ed26001600f54611ea490919063ffffffff16565b905090565b600f6000815480929190611eea90614203565b9190505550565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5890613dc4565b60405180910390fd5b611f6a81611c67565b15611faa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa190613cc4565b60405180910390fd5b611fb66000838361291b565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120069190613ff4565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60006120ca82611c67565b612109576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210090613d24565b60405180910390fd5b6000612114836111f9565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061218357508373ffffffffffffffffffffffffffffffffffffffff1661216b84610901565b73ffffffffffffffffffffffffffffffffffffffff16145b806121945750612193818561187f565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166121bd826111f9565b73ffffffffffffffffffffffffffffffffffffffff1614612213576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220a90613e24565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612283576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227a90613ce4565b60405180910390fd5b61228e83838361291b565b612299600082611ce2565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122e9919061407b565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123409190613ff4565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6124ca84848461219d565b6124d684848484612a2f565b612515576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250c90613c64565b60405180910390fd5b50505050565b60606000821415612563576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612677565b600082905060005b6000821461259557808061257e90614203565b915050600a8261258e919061404a565b915061256b565b60008167ffffffffffffffff8111156125b1576125b0614396565b5b6040519080825280601f01601f1916602001820160405280156125e35781602001600182028036833780820191505090505b5090505b60008514612670576001826125fc919061407b565b9150600a8561260b919061427a565b60306126179190613ff4565b60f81b81838151811061262d5761262c614367565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612669919061404a565b94506125e7565b8093505050505b919050565b60606010805461268b906141a0565b80601f01602080910402602001604051908101604052809291908181526020018280546126b7906141a0565b80156127045780601f106126d957610100808354040283529160200191612704565b820191906000526020600020905b8154815290600101906020018083116126e757829003601f168201915b5050505050905090565b600080600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b81526004016127869190613a5b565b60206040518083038186803b15801561279e57600080fd5b505afa1580156127b2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127d69190613457565b73ffffffffffffffffffffffffffffffffffffffff1614156127fc57600191505061280a565b6128068484612bc6565b9150505b92915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000604051806080016040528060438152602001614afa6043913980519060200120826000015183602001518460400151805190602001206040516020016128c59493929190613b36565b604051602081830303815290604052805190602001209050919050565b60006128ec610f67565b826040516020016128fe929190613a24565b604051602081830303815290604052805190602001209050919050565b612926838383612c5a565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156129695761296481612c5f565b6129a8565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146129a7576129a68382612ca8565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129eb576129e681612e15565b612a2a565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612a2957612a288282612ee6565b5b5b505050565b6000612a508473ffffffffffffffffffffffffffffffffffffffff16612f65565b15612bb9578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a79611cd3565b8786866040518563ffffffff1660e01b8152600401612a9b9493929190613ab4565b602060405180830381600087803b158015612ab557600080fd5b505af1925050508015612ae657506040513d601f19601f82011682018060405250810190612ae3919061342a565b60015b612b69573d8060008114612b16576040519150601f19603f3d011682016040523d82523d6000602084013e612b1b565b606091505b50600081511415612b61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5890613c64565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612bbe565b600190505b949350505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612cb5846112ab565b612cbf919061407b565b9050600060076000848152602001908152602001600020549050818114612da4576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612e29919061407b565b9050600060096000848152602001908152602001600020549050600060088381548110612e5957612e58614367565b5b906000526020600020015490508060088381548110612e7b57612e7a614367565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612eca57612ec9614338565b5b6001900381819060005260206000200160009055905550505050565b6000612ef1836112ab565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b828054612f84906141a0565b90600052602060002090601f016020900481019282612fa65760008555612fed565b82601f10612fbf57805160ff1916838001178555612fed565b82800160010185558215612fed579182015b82811115612fec578251825591602001919060010190612fd1565b5b509050612ffa9190612ffe565b5090565b5b80821115613017576000816000905550600101612fff565b5090565b600061302e61302984613f44565b613f1f565b90508281526020810184848401111561304a576130496143ca565b5b61305584828561415e565b509392505050565b600061307061306b84613f75565b613f1f565b90508281526020810184848401111561308c5761308b6143ca565b5b61309784828561415e565b509392505050565b6000813590506130ae81614a58565b92915050565b6000813590506130c381614a6f565b92915050565b6000813590506130d881614a86565b92915050565b6000813590506130ed81614a9d565b92915050565b60008151905061310281614a9d565b92915050565b600082601f83011261311d5761311c6143c5565b5b813561312d84826020860161301b565b91505092915050565b60008151905061314581614ab4565b92915050565b600082601f8301126131605761315f6143c5565b5b813561317084826020860161305d565b91505092915050565b60008135905061318881614acb565b92915050565b60008135905061319d81614ae2565b92915050565b6000602082840312156131b9576131b86143d4565b5b60006131c78482850161309f565b91505092915050565b600080604083850312156131e7576131e66143d4565b5b60006131f58582860161309f565b92505060206132068582860161309f565b9150509250929050565b600080600060608486031215613229576132286143d4565b5b60006132378682870161309f565b93505060206132488682870161309f565b925050604061325986828701613179565b9150509250925092565b6000806000806080858703121561327d5761327c6143d4565b5b600061328b8782880161309f565b945050602061329c8782880161309f565b93505060406132ad87828801613179565b925050606085013567ffffffffffffffff8111156132ce576132cd6143cf565b5b6132da87828801613108565b91505092959194509250565b600080604083850312156132fd576132fc6143d4565b5b600061330b8582860161309f565b925050602061331c858286016130b4565b9150509250929050565b600080600080600060a08688031215613342576133416143d4565b5b60006133508882890161309f565b955050602086013567ffffffffffffffff811115613371576133706143cf565b5b61337d88828901613108565b945050604061338e888289016130c9565b935050606061339f888289016130c9565b92505060806133b08882890161318e565b9150509295509295909350565b600080604083850312156133d4576133d36143d4565b5b60006133e28582860161309f565b92505060206133f385828601613179565b9150509250929050565b600060208284031215613413576134126143d4565b5b6000613421848285016130de565b91505092915050565b6000602082840312156134405761343f6143d4565b5b600061344e848285016130f3565b91505092915050565b60006020828403121561346d5761346c6143d4565b5b600061347b84828501613136565b91505092915050565b60006020828403121561349a576134996143d4565b5b600082013567ffffffffffffffff8111156134b8576134b76143cf565b5b6134c48482850161314b565b91505092915050565b6000602082840312156134e3576134e26143d4565b5b60006134f184828501613179565b91505092915050565b613503816140c1565b82525050565b613512816140af565b82525050565b613529613524826140af565b61424c565b82525050565b613538816140d3565b82525050565b613547816140df565b82525050565b61355e613559826140df565b61425e565b82525050565b600061356f82613fa6565b6135798185613fbc565b935061358981856020860161416d565b613592816143d9565b840191505092915050565b60006135a882613fa6565b6135b28185613fcd565b93506135c281856020860161416d565b80840191505092915050565b60006135d982613fb1565b6135e38185613fd8565b93506135f381856020860161416d565b6135fc816143d9565b840191505092915050565b600061361282613fb1565b61361c8185613fe9565b935061362c81856020860161416d565b80840191505092915050565b6000613645601483613fd8565b9150613650826143f7565b602082019050919050565b6000613668600e83613fd8565b915061367382614420565b602082019050919050565b600061368b602b83613fd8565b915061369682614449565b604082019050919050565b60006136ae603283613fd8565b91506136b982614498565b604082019050919050565b60006136d1602683613fd8565b91506136dc826144e7565b604082019050919050565b60006136f4601c83613fd8565b91506136ff82614536565b602082019050919050565b6000613717601c83613fd8565b91506137228261455f565b602082019050919050565b600061373a600283613fe9565b915061374582614588565b600282019050919050565b600061375d602483613fd8565b9150613768826145b1565b604082019050919050565b6000613780601983613fd8565b915061378b82614600565b602082019050919050565b60006137a3602c83613fd8565b91506137ae82614629565b604082019050919050565b60006137c6602583613fd8565b91506137d182614678565b604082019050919050565b60006137e9603883613fd8565b91506137f4826146c7565b604082019050919050565b600061380c602a83613fd8565b915061381782614716565b604082019050919050565b600061382f602983613fd8565b915061383a82614765565b604082019050919050565b6000613852602083613fd8565b915061385d826147b4565b602082019050919050565b6000613875602c83613fd8565b9150613880826147dd565b604082019050919050565b6000613898602083613fd8565b91506138a38261482c565b602082019050919050565b60006138bb602983613fd8565b91506138c682614855565b604082019050919050565b60006138de602183613fd8565b91506138e9826148a4565b604082019050919050565b6000613901602f83613fd8565b915061390c826148f3565b604082019050919050565b6000613924602183613fd8565b915061392f82614942565b604082019050919050565b6000613947603183613fd8565b915061395282614991565b604082019050919050565b600061396a600883613fd8565b9150613975826149e0565b602082019050919050565b600061398d602c83613fd8565b915061399882614a09565b604082019050919050565b6139ac81614147565b82525050565b6139bb81614151565b82525050565b60006139cd828461359d565b915081905092915050565b60006139e4828561359d565b91506139f08284613518565b6014820191508190509392505050565b6000613a0c8285613607565b9150613a188284613607565b91508190509392505050565b6000613a2f8261372d565b9150613a3b828561354d565b602082019150613a4b828461354d565b6020820191508190509392505050565b6000602082019050613a706000830184613509565b92915050565b6000606082019050613a8b6000830186613509565b613a9860208301856134fa565b8181036040830152613aaa8184613564565b9050949350505050565b6000608082019050613ac96000830187613509565b613ad66020830186613509565b613ae360408301856139a3565b8181036060830152613af58184613564565b905095945050505050565b6000602082019050613b15600083018461352f565b92915050565b6000602082019050613b30600083018461353e565b92915050565b6000608082019050613b4b600083018761353e565b613b5860208301866139a3565b613b656040830185613509565b613b72606083018461353e565b95945050505050565b6000608082019050613b90600083018761353e565b613b9d60208301866139b2565b613baa604083018561353e565b613bb7606083018461353e565b95945050505050565b60006020820190508181036000830152613bda8184613564565b905092915050565b60006020820190508181036000830152613bfc81846135ce565b905092915050565b60006020820190508181036000830152613c1d81613638565b9050919050565b60006020820190508181036000830152613c3d8161365b565b9050919050565b60006020820190508181036000830152613c5d8161367e565b9050919050565b60006020820190508181036000830152613c7d816136a1565b9050919050565b60006020820190508181036000830152613c9d816136c4565b9050919050565b60006020820190508181036000830152613cbd816136e7565b9050919050565b60006020820190508181036000830152613cdd8161370a565b9050919050565b60006020820190508181036000830152613cfd81613750565b9050919050565b60006020820190508181036000830152613d1d81613773565b9050919050565b60006020820190508181036000830152613d3d81613796565b9050919050565b60006020820190508181036000830152613d5d816137b9565b9050919050565b60006020820190508181036000830152613d7d816137dc565b9050919050565b60006020820190508181036000830152613d9d816137ff565b9050919050565b60006020820190508181036000830152613dbd81613822565b9050919050565b60006020820190508181036000830152613ddd81613845565b9050919050565b60006020820190508181036000830152613dfd81613868565b9050919050565b60006020820190508181036000830152613e1d8161388b565b9050919050565b60006020820190508181036000830152613e3d816138ae565b9050919050565b60006020820190508181036000830152613e5d816138d1565b9050919050565b60006020820190508181036000830152613e7d816138f4565b9050919050565b60006020820190508181036000830152613e9d81613917565b9050919050565b60006020820190508181036000830152613ebd8161393a565b9050919050565b60006020820190508181036000830152613edd8161395d565b9050919050565b60006020820190508181036000830152613efd81613980565b9050919050565b6000602082019050613f1960008301846139a3565b92915050565b6000613f29613f3a565b9050613f3582826141d2565b919050565b6000604051905090565b600067ffffffffffffffff821115613f5f57613f5e614396565b5b613f68826143d9565b9050602081019050919050565b600067ffffffffffffffff821115613f9057613f8f614396565b5b613f99826143d9565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613fff82614147565b915061400a83614147565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561403f5761403e6142ab565b5b828201905092915050565b600061405582614147565b915061406083614147565b9250826140705761406f6142da565b5b828204905092915050565b600061408682614147565b915061409183614147565b9250828210156140a4576140a36142ab565b5b828203905092915050565b60006140ba82614127565b9050919050565b60006140cc82614127565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000614120826140af565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b8381101561418b578082015181840152602081019050614170565b8381111561419a576000848401525b50505050565b600060028204905060018216806141b857607f821691505b602082108114156141cc576141cb614309565b5b50919050565b6141db826143d9565b810181811067ffffffffffffffff821117156141fa576141f9614396565b5b80604052505050565b600061420e82614147565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614241576142406142ab565b5b600182019050919050565b600061425782614268565b9050919050565b6000819050919050565b6000614273826143ea565b9050919050565b600061428582614147565b915061429083614147565b9250826142a05761429f6142da565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f496e636f72726563742045544820416d6f756e74000000000000000000000000600082015250565b7f416c726561647920626f75676874000000000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f46756e6374696f6e2063616c6c206e6f74207375636365737366756c00000000600082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f1901000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360008201527f49474e4552000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f5369676e657220616e64207369676e617475726520646f206e6f74206d61746360008201527f6800000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f536f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b614a61816140af565b8114614a6c57600080fd5b50565b614a78816140d3565b8114614a8357600080fd5b50565b614a8f816140df565b8114614a9a57600080fd5b50565b614aa6816140e9565b8114614ab157600080fd5b50565b614abd81614115565b8114614ac857600080fd5b50565b614ad481614147565b8114614adf57600080fd5b50565b614aeb81614151565b8114614af657600080fd5b5056fe4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e617475726529a2646970667358221220a8a66f1ae8a5f80360536f37c12655c3dfdf94e26e2c54de5ccfa97bcaaf8f6d64736f6c63430008050033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001e68747470733a2f2f686578656c7a2e696f2f696d67732f486578656c7a2f0000

-----Decoded View---------------
Arg [0] : baseURI_ (string): https://hexelz.io/imgs/Hexelz/

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 000000000000000000000000000000000000000000000000000000000000001e
Arg [2] : 68747470733a2f2f686578656c7a2e696f2f696d67732f486578656c7a2f0000


Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.