Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 29 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer From | 14591787 | 956 days ago | IN | 0 ETH | 0.00594413 | ||||
Transfer From | 14562547 | 960 days ago | IN | 0 ETH | 0.00199528 | ||||
Withdraw ETH | 14561294 | 960 days ago | IN | 0 ETH | 0.00077973 | ||||
Set Approval For... | 14547994 | 963 days ago | IN | 0 ETH | 0.00287601 | ||||
Mint | 14542761 | 963 days ago | IN | 0.01 ETH | 0.00838561 | ||||
Mint | 14542274 | 963 days ago | IN | 0.01 ETH | 0.00779455 | ||||
Mint | 14541668 | 964 days ago | IN | 0.01 ETH | 0.01674853 | ||||
Mint | 14541663 | 964 days ago | IN | 0.01 ETH | 0.01705174 | ||||
Set Approval For... | 14541660 | 964 days ago | IN | 0 ETH | 0.00452135 | ||||
Mint | 14541649 | 964 days ago | IN | 0.01 ETH | 0.01225326 | ||||
Mint | 14541640 | 964 days ago | IN | 0.01 ETH | 0.01221301 | ||||
Mint | 14541640 | 964 days ago | IN | 0.01 ETH | 0.01221301 | ||||
Mint | 14541640 | 964 days ago | IN | 0.01 ETH | 0.01221301 | ||||
Mint | 14541635 | 964 days ago | IN | 0.01 ETH | 0.01111149 | ||||
Mint | 14541635 | 964 days ago | IN | 0.01 ETH | 0.01091649 | ||||
Mint | 14541634 | 964 days ago | IN | 0.01 ETH | 0.00997532 | ||||
Mint | 14541634 | 964 days ago | IN | 0.01 ETH | 0.00997532 | ||||
Mint | 14541634 | 964 days ago | IN | 0.01 ETH | 0.00997532 | ||||
Mint | 14541629 | 964 days ago | IN | 0.01 ETH | 0.010685 | ||||
Mint | 14541629 | 964 days ago | IN | 0.01 ETH | 0.010685 | ||||
Mint | 14541627 | 964 days ago | IN | 0.01 ETH | 0.0106137 | ||||
Mint | 14541627 | 964 days ago | IN | 0.01 ETH | 0.01045414 | ||||
Mint | 14541622 | 964 days ago | IN | 0.01 ETH | 0.00850338 | ||||
Mint | 14541621 | 964 days ago | IN | 0.01 ETH | 0.00799037 | ||||
Mint | 14541617 | 964 days ago | IN | 0.01 ETH | 0.00962061 |
Latest 1 internal transaction
Advanced mode:
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
14561294 | 960 days ago | 0.23 ETH |
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Name:
onmifrank
Compiler Version
v0.8.7+commit.e28d00a7
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity >=0.5.0; // File @openzeppelin/contracts/token/ERC20/[email protected] // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol) /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval( address indexed owner, address indexed spender, uint256 value ); } // File @openzeppelin/contracts/utils/introspection/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) /** * @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/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) /** * @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/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) /** * @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/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) /** * @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/[email protected] // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require( address(this).balance >= amount, "Address: insufficient balance" ); (bool success, ) = recipient.call{value: amount}(""); require( success, "Address: unable to send value, recipient may have reverted" ); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue( target, data, value, "Address: low-level call with value failed" ); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require( address(this).balance >= value, "Address: insufficient balance for call" ); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}( data ); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall( target, data, "Address: low-level static call failed" ); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall( target, data, "Address: low-level delegate call failed" ); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) /** * @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/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) /** * @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/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) /** * @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/[email protected] // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol) /** * @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 { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require( _isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved" ); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require( _isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved" ); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require( _exists(tokenId), "ERC721: operator query for nonexistent token" ); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(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); _afterTokenTransfer(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 from incorrect owner" ); 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); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received( _msgSender(), from, tokenId, _data ) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert( "ERC721: transfer to non ERC721Receiver implementer" ); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Burnable.sol) /** * @title ERC721 Burnable Token * @dev ERC721 Token that can be irreversibly burned (destroyed). */ abstract contract ERC721Burnable is Context, ERC721 { /** * @dev Burns `tokenId`. See {ERC721-_burn}. * * Requirements: * * - The caller must own `tokenId` or be an approved operator. */ function burn(uint256 tokenId) public virtual { //solhint-disable-next-line max-line-length require( _isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved" ); _burn(tokenId); } } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) /** * @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); /** * @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/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol) /** * @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/[email protected] // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require( newOwner != address(0), "Ownable: new owner is the zero address" ); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File contracts/interfaces/ILayerZeroReceiver.sol interface ILayerZeroReceiver { // @notice LayerZero endpoint will invoke this function to deliver the message on the destination // @param _srcChainId - the source endpoint identifier // @param _srcAddress - the source sending contract address from the source chain // @param _nonce - the ordered message nonce // @param _payload - the signed payload is the UA bytes has encoded to be sent function lzReceive( uint16 _srcChainId, bytes calldata _srcAddress, uint64 _nonce, bytes calldata _payload ) external; } // File contracts/interfaces/ILayerZeroUserApplicationConfig.sol interface ILayerZeroUserApplicationConfig { // @notice set the configuration of the LayerZero messaging library of the specified version // @param _version - messaging library version // @param _chainId - the chainId for the pending config change // @param _configType - type of configuration. every messaging library has its own convention. // @param _config - configuration in the bytes. can encode arbitrary content. function setConfig( uint16 _version, uint16 _chainId, uint256 _configType, bytes calldata _config ) external; // @notice set the send() LayerZero messaging library version to _version // @param _version - new messaging library version function setSendVersion(uint16 _version) external; // @notice set the lzReceive() LayerZero messaging library version to _version // @param _version - new messaging library version function setReceiveVersion(uint16 _version) external; // @notice Only when the UA needs to resume the message flow in blocking mode and clear the stored payload // @param _srcChainId - the chainId of the source chain // @param _srcAddress - the contract address of the source contract at the source chain function forceResumeReceive(uint16 _srcChainId, bytes calldata _srcAddress) external; } // File contracts/interfaces/ILayerZeroEndpoint.sol interface ILayerZeroEndpoint is ILayerZeroUserApplicationConfig { // @notice send a LayerZero message to the specified address at a LayerZero endpoint. // @param _dstChainId - the destination chain identifier // @param _destination - the address on destination chain (in bytes). address length/format may vary by chains // @param _payload - a custom bytes payload to send to the destination contract // @param _refundAddress - if the source transaction is cheaper than the amount of value passed, refund the additional amount to this address // @param _zroPaymentAddress - the address of the ZRO token holder who would pay for the transaction // @param _adapterParams - parameters for custom functionality. e.g. receive airdropped native gas from the relayer on destination function send( uint16 _dstChainId, bytes calldata _destination, bytes calldata _payload, address payable _refundAddress, address _zroPaymentAddress, bytes calldata _adapterParams ) external payable; // @notice used by the messaging library to publish verified payload // @param _srcChainId - the source chain identifier // @param _srcAddress - the source contract (as bytes) at the source chain // @param _dstAddress - the address on destination chain // @param _nonce - the unbound message ordering nonce // @param _gasLimit - the gas limit for external contract execution // @param _payload - verified payload to send to the destination contract function receivePayload( uint16 _srcChainId, bytes calldata _srcAddress, address _dstAddress, uint64 _nonce, uint256 _gasLimit, bytes calldata _payload ) external; // @notice get the inboundNonce of a receiver from a source chain which could be EVM or non-EVM chain // @param _srcChainId - the source chain identifier // @param _srcAddress - the source chain contract address function getInboundNonce(uint16 _srcChainId, bytes calldata _srcAddress) external view returns (uint64); // @notice get the outboundNonce from this source chain which, consequently, is always an EVM // @param _srcAddress - the source chain contract address function getOutboundNonce(uint16 _dstChainId, address _srcAddress) external view returns (uint64); // @notice gets a quote in source native gas, for the amount that send() requires to pay for message delivery // @param _dstChainId - the destination chain identifier // @param _userApplication - the user app address on this EVM chain // @param _payload - the custom message to send over LayerZero // @param _payInZRO - if false, user app pays the protocol fee in native token // @param _adapterParam - parameters for the adapter service, e.g. send some dust native token to dstChain function estimateFees( uint16 _dstChainId, address _userApplication, bytes calldata _payload, bool _payInZRO, bytes calldata _adapterParam ) external view returns (uint256 nativeFee, uint256 zroFee); // @notice get this Endpoint's immutable source identifier function getChainId() external view returns (uint16); // @notice the interface to retry failed message on this Endpoint destination // @param _srcChainId - the source chain identifier // @param _srcAddress - the source chain contract address // @param _payload - the payload to be retried function retryPayload( uint16 _srcChainId, bytes calldata _srcAddress, bytes calldata _payload ) external; // @notice query if any STORED payload (message blocking) at the endpoint. // @param _srcChainId - the source chain identifier // @param _srcAddress - the source chain contract address function hasStoredPayload(uint16 _srcChainId, bytes calldata _srcAddress) external view returns (bool); // @notice query if the _libraryAddress is valid for sending msgs. // @param _userApplication - the user app address on this EVM chain function getSendLibraryAddress(address _userApplication) external view returns (address); // @notice query if the _libraryAddress is valid for receiving msgs. // @param _userApplication - the user app address on this EVM chain function getReceiveLibraryAddress(address _userApplication) external view returns (address); // @notice query if the non-reentrancy guard for send() is on // @return true if the guard is on. false otherwise function isSendingPayload() external view returns (bool); // @notice query if the non-reentrancy guard for receive() is on // @return true if the guard is on. false otherwise function isReceivingPayload() external view returns (bool); // @notice get the configuration of the LayerZero messaging library of the specified version // @param _version - messaging library version // @param _chainId - the chainId for the pending config change // @param _userApplication - the contract address of the user application // @param _configType - type of configuration. every messaging library has its own convention. function getConfig( uint16 _version, uint16 _chainId, address _userApplication, uint256 _configType ) external view returns (bytes memory); // @notice get the send() LayerZero messaging library version // @param _userApplication - the contract address of the user application function getSendVersion(address _userApplication) external view returns (uint16); // @notice get the lzReceive() LayerZero messaging library version // @param _userApplication - the contract address of the user application function getReceiveVersion(address _userApplication) external view returns (uint16); } // File contracts/LayerZeroable.sol abstract contract LayerZeroable is Ownable, ILayerZeroReceiver, ILayerZeroUserApplicationConfig { ILayerZeroEndpoint public layerZeroEndpoint; mapping(uint16 => bytes) public remotes; uint256 public destGasAmount = 300000; function setLayerZeroEndpoint(address _layerZeroEndpoint) external onlyOwner { layerZeroEndpoint = ILayerZeroEndpoint(_layerZeroEndpoint); } function setRemote(uint16 _chainId, bytes calldata _remoteAddress) external onlyOwner { remotes[_chainId] = _remoteAddress; } function setConfig( uint16, /*_version*/ uint16 _chainId, uint256 _configType, bytes calldata _config ) external override onlyOwner { layerZeroEndpoint.setConfig( layerZeroEndpoint.getSendVersion(address(this)), _chainId, _configType, _config ); } function setSendVersion(uint16 version) external override onlyOwner { layerZeroEndpoint.setSendVersion(version); } function setReceiveVersion(uint16 version) external override onlyOwner { layerZeroEndpoint.setReceiveVersion(version); } function forceResumeReceive(uint16 _srcChainId, bytes calldata _srcAddress) external override onlyOwner { layerZeroEndpoint.forceResumeReceive(_srcChainId, _srcAddress); } function setDestGasAmount(uint256 _amount) external onlyOwner { destGasAmount = _amount; } function _bytesToAddress(bytes memory bys) internal pure returns (address addr) { assembly { addr := mload(add(bys, 20)) } } } // File contracts/Dojo.sol contract onmifrank is Ownable, ERC721Burnable, ERC721Enumerable, LayerZeroable { uint16 public mintedSupply = 0; uint256 public lastTokenId = 0; uint256 public price = 0.01 ether; uint256 public maxpertx = 1; string public constant BASE_URI = "ipfs://QmY3WAoZWeiRGNoTABmb4HHxorxQUGjTWiMkDUyVLW2Qmi/"; uint256 public constant MAX_SUPPLY = 500; constructor(uint256 _lastTokenId, address _layerZeroEndpoint) ERC721("omnifrank", "omnifrank") { lastTokenId = _lastTokenId; layerZeroEndpoint = ILayerZeroEndpoint(_layerZeroEndpoint); } fallback() external payable {} receive() external payable {} /* Only owner */ function withdrawTokens(address _tokenAddress) external onlyOwner { uint256 amount = IERC20(_tokenAddress).balanceOf(address(this)); IERC20(_tokenAddress).transfer(owner(), amount); } function withdrawETH() external onlyOwner { uint256 amount = address(this).balance; (bool success, ) = owner().call{value: amount}(""); require(success, "Failed to send Ether"); } /* Endpoint methods */ function lzReceive( uint16 _srcChainId, bytes memory _srcAddress, uint64, bytes memory _payload ) external override { require(msg.sender == address(layerZeroEndpoint)); require( _srcAddress.length == remotes[_srcChainId].length && keccak256(_srcAddress) == keccak256(remotes[_srcChainId]), "Invalid remote sender address. owner should call setRemote() to enable remote contract" ); // Decode payload (address to, uint256 tokenId) = abi.decode( _payload, (address, uint256) ); _safeMint(to, tokenId); } /* Public methods */ function _baseURI() internal pure override returns (string memory) { return BASE_URI; } function mint(uint8 numTokens) external payable { require((price * numTokens) <= msg.value, "Not enough amount sent."); require(mintedSupply < MAX_SUPPLY, "Max mint supply reached"); require(numTokens < 2, "1 omnifrank per TX MAX"); mintedSupply++; _safeMint(_msgSender(), ++lastTokenId); } function transferToChain( uint256 _tokenId, address _to, uint16 _chainId ) external payable { require(ownerOf(_tokenId) == _msgSender(), "Sender is not owner"); require(remotes[_chainId].length > 0, "Remote not configured"); _burn(_tokenId); bytes memory payload = abi.encode(_to, _tokenId); uint16 version = 1; bytes memory adapterParams = abi.encodePacked(version, destGasAmount); (uint256 messageFee, ) = layerZeroEndpoint.estimateFees( _chainId, _bytesToAddress(remotes[_chainId]), payload, false, adapterParams ); require( msg.value >= messageFee, "Insufficient amount to cover gas costs" ); layerZeroEndpoint.send{value: msg.value}( _chainId, remotes[_chainId], payload, payable(msg.sender), address(0x0), adapterParams ); } function estimateFee( uint256 _tokenId, address _to, uint16 _chainId ) external view returns (uint256 nativeFee, uint256 zroFee) { bytes memory payload = abi.encode(_to, _tokenId); uint16 version = 1; bytes memory adapterParams = abi.encodePacked(version, destGasAmount); return layerZeroEndpoint.estimateFees( _chainId, _bytesToAddress(remotes[_chainId]), payload, false, adapterParams ); } /* Overrides */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override(ERC721, ERC721Enumerable) { super._beforeTokenTransfer(from, to, tokenId); } function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721, ERC721Enumerable) returns (bool) { return super.supportsInterface(interfaceId); } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"_lastTokenId","type":"uint256"},{"internalType":"address","name":"_layerZeroEndpoint","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"BASE_URI","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"destGasAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint16","name":"_chainId","type":"uint16"}],"name":"estimateFee","outputs":[{"internalType":"uint256","name":"nativeFee","type":"uint256"},{"internalType":"uint256","name":"zroFee","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"}],"name":"forceResumeReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"layerZeroEndpoint","outputs":[{"internalType":"contract ILayerZeroEndpoint","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"lzReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxpertx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"numTokens","type":"uint8"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintedSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"remotes","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"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":"uint16","name":"","type":"uint16"},{"internalType":"uint16","name":"_chainId","type":"uint16"},{"internalType":"uint256","name":"_configType","type":"uint256"},{"internalType":"bytes","name":"_config","type":"bytes"}],"name":"setConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setDestGasAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_layerZeroEndpoint","type":"address"}],"name":"setLayerZeroEndpoint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"version","type":"uint16"}],"name":"setReceiveVersion","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_chainId","type":"uint16"},{"internalType":"bytes","name":"_remoteAddress","type":"bytes"}],"name":"setRemote","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"version","type":"uint16"}],"name":"setSendVersion","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"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint16","name":"_chainId","type":"uint16"}],"name":"transferToChain","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdrawETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenAddress","type":"address"}],"name":"withdrawTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
6080604052620493e0600d556000600e60006101000a81548161ffff021916908361ffff1602179055506000600f55662386f26fc1000060105560016011553480156200004b57600080fd5b506040516200606f3803806200606f83398181016040528101906200007191906200032d565b6040518060400160405280600981526020017f6f6d6e696672616e6b00000000000000000000000000000000000000000000008152506040518060400160405280600981526020017f6f6d6e696672616e6b00000000000000000000000000000000000000000000008152508160009080519060200190620000f59291906200024f565b5080600190805190602001906200010e9291906200024f565b50505062000131620001256200018160201b60201c565b6200018960201b60201c565b81600f8190555080600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505062000450565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200025d90620003b2565b90600052602060002090601f016020900481019282620002815760008555620002cd565b82601f106200029c57805160ff1916838001178555620002cd565b82800160010185558215620002cd579182015b82811115620002cc578251825591602001919060010190620002af565b5b509050620002dc9190620002e0565b5090565b5b80821115620002fb576000816000905550600101620002e1565b5090565b60008151905062000310816200041c565b92915050565b600081519050620003278162000436565b92915050565b6000806040838503121562000347576200034662000417565b5b6000620003578582860162000316565b92505060206200036a85828601620002ff565b9150509250929050565b6000620003818262000388565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006002820490506001821680620003cb57607f821691505b60208210811415620003e257620003e1620003e8565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b620004278162000374565b81146200043357600080fd5b50565b6200044181620003a8565b81146200044d57600080fd5b50565b615c0f80620004606000396000f3fe6080604052600436106102545760003560e01c80636ecd230611610139578063b88d4fde116100b6578063dbddb26a1161007a578063dbddb26a146108bc578063e086e5ec146108e7578063e985e9c5146108fe578063eff601101461093b578063f2fde38b14610966578063f84ddf0b1461098f5761025b565b8063b88d4fde146107d7578063c1bd8cf914610800578063c87b56dd1461082b578063cbed8b9c14610868578063db7e0c7e146108915761025b565b806395b9783c116100fd57806395b9783c146106f257806395d89b411461071b5780639d1f611314610746578063a035b1fe14610783578063a22cb465146107ae5761025b565b80636ecd23061461062e57806370a082311461064a578063715018a614610687578063780c81871461069e5780638da5cb5b146106c75761025b565b806323b872dd116101d257806342d65a8d1161019657806342d65a8d146105085780634946d6031461053157806349df728c1461054d5780634f6ccce714610576578063584c9ac6146105b35780636352211e146105f15761025b565b806323b872dd146104255780632f745c591461044e57806332cb6b0c1461048b57806342842e0e146104b657806342966c68146104df5761025b565b8063081812fc11610219578063081812fc14610342578063095ea7b31461037f57806310ddb137146103a857806318160ddd146103d157806320cdd0a1146103fc5761025b565b80621d35671461025d57806301ffc9a71461028657806306fdde03146102c357806307968db1146102ee57806307e0db17146103195761025b565b3661025b57005b005b34801561026957600080fd5b50610284600480360381019061027f9190613f6c565b6109ba565b005b34801561029257600080fd5b506102ad60048036038101906102a89190613e58565b610aec565b6040516102ba91906148e4565b60405180910390f35b3480156102cf57600080fd5b506102d8610afe565b6040516102e5919061493c565b60405180910390f35b3480156102fa57600080fd5b50610303610b90565b6040516103109190614921565b60405180910390f35b34801561032557600080fd5b50610340600480360381019061033b9190613eb2565b610bb6565b005b34801561034e57600080fd5b5061036960048036038101906103649190614093565b610cc2565b6040516103769190614854565b60405180910390f35b34801561038b57600080fd5b506103a660048036038101906103a19190613deb565b610d47565b005b3480156103b457600080fd5b506103cf60048036038101906103ca9190613eb2565b610e5f565b005b3480156103dd57600080fd5b506103e6610f6b565b6040516103f39190614e30565b60405180910390f35b34801561040857600080fd5b50610423600480360381019061041e9190613f0c565b610f78565b005b34801561043157600080fd5b5061044c60048036038101906104479190613cd5565b611024565b005b34801561045a57600080fd5b5061047560048036038101906104709190613deb565b611084565b6040516104829190614e30565b60405180910390f35b34801561049757600080fd5b506104a0611129565b6040516104ad9190614e30565b60405180910390f35b3480156104c257600080fd5b506104dd60048036038101906104d89190613cd5565b61112f565b005b3480156104eb57600080fd5b5061050660048036038101906105019190614093565b61114f565b005b34801561051457600080fd5b5061052f600480360381019061052a9190613f0c565b6111ab565b005b61054b600480360381019061054691906140ed565b6112bd565b005b34801561055957600080fd5b50610574600480360381019061056f9190613c28565b611663565b005b34801561058257600080fd5b5061059d60048036038101906105989190614093565b611805565b6040516105aa9190614e30565b60405180910390f35b3480156105bf57600080fd5b506105da60048036038101906105d591906140ed565b611876565b6040516105e8929190614e4b565b60405180910390f35b3480156105fd57600080fd5b5061061860048036038101906106139190614093565b611a3a565b6040516106259190614854565b60405180910390f35b61064860048036038101906106439190614180565b611aec565b005b34801561065657600080fd5b50610671600480360381019061066c9190613c28565b611c40565b60405161067e9190614e30565b60405180910390f35b34801561069357600080fd5b5061069c611cf8565b005b3480156106aa57600080fd5b506106c560048036038101906106c09190614093565b611d80565b005b3480156106d357600080fd5b506106dc611e06565b6040516106e99190614854565b60405180910390f35b3480156106fe57600080fd5b5061071960048036038101906107149190613c28565b611e30565b005b34801561072757600080fd5b50610730611ef0565b60405161073d919061493c565b60405180910390f35b34801561075257600080fd5b5061076d60048036038101906107689190613eb2565b611f82565b60405161077a91906148ff565b60405180910390f35b34801561078f57600080fd5b50610798612022565b6040516107a59190614e30565b60405180910390f35b3480156107ba57600080fd5b506107d560048036038101906107d09190613dab565b612028565b005b3480156107e357600080fd5b506107fe60048036038101906107f99190613d28565b61203e565b005b34801561080c57600080fd5b506108156120a0565b6040516108229190614cbe565b60405180910390f35b34801561083757600080fd5b50610852600480360381019061084d9190614093565b6120b4565b60405161085f919061493c565b60405180910390f35b34801561087457600080fd5b5061088f600480360381019061088a919061400b565b61215b565b005b34801561089d57600080fd5b506108a661231d565b6040516108b39190614e30565b60405180910390f35b3480156108c857600080fd5b506108d1612323565b6040516108de919061493c565b60405180910390f35b3480156108f357600080fd5b506108fc61233f565b005b34801561090a57600080fd5b5061092560048036038101906109209190613c95565b612477565b60405161093291906148e4565b60405180910390f35b34801561094757600080fd5b5061095061250b565b60405161095d9190614e30565b60405180910390f35b34801561097257600080fd5b5061098d60048036038101906109889190613c28565b612511565b005b34801561099b57600080fd5b506109a4612609565b6040516109b19190614e30565b60405180910390f35b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610a1457600080fd5b600c60008561ffff1661ffff1681526020019081526020016000208054610a3a9061516f565b90508351148015610a805750600c60008561ffff1661ffff168152602001908152602001600020604051610a6e91906147d8565b60405180910390208380519060200120145b610abf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab690614a3e565b60405180910390fd5b60008082806020019051810190610ad69190613c55565b91509150610ae4828261260f565b505050505050565b6000610af78261262d565b9050919050565b606060008054610b0d9061516f565b80601f0160208091040260200160405190810160405280929190818152602001828054610b399061516f565b8015610b865780601f10610b5b57610100808354040283529160200191610b86565b820191906000526020600020905b815481529060010190602001808311610b6957829003601f168201915b5050505050905090565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610bbe6126a7565b73ffffffffffffffffffffffffffffffffffffffff16610bdc611e06565b73ffffffffffffffffffffffffffffffffffffffff1614610c32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2990614b9e565b60405180910390fd5b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166307e0db17826040518263ffffffff1660e01b8152600401610c8d9190614cbe565b600060405180830381600087803b158015610ca757600080fd5b505af1158015610cbb573d6000803e3d6000fd5b5050505050565b6000610ccd826126af565b610d0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0390614b7e565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d5282611a3a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610dc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dba90614bde565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610de26126a7565b73ffffffffffffffffffffffffffffffffffffffff161480610e115750610e1081610e0b6126a7565b612477565b5b610e50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4790614afe565b60405180910390fd5b610e5a838361271b565b505050565b610e676126a7565b73ffffffffffffffffffffffffffffffffffffffff16610e85611e06565b73ffffffffffffffffffffffffffffffffffffffff1614610edb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed290614b9e565b60405180910390fd5b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166310ddb137826040518263ffffffff1660e01b8152600401610f369190614cbe565b600060405180830381600087803b158015610f5057600080fd5b505af1158015610f64573d6000803e3d6000fd5b5050505050565b6000600980549050905090565b610f806126a7565b73ffffffffffffffffffffffffffffffffffffffff16610f9e611e06565b73ffffffffffffffffffffffffffffffffffffffff1614610ff4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610feb90614b9e565b60405180910390fd5b8181600c60008661ffff1661ffff168152602001908152602001600020919061101e9291906139c3565b50505050565b61103561102f6126a7565b826127d4565b611074576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106b90614c1e565b60405180910390fd5b61107f8383836128b2565b505050565b600061108f83611c40565b82106110d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c79061499e565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6101f481565b61114a8383836040518060200160405280600081525061203e565b505050565b61116061115a6126a7565b826127d4565b61119f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119690614c7e565b60405180910390fd5b6111a881612b19565b50565b6111b36126a7565b73ffffffffffffffffffffffffffffffffffffffff166111d1611e06565b73ffffffffffffffffffffffffffffffffffffffff1614611227576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121e90614b9e565b60405180910390fd5b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166342d65a8d8484846040518463ffffffff1660e01b815260040161128693929190614d3a565b600060405180830381600087803b1580156112a057600080fd5b505af11580156112b4573d6000803e3d6000fd5b50505050505050565b6112c56126a7565b73ffffffffffffffffffffffffffffffffffffffff166112e484611a3a565b73ffffffffffffffffffffffffffffffffffffffff161461133a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133190614bfe565b60405180910390fd5b6000600c60008361ffff1661ffff16815260200190815260200160002080546113629061516f565b9050116113a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139b90614ade565b60405180910390fd5b6113ad83612b19565b600082846040516020016113c29291906148bb565b6040516020818303038152906040529050600060019050600081600d546040516020016113f0929190614828565b60405160208183030381529060405290506000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340a7bb10866114ee600c60008a61ffff1661ffff168152602001908152602001600020805461146b9061516f565b80601f01602080910402602001604051908101604052809291908181526020018280546114979061516f565b80156114e45780601f106114b9576101008083540402835291602001916114e4565b820191906000526020600020905b8154815290600101906020018083116114c757829003601f168201915b5050505050612c36565b876000876040518663ffffffff1660e01b8152600401611512959493929190614cd9565b604080518083038186803b15801561152957600080fd5b505afa15801561153d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115619190614140565b509050803410156115a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159e9061497e565b60405180910390fd5b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c58031003487600c60008a61ffff1661ffff16815260200190815260200160002088336000896040518863ffffffff1660e01b815260040161162896959493929190614d6c565b6000604051808303818588803b15801561164157600080fd5b505af1158015611655573d6000803e3d6000fd5b505050505050505050505050565b61166b6126a7565b73ffffffffffffffffffffffffffffffffffffffff16611689611e06565b73ffffffffffffffffffffffffffffffffffffffff16146116df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d690614b9e565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161171a9190614854565b60206040518083038186803b15801561173257600080fd5b505afa158015611746573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061176a91906140c0565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb611790611e06565b836040518363ffffffff1660e01b81526004016117ae9291906148bb565b602060405180830381600087803b1580156117c857600080fd5b505af11580156117dc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118009190613e2b565b505050565b600061180f610f6b565b8210611850576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184790614c5e565b60405180910390fd5b600982815481106118645761186361534f565b5b90600052602060002001549050919050565b6000806000848660405160200161188e9291906148bb565b6040516020818303038152906040529050600060019050600081600d546040516020016118bc929190614828565b6040516020818303038152906040529050600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340a7bb10876119b8600c60008b61ffff1661ffff16815260200190815260200160002080546119359061516f565b80601f01602080910402602001604051908101604052809291908181526020018280546119619061516f565b80156119ae5780601f10611983576101008083540402835291602001916119ae565b820191906000526020600020905b81548152906001019060200180831161199157829003601f168201915b5050505050612c36565b866000866040518663ffffffff1660e01b81526004016119dc959493929190614cd9565b604080518083038186803b1580156119f357600080fd5b505afa158015611a07573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a2b9190614140565b94509450505050935093915050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ae3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ada90614b3e565b60405180910390fd5b80915050919050565b348160ff16601054611afe9190614fb4565b1115611b3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3690614c3e565b60405180910390fd5b6101f4600e60009054906101000a900461ffff1661ffff1610611b97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8e9061495e565b60405180910390fd5b60028160ff1610611bdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd490614c9e565b60405180910390fd5b600e600081819054906101000a900461ffff1680929190611bfd906151d2565b91906101000a81548161ffff021916908361ffff16021790555050611c3d611c236126a7565b600f60008154611c32906151fd565b91905081905561260f565b50565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611cb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca890614b1e565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611d006126a7565b73ffffffffffffffffffffffffffffffffffffffff16611d1e611e06565b73ffffffffffffffffffffffffffffffffffffffff1614611d74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6b90614b9e565b60405180910390fd5b611d7e6000612c44565b565b611d886126a7565b73ffffffffffffffffffffffffffffffffffffffff16611da6611e06565b73ffffffffffffffffffffffffffffffffffffffff1614611dfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df390614b9e565b60405180910390fd5b80600d8190555050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611e386126a7565b73ffffffffffffffffffffffffffffffffffffffff16611e56611e06565b73ffffffffffffffffffffffffffffffffffffffff1614611eac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea390614b9e565b60405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b606060018054611eff9061516f565b80601f0160208091040260200160405190810160405280929190818152602001828054611f2b9061516f565b8015611f785780601f10611f4d57610100808354040283529160200191611f78565b820191906000526020600020905b815481529060010190602001808311611f5b57829003601f168201915b5050505050905090565b600c6020528060005260406000206000915090508054611fa19061516f565b80601f0160208091040260200160405190810160405280929190818152602001828054611fcd9061516f565b801561201a5780601f10611fef5761010080835404028352916020019161201a565b820191906000526020600020905b815481529060010190602001808311611ffd57829003601f168201915b505050505081565b60105481565b61203a6120336126a7565b8383612d0a565b5050565b61204f6120496126a7565b836127d4565b61208e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208590614c1e565b60405180910390fd5b61209a84848484612e77565b50505050565b600e60009054906101000a900461ffff1681565b60606120bf826126af565b6120fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f590614bbe565b60405180910390fd5b6000612108612ed3565b905060008151116121285760405180602001604052806000815250612153565b8061213284612ef3565b6040516020016121439291906147ef565b6040516020818303038152906040525b915050919050565b6121636126a7565b73ffffffffffffffffffffffffffffffffffffffff16612181611e06565b73ffffffffffffffffffffffffffffffffffffffff16146121d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ce90614b9e565b60405180910390fd5b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663cbed8b9c600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663096568f6306040518263ffffffff1660e01b81526004016122709190614854565b60206040518083038186803b15801561228857600080fd5b505afa15801561229c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122c09190613edf565b868686866040518663ffffffff1660e01b81526004016122e4959493929190614de2565b600060405180830381600087803b1580156122fe57600080fd5b505af1158015612312573d6000803e3d6000fd5b505050505050505050565b600d5481565b604051806060016040528060368152602001615ba46036913981565b6123476126a7565b73ffffffffffffffffffffffffffffffffffffffff16612365611e06565b73ffffffffffffffffffffffffffffffffffffffff16146123bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b290614b9e565b60405180910390fd5b600047905060006123ca611e06565b73ffffffffffffffffffffffffffffffffffffffff16826040516123ed90614813565b60006040518083038185875af1925050503d806000811461242a576040519150601f19603f3d011682016040523d82523d6000602084013e61242f565b606091505b5050905080612473576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246a90614a5e565b60405180910390fd5b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60115481565b6125196126a7565b73ffffffffffffffffffffffffffffffffffffffff16612537611e06565b73ffffffffffffffffffffffffffffffffffffffff161461258d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258490614b9e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156125fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f4906149de565b60405180910390fd5b61260681612c44565b50565b600f5481565b612629828260405180602001604052806000815250613054565b5050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806126a0575061269f826130af565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661278e83611a3a565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006127df826126af565b61281e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281590614abe565b60405180910390fd5b600061282983611a3a565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061289857508373ffffffffffffffffffffffffffffffffffffffff1661288084610cc2565b73ffffffffffffffffffffffffffffffffffffffff16145b806128a957506128a88185612477565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166128d282611a3a565b73ffffffffffffffffffffffffffffffffffffffff1614612928576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291f906149fe565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612998576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161298f90614a7e565b60405180910390fd5b6129a3838383613191565b6129ae60008261271b565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129fe919061500e565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a559190614f2d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b148383836131a1565b505050565b6000612b2482611a3a565b9050612b3281600084613191565b612b3d60008361271b565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b8d919061500e565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c32816000846131a1565b5050565b600060148201519050919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612d79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d7090614a9e565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612e6a91906148e4565b60405180910390a3505050565b612e828484846128b2565b612e8e848484846131a6565b612ecd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ec4906149be565b60405180910390fd5b50505050565b6060604051806060016040528060368152602001615ba460369139905090565b60606000821415612f3b576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061304f565b600082905060005b60008214612f6d578080612f56906151fd565b915050600a82612f669190614f83565b9150612f43565b60008167ffffffffffffffff811115612f8957612f8861537e565b5b6040519080825280601f01601f191660200182016040528015612fbb5781602001600182028036833780820191505090505b5090505b6000851461304857600182612fd4919061500e565b9150600a85612fe39190615262565b6030612fef9190614f2d565b60f81b8183815181106130055761300461534f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856130419190614f83565b9450612fbf565b8093505050505b919050565b61305e838361333d565b61306b60008484846131a6565b6130aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130a1906149be565b60405180910390fd5b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061317a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061318a575061318982613517565b5b9050919050565b61319c838383613581565b505050565b505050565b60006131c78473ffffffffffffffffffffffffffffffffffffffff16613695565b15613330578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026131f06126a7565b8786866040518563ffffffff1660e01b8152600401613212949392919061486f565b602060405180830381600087803b15801561322c57600080fd5b505af192505050801561325d57506040513d601f19601f8201168201806040525081019061325a9190613e85565b60015b6132e0573d806000811461328d576040519150601f19603f3d011682016040523d82523d6000602084013e613292565b606091505b506000815114156132d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132cf906149be565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613335565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156133ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133a490614b5e565b60405180910390fd5b6133b6816126af565b156133f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133ed90614a1e565b60405180910390fd5b61340260008383613191565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546134529190614f2d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613513600083836131a1565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61358c8383836136b8565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156135cf576135ca816136bd565b61360e565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461360d5761360c8382613706565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156136515761364c81613873565b613690565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461368f5761368e8282613944565b5b5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161371384611c40565b61371d919061500e565b9050600060086000848152602001908152602001600020549050818114613802576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600980549050613887919061500e565b90506000600a60008481526020019081526020016000205490506000600983815481106138b7576138b661534f565b5b9060005260206000200154905080600983815481106138d9576138d861534f565b5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a600085815260200190815260200160002060009055600980548061392857613927615320565b5b6001900381819060005260206000200160009055905550505050565b600061394f83611c40565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b8280546139cf9061516f565b90600052602060002090601f0160209004810192826139f15760008555613a38565b82601f10613a0a57803560ff1916838001178555613a38565b82800160010185558215613a38579182015b82811115613a37578235825591602001919060010190613a1c565b5b509050613a459190613a49565b5090565b5b80821115613a62576000816000905550600101613a4a565b5090565b6000613a79613a7484614e99565b614e74565b905082815260208101848484011115613a9557613a946153bc565b5b613aa084828561512d565b509392505050565b600081359050613ab781615aeb565b92915050565b600081519050613acc81615b02565b92915050565b600081359050613ae181615b19565b92915050565b600081519050613af681615b19565b92915050565b600081359050613b0b81615b30565b92915050565b600081519050613b2081615b30565b92915050565b60008083601f840112613b3c57613b3b6153b2565b5b8235905067ffffffffffffffff811115613b5957613b586153ad565b5b602083019150836001820283011115613b7557613b746153b7565b5b9250929050565b600082601f830112613b9157613b906153b2565b5b8135613ba1848260208601613a66565b91505092915050565b600081359050613bb981615b47565b92915050565b600081519050613bce81615b47565b92915050565b600081359050613be381615b5e565b92915050565b600081519050613bf881615b5e565b92915050565b600081359050613c0d81615b75565b92915050565b600081359050613c2281615b8c565b92915050565b600060208284031215613c3e57613c3d6153c6565b5b6000613c4c84828501613aa8565b91505092915050565b60008060408385031215613c6c57613c6b6153c6565b5b6000613c7a85828601613abd565b9250506020613c8b85828601613be9565b9150509250929050565b60008060408385031215613cac57613cab6153c6565b5b6000613cba85828601613aa8565b9250506020613ccb85828601613aa8565b9150509250929050565b600080600060608486031215613cee57613ced6153c6565b5b6000613cfc86828701613aa8565b9350506020613d0d86828701613aa8565b9250506040613d1e86828701613bd4565b9150509250925092565b60008060008060808587031215613d4257613d416153c6565b5b6000613d5087828801613aa8565b9450506020613d6187828801613aa8565b9350506040613d7287828801613bd4565b925050606085013567ffffffffffffffff811115613d9357613d926153c1565b5b613d9f87828801613b7c565b91505092959194509250565b60008060408385031215613dc257613dc16153c6565b5b6000613dd085828601613aa8565b9250506020613de185828601613ad2565b9150509250929050565b60008060408385031215613e0257613e016153c6565b5b6000613e1085828601613aa8565b9250506020613e2185828601613bd4565b9150509250929050565b600060208284031215613e4157613e406153c6565b5b6000613e4f84828501613ae7565b91505092915050565b600060208284031215613e6e57613e6d6153c6565b5b6000613e7c84828501613afc565b91505092915050565b600060208284031215613e9b57613e9a6153c6565b5b6000613ea984828501613b11565b91505092915050565b600060208284031215613ec857613ec76153c6565b5b6000613ed684828501613baa565b91505092915050565b600060208284031215613ef557613ef46153c6565b5b6000613f0384828501613bbf565b91505092915050565b600080600060408486031215613f2557613f246153c6565b5b6000613f3386828701613baa565b935050602084013567ffffffffffffffff811115613f5457613f536153c1565b5b613f6086828701613b26565b92509250509250925092565b60008060008060808587031215613f8657613f856153c6565b5b6000613f9487828801613baa565b945050602085013567ffffffffffffffff811115613fb557613fb46153c1565b5b613fc187828801613b7c565b9350506040613fd287828801613bfe565b925050606085013567ffffffffffffffff811115613ff357613ff26153c1565b5b613fff87828801613b7c565b91505092959194509250565b600080600080600060808688031215614027576140266153c6565b5b600061403588828901613baa565b955050602061404688828901613baa565b945050604061405788828901613bd4565b935050606086013567ffffffffffffffff811115614078576140776153c1565b5b61408488828901613b26565b92509250509295509295909350565b6000602082840312156140a9576140a86153c6565b5b60006140b784828501613bd4565b91505092915050565b6000602082840312156140d6576140d56153c6565b5b60006140e484828501613be9565b91505092915050565b600080600060608486031215614106576141056153c6565b5b600061411486828701613bd4565b935050602061412586828701613aa8565b925050604061413686828701613baa565b9150509250925092565b60008060408385031215614157576141566153c6565b5b600061416585828601613be9565b925050602061417685828601613be9565b9150509250929050565b600060208284031215614196576141956153c6565b5b60006141a484828501613c13565b91505092915050565b6141b681615054565b82525050565b6141c581615042565b82525050565b6141d481615066565b82525050565b60006141e68385614ef5565b93506141f383858461512d565b6141fc836153cb565b840190509392505050565b600061421282614edf565b61421c8185614ef5565b935061422c81856020860161513c565b614235816153cb565b840191505092915050565b6000815461424d8161516f565b6142578186614ef5565b945060018216600081146142725760018114614284576142b7565b60ff19831686526020860193506142b7565b61428d85614eca565b60005b838110156142af57815481890152600182019150602081019050614290565b808801955050505b50505092915050565b600081546142cd8161516f565b6142d78186614f06565b945060018216600081146142f2576001811461430357614336565b60ff19831686528186019350614336565b61430c85614eca565b60005b8381101561432e5781548189015260018201915060208101905061430f565b838801955050505b50505092915050565b614348816150f7565b82525050565b600061435982614eea565b6143638185614f11565b935061437381856020860161513c565b61437c816153cb565b840191505092915050565b600061439282614eea565b61439c8185614f22565b93506143ac81856020860161513c565b80840191505092915050565b60006143c5601783614f11565b91506143d0826153e9565b602082019050919050565b60006143e8602683614f11565b91506143f382615412565b604082019050919050565b600061440b602b83614f11565b915061441682615461565b604082019050919050565b600061442e603283614f11565b9150614439826154b0565b604082019050919050565b6000614451602683614f11565b915061445c826154ff565b604082019050919050565b6000614474602583614f11565b915061447f8261554e565b604082019050919050565b6000614497601c83614f11565b91506144a28261559d565b602082019050919050565b60006144ba605683614f11565b91506144c5826155c6565b606082019050919050565b60006144dd601483614f11565b91506144e88261563b565b602082019050919050565b6000614500602483614f11565b915061450b82615664565b604082019050919050565b6000614523601983614f11565b915061452e826156b3565b602082019050919050565b6000614546602c83614f11565b9150614551826156dc565b604082019050919050565b6000614569601583614f11565b91506145748261572b565b602082019050919050565b600061458c603883614f11565b915061459782615754565b604082019050919050565b60006145af602a83614f11565b91506145ba826157a3565b604082019050919050565b60006145d2602983614f11565b91506145dd826157f2565b604082019050919050565b60006145f5602083614f11565b915061460082615841565b602082019050919050565b6000614618602c83614f11565b91506146238261586a565b604082019050919050565b600061463b602083614f11565b9150614646826158b9565b602082019050919050565b600061465e602f83614f11565b9150614669826158e2565b604082019050919050565b6000614681602183614f11565b915061468c82615931565b604082019050919050565b60006146a4601383614f11565b91506146af82615980565b602082019050919050565b60006146c7600083614f06565b91506146d2826159a9565b600082019050919050565b60006146ea603183614f11565b91506146f5826159ac565b604082019050919050565b600061470d601783614f11565b9150614718826159fb565b602082019050919050565b6000614730602c83614f11565b915061473b82615a24565b604082019050919050565b6000614753603083614f11565b915061475e82615a73565b604082019050919050565b6000614776601683614f11565b915061478182615ac2565b602082019050919050565b6147958161509e565b82525050565b6147ac6147a78261509e565b615246565b82525050565b6147bb816150cc565b82525050565b6147d26147cd826150cc565b615258565b82525050565b60006147e482846142c0565b915081905092915050565b60006147fb8285614387565b91506148078284614387565b91508190509392505050565b600061481e826146ba565b9150819050919050565b6000614834828561479b565b60028201915061484482846147c1565b6020820191508190509392505050565b600060208201905061486960008301846141bc565b92915050565b600060808201905061488460008301876141bc565b61489160208301866141bc565b61489e60408301856147b2565b81810360608301526148b08184614207565b905095945050505050565b60006040820190506148d060008301856141bc565b6148dd60208301846147b2565b9392505050565b60006020820190506148f960008301846141cb565b92915050565b600060208201905081810360008301526149198184614207565b905092915050565b6000602082019050614936600083018461433f565b92915050565b60006020820190508181036000830152614956818461434e565b905092915050565b60006020820190508181036000830152614977816143b8565b9050919050565b60006020820190508181036000830152614997816143db565b9050919050565b600060208201905081810360008301526149b7816143fe565b9050919050565b600060208201905081810360008301526149d781614421565b9050919050565b600060208201905081810360008301526149f781614444565b9050919050565b60006020820190508181036000830152614a1781614467565b9050919050565b60006020820190508181036000830152614a378161448a565b9050919050565b60006020820190508181036000830152614a57816144ad565b9050919050565b60006020820190508181036000830152614a77816144d0565b9050919050565b60006020820190508181036000830152614a97816144f3565b9050919050565b60006020820190508181036000830152614ab781614516565b9050919050565b60006020820190508181036000830152614ad781614539565b9050919050565b60006020820190508181036000830152614af78161455c565b9050919050565b60006020820190508181036000830152614b178161457f565b9050919050565b60006020820190508181036000830152614b37816145a2565b9050919050565b60006020820190508181036000830152614b57816145c5565b9050919050565b60006020820190508181036000830152614b77816145e8565b9050919050565b60006020820190508181036000830152614b978161460b565b9050919050565b60006020820190508181036000830152614bb78161462e565b9050919050565b60006020820190508181036000830152614bd781614651565b9050919050565b60006020820190508181036000830152614bf781614674565b9050919050565b60006020820190508181036000830152614c1781614697565b9050919050565b60006020820190508181036000830152614c37816146dd565b9050919050565b60006020820190508181036000830152614c5781614700565b9050919050565b60006020820190508181036000830152614c7781614723565b9050919050565b60006020820190508181036000830152614c9781614746565b9050919050565b60006020820190508181036000830152614cb781614769565b9050919050565b6000602082019050614cd3600083018461478c565b92915050565b600060a082019050614cee600083018861478c565b614cfb60208301876141bc565b8181036040830152614d0d8186614207565b9050614d1c60608301856141cb565b8181036080830152614d2e8184614207565b90509695505050505050565b6000604082019050614d4f600083018661478c565b8181036020830152614d628184866141da565b9050949350505050565b600060c082019050614d81600083018961478c565b8181036020830152614d938188614240565b90508181036040830152614da78187614207565b9050614db660608301866141ad565b614dc360808301856141bc565b81810360a0830152614dd58184614207565b9050979650505050505050565b6000608082019050614df7600083018861478c565b614e04602083018761478c565b614e1160408301866147b2565b8181036060830152614e248184866141da565b90509695505050505050565b6000602082019050614e4560008301846147b2565b92915050565b6000604082019050614e6060008301856147b2565b614e6d60208301846147b2565b9392505050565b6000614e7e614e8f565b9050614e8a82826151a1565b919050565b6000604051905090565b600067ffffffffffffffff821115614eb457614eb361537e565b5b614ebd826153cb565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614f38826150cc565b9150614f43836150cc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614f7857614f77615293565b5b828201905092915050565b6000614f8e826150cc565b9150614f99836150cc565b925082614fa957614fa86152c2565b5b828204905092915050565b6000614fbf826150cc565b9150614fca836150cc565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561500357615002615293565b5b828202905092915050565b6000615019826150cc565b9150615024836150cc565b92508282101561503757615036615293565b5b828203905092915050565b600061504d826150ac565b9050919050565b600061505f826150ac565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b600060ff82169050919050565b600061510282615109565b9050919050565b60006151148261511b565b9050919050565b6000615126826150ac565b9050919050565b82818337600083830152505050565b60005b8381101561515a57808201518184015260208101905061513f565b83811115615169576000848401525b50505050565b6000600282049050600182168061518757607f821691505b6020821081141561519b5761519a6152f1565b5b50919050565b6151aa826153cb565b810181811067ffffffffffffffff821117156151c9576151c861537e565b5b80604052505050565b60006151dd8261509e565b915061ffff8214156151f2576151f1615293565b5b600182019050919050565b6000615208826150cc565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561523b5761523a615293565b5b600182019050919050565b6000615251826153dc565b9050919050565b6000819050919050565b600061526d826150cc565b9150615278836150cc565b925082615288576152876152c2565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160f01b9050919050565b7f4d6178206d696e7420737570706c792072656163686564000000000000000000600082015250565b7f496e73756666696369656e7420616d6f756e7420746f20636f7665722067617360008201527f20636f7374730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f496e76616c69642072656d6f74652073656e64657220616464726573732e206f60008201527f776e65722073686f756c642063616c6c2073657452656d6f7465282920746f2060208201527f656e61626c652072656d6f746520636f6e747261637400000000000000000000604082015250565b7f4661696c656420746f2073656e64204574686572000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f52656d6f7465206e6f7420636f6e666967757265640000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f53656e646572206973206e6f74206f776e657200000000000000000000000000600082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820616d6f756e742073656e742e000000000000000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b7f31206f6d6e696672616e6b20706572205458204d415800000000000000000000600082015250565b615af481615042565b8114615aff57600080fd5b50565b615b0b81615054565b8114615b1657600080fd5b50565b615b2281615066565b8114615b2d57600080fd5b50565b615b3981615072565b8114615b4457600080fd5b50565b615b508161509e565b8114615b5b57600080fd5b50565b615b67816150cc565b8114615b7257600080fd5b50565b615b7e816150d6565b8114615b8957600080fd5b50565b615b95816150ea565b8114615ba057600080fd5b5056fe697066733a2f2f516d593357416f5a57656952474e6f5441426d62344848786f72785155476a5457694d6b445579564c5732516d692fa2646970667358221220dc3cfb96d24e21a202c32cc514f73fdb3d2db386b7bd305b0b34883e79e40ad064736f6c63430008070033000000000000000000000000000000000000000000000000000000000000000000000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd675
Deployed Bytecode
0x6080604052600436106102545760003560e01c80636ecd230611610139578063b88d4fde116100b6578063dbddb26a1161007a578063dbddb26a146108bc578063e086e5ec146108e7578063e985e9c5146108fe578063eff601101461093b578063f2fde38b14610966578063f84ddf0b1461098f5761025b565b8063b88d4fde146107d7578063c1bd8cf914610800578063c87b56dd1461082b578063cbed8b9c14610868578063db7e0c7e146108915761025b565b806395b9783c116100fd57806395b9783c146106f257806395d89b411461071b5780639d1f611314610746578063a035b1fe14610783578063a22cb465146107ae5761025b565b80636ecd23061461062e57806370a082311461064a578063715018a614610687578063780c81871461069e5780638da5cb5b146106c75761025b565b806323b872dd116101d257806342d65a8d1161019657806342d65a8d146105085780634946d6031461053157806349df728c1461054d5780634f6ccce714610576578063584c9ac6146105b35780636352211e146105f15761025b565b806323b872dd146104255780632f745c591461044e57806332cb6b0c1461048b57806342842e0e146104b657806342966c68146104df5761025b565b8063081812fc11610219578063081812fc14610342578063095ea7b31461037f57806310ddb137146103a857806318160ddd146103d157806320cdd0a1146103fc5761025b565b80621d35671461025d57806301ffc9a71461028657806306fdde03146102c357806307968db1146102ee57806307e0db17146103195761025b565b3661025b57005b005b34801561026957600080fd5b50610284600480360381019061027f9190613f6c565b6109ba565b005b34801561029257600080fd5b506102ad60048036038101906102a89190613e58565b610aec565b6040516102ba91906148e4565b60405180910390f35b3480156102cf57600080fd5b506102d8610afe565b6040516102e5919061493c565b60405180910390f35b3480156102fa57600080fd5b50610303610b90565b6040516103109190614921565b60405180910390f35b34801561032557600080fd5b50610340600480360381019061033b9190613eb2565b610bb6565b005b34801561034e57600080fd5b5061036960048036038101906103649190614093565b610cc2565b6040516103769190614854565b60405180910390f35b34801561038b57600080fd5b506103a660048036038101906103a19190613deb565b610d47565b005b3480156103b457600080fd5b506103cf60048036038101906103ca9190613eb2565b610e5f565b005b3480156103dd57600080fd5b506103e6610f6b565b6040516103f39190614e30565b60405180910390f35b34801561040857600080fd5b50610423600480360381019061041e9190613f0c565b610f78565b005b34801561043157600080fd5b5061044c60048036038101906104479190613cd5565b611024565b005b34801561045a57600080fd5b5061047560048036038101906104709190613deb565b611084565b6040516104829190614e30565b60405180910390f35b34801561049757600080fd5b506104a0611129565b6040516104ad9190614e30565b60405180910390f35b3480156104c257600080fd5b506104dd60048036038101906104d89190613cd5565b61112f565b005b3480156104eb57600080fd5b5061050660048036038101906105019190614093565b61114f565b005b34801561051457600080fd5b5061052f600480360381019061052a9190613f0c565b6111ab565b005b61054b600480360381019061054691906140ed565b6112bd565b005b34801561055957600080fd5b50610574600480360381019061056f9190613c28565b611663565b005b34801561058257600080fd5b5061059d60048036038101906105989190614093565b611805565b6040516105aa9190614e30565b60405180910390f35b3480156105bf57600080fd5b506105da60048036038101906105d591906140ed565b611876565b6040516105e8929190614e4b565b60405180910390f35b3480156105fd57600080fd5b5061061860048036038101906106139190614093565b611a3a565b6040516106259190614854565b60405180910390f35b61064860048036038101906106439190614180565b611aec565b005b34801561065657600080fd5b50610671600480360381019061066c9190613c28565b611c40565b60405161067e9190614e30565b60405180910390f35b34801561069357600080fd5b5061069c611cf8565b005b3480156106aa57600080fd5b506106c560048036038101906106c09190614093565b611d80565b005b3480156106d357600080fd5b506106dc611e06565b6040516106e99190614854565b60405180910390f35b3480156106fe57600080fd5b5061071960048036038101906107149190613c28565b611e30565b005b34801561072757600080fd5b50610730611ef0565b60405161073d919061493c565b60405180910390f35b34801561075257600080fd5b5061076d60048036038101906107689190613eb2565b611f82565b60405161077a91906148ff565b60405180910390f35b34801561078f57600080fd5b50610798612022565b6040516107a59190614e30565b60405180910390f35b3480156107ba57600080fd5b506107d560048036038101906107d09190613dab565b612028565b005b3480156107e357600080fd5b506107fe60048036038101906107f99190613d28565b61203e565b005b34801561080c57600080fd5b506108156120a0565b6040516108229190614cbe565b60405180910390f35b34801561083757600080fd5b50610852600480360381019061084d9190614093565b6120b4565b60405161085f919061493c565b60405180910390f35b34801561087457600080fd5b5061088f600480360381019061088a919061400b565b61215b565b005b34801561089d57600080fd5b506108a661231d565b6040516108b39190614e30565b60405180910390f35b3480156108c857600080fd5b506108d1612323565b6040516108de919061493c565b60405180910390f35b3480156108f357600080fd5b506108fc61233f565b005b34801561090a57600080fd5b5061092560048036038101906109209190613c95565b612477565b60405161093291906148e4565b60405180910390f35b34801561094757600080fd5b5061095061250b565b60405161095d9190614e30565b60405180910390f35b34801561097257600080fd5b5061098d60048036038101906109889190613c28565b612511565b005b34801561099b57600080fd5b506109a4612609565b6040516109b19190614e30565b60405180910390f35b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610a1457600080fd5b600c60008561ffff1661ffff1681526020019081526020016000208054610a3a9061516f565b90508351148015610a805750600c60008561ffff1661ffff168152602001908152602001600020604051610a6e91906147d8565b60405180910390208380519060200120145b610abf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab690614a3e565b60405180910390fd5b60008082806020019051810190610ad69190613c55565b91509150610ae4828261260f565b505050505050565b6000610af78261262d565b9050919050565b606060008054610b0d9061516f565b80601f0160208091040260200160405190810160405280929190818152602001828054610b399061516f565b8015610b865780601f10610b5b57610100808354040283529160200191610b86565b820191906000526020600020905b815481529060010190602001808311610b6957829003601f168201915b5050505050905090565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610bbe6126a7565b73ffffffffffffffffffffffffffffffffffffffff16610bdc611e06565b73ffffffffffffffffffffffffffffffffffffffff1614610c32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2990614b9e565b60405180910390fd5b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166307e0db17826040518263ffffffff1660e01b8152600401610c8d9190614cbe565b600060405180830381600087803b158015610ca757600080fd5b505af1158015610cbb573d6000803e3d6000fd5b5050505050565b6000610ccd826126af565b610d0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0390614b7e565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d5282611a3a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610dc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dba90614bde565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610de26126a7565b73ffffffffffffffffffffffffffffffffffffffff161480610e115750610e1081610e0b6126a7565b612477565b5b610e50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4790614afe565b60405180910390fd5b610e5a838361271b565b505050565b610e676126a7565b73ffffffffffffffffffffffffffffffffffffffff16610e85611e06565b73ffffffffffffffffffffffffffffffffffffffff1614610edb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed290614b9e565b60405180910390fd5b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166310ddb137826040518263ffffffff1660e01b8152600401610f369190614cbe565b600060405180830381600087803b158015610f5057600080fd5b505af1158015610f64573d6000803e3d6000fd5b5050505050565b6000600980549050905090565b610f806126a7565b73ffffffffffffffffffffffffffffffffffffffff16610f9e611e06565b73ffffffffffffffffffffffffffffffffffffffff1614610ff4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610feb90614b9e565b60405180910390fd5b8181600c60008661ffff1661ffff168152602001908152602001600020919061101e9291906139c3565b50505050565b61103561102f6126a7565b826127d4565b611074576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106b90614c1e565b60405180910390fd5b61107f8383836128b2565b505050565b600061108f83611c40565b82106110d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c79061499e565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6101f481565b61114a8383836040518060200160405280600081525061203e565b505050565b61116061115a6126a7565b826127d4565b61119f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119690614c7e565b60405180910390fd5b6111a881612b19565b50565b6111b36126a7565b73ffffffffffffffffffffffffffffffffffffffff166111d1611e06565b73ffffffffffffffffffffffffffffffffffffffff1614611227576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121e90614b9e565b60405180910390fd5b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166342d65a8d8484846040518463ffffffff1660e01b815260040161128693929190614d3a565b600060405180830381600087803b1580156112a057600080fd5b505af11580156112b4573d6000803e3d6000fd5b50505050505050565b6112c56126a7565b73ffffffffffffffffffffffffffffffffffffffff166112e484611a3a565b73ffffffffffffffffffffffffffffffffffffffff161461133a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133190614bfe565b60405180910390fd5b6000600c60008361ffff1661ffff16815260200190815260200160002080546113629061516f565b9050116113a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139b90614ade565b60405180910390fd5b6113ad83612b19565b600082846040516020016113c29291906148bb565b6040516020818303038152906040529050600060019050600081600d546040516020016113f0929190614828565b60405160208183030381529060405290506000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340a7bb10866114ee600c60008a61ffff1661ffff168152602001908152602001600020805461146b9061516f565b80601f01602080910402602001604051908101604052809291908181526020018280546114979061516f565b80156114e45780601f106114b9576101008083540402835291602001916114e4565b820191906000526020600020905b8154815290600101906020018083116114c757829003601f168201915b5050505050612c36565b876000876040518663ffffffff1660e01b8152600401611512959493929190614cd9565b604080518083038186803b15801561152957600080fd5b505afa15801561153d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115619190614140565b509050803410156115a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159e9061497e565b60405180910390fd5b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c58031003487600c60008a61ffff1661ffff16815260200190815260200160002088336000896040518863ffffffff1660e01b815260040161162896959493929190614d6c565b6000604051808303818588803b15801561164157600080fd5b505af1158015611655573d6000803e3d6000fd5b505050505050505050505050565b61166b6126a7565b73ffffffffffffffffffffffffffffffffffffffff16611689611e06565b73ffffffffffffffffffffffffffffffffffffffff16146116df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d690614b9e565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161171a9190614854565b60206040518083038186803b15801561173257600080fd5b505afa158015611746573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061176a91906140c0565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb611790611e06565b836040518363ffffffff1660e01b81526004016117ae9291906148bb565b602060405180830381600087803b1580156117c857600080fd5b505af11580156117dc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118009190613e2b565b505050565b600061180f610f6b565b8210611850576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184790614c5e565b60405180910390fd5b600982815481106118645761186361534f565b5b90600052602060002001549050919050565b6000806000848660405160200161188e9291906148bb565b6040516020818303038152906040529050600060019050600081600d546040516020016118bc929190614828565b6040516020818303038152906040529050600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340a7bb10876119b8600c60008b61ffff1661ffff16815260200190815260200160002080546119359061516f565b80601f01602080910402602001604051908101604052809291908181526020018280546119619061516f565b80156119ae5780601f10611983576101008083540402835291602001916119ae565b820191906000526020600020905b81548152906001019060200180831161199157829003601f168201915b5050505050612c36565b866000866040518663ffffffff1660e01b81526004016119dc959493929190614cd9565b604080518083038186803b1580156119f357600080fd5b505afa158015611a07573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a2b9190614140565b94509450505050935093915050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ae3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ada90614b3e565b60405180910390fd5b80915050919050565b348160ff16601054611afe9190614fb4565b1115611b3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3690614c3e565b60405180910390fd5b6101f4600e60009054906101000a900461ffff1661ffff1610611b97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8e9061495e565b60405180910390fd5b60028160ff1610611bdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd490614c9e565b60405180910390fd5b600e600081819054906101000a900461ffff1680929190611bfd906151d2565b91906101000a81548161ffff021916908361ffff16021790555050611c3d611c236126a7565b600f60008154611c32906151fd565b91905081905561260f565b50565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611cb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca890614b1e565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611d006126a7565b73ffffffffffffffffffffffffffffffffffffffff16611d1e611e06565b73ffffffffffffffffffffffffffffffffffffffff1614611d74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6b90614b9e565b60405180910390fd5b611d7e6000612c44565b565b611d886126a7565b73ffffffffffffffffffffffffffffffffffffffff16611da6611e06565b73ffffffffffffffffffffffffffffffffffffffff1614611dfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df390614b9e565b60405180910390fd5b80600d8190555050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611e386126a7565b73ffffffffffffffffffffffffffffffffffffffff16611e56611e06565b73ffffffffffffffffffffffffffffffffffffffff1614611eac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea390614b9e565b60405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b606060018054611eff9061516f565b80601f0160208091040260200160405190810160405280929190818152602001828054611f2b9061516f565b8015611f785780601f10611f4d57610100808354040283529160200191611f78565b820191906000526020600020905b815481529060010190602001808311611f5b57829003601f168201915b5050505050905090565b600c6020528060005260406000206000915090508054611fa19061516f565b80601f0160208091040260200160405190810160405280929190818152602001828054611fcd9061516f565b801561201a5780601f10611fef5761010080835404028352916020019161201a565b820191906000526020600020905b815481529060010190602001808311611ffd57829003601f168201915b505050505081565b60105481565b61203a6120336126a7565b8383612d0a565b5050565b61204f6120496126a7565b836127d4565b61208e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208590614c1e565b60405180910390fd5b61209a84848484612e77565b50505050565b600e60009054906101000a900461ffff1681565b60606120bf826126af565b6120fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f590614bbe565b60405180910390fd5b6000612108612ed3565b905060008151116121285760405180602001604052806000815250612153565b8061213284612ef3565b6040516020016121439291906147ef565b6040516020818303038152906040525b915050919050565b6121636126a7565b73ffffffffffffffffffffffffffffffffffffffff16612181611e06565b73ffffffffffffffffffffffffffffffffffffffff16146121d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ce90614b9e565b60405180910390fd5b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663cbed8b9c600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663096568f6306040518263ffffffff1660e01b81526004016122709190614854565b60206040518083038186803b15801561228857600080fd5b505afa15801561229c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122c09190613edf565b868686866040518663ffffffff1660e01b81526004016122e4959493929190614de2565b600060405180830381600087803b1580156122fe57600080fd5b505af1158015612312573d6000803e3d6000fd5b505050505050505050565b600d5481565b604051806060016040528060368152602001615ba46036913981565b6123476126a7565b73ffffffffffffffffffffffffffffffffffffffff16612365611e06565b73ffffffffffffffffffffffffffffffffffffffff16146123bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b290614b9e565b60405180910390fd5b600047905060006123ca611e06565b73ffffffffffffffffffffffffffffffffffffffff16826040516123ed90614813565b60006040518083038185875af1925050503d806000811461242a576040519150601f19603f3d011682016040523d82523d6000602084013e61242f565b606091505b5050905080612473576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246a90614a5e565b60405180910390fd5b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60115481565b6125196126a7565b73ffffffffffffffffffffffffffffffffffffffff16612537611e06565b73ffffffffffffffffffffffffffffffffffffffff161461258d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258490614b9e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156125fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f4906149de565b60405180910390fd5b61260681612c44565b50565b600f5481565b612629828260405180602001604052806000815250613054565b5050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806126a0575061269f826130af565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661278e83611a3a565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006127df826126af565b61281e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281590614abe565b60405180910390fd5b600061282983611a3a565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061289857508373ffffffffffffffffffffffffffffffffffffffff1661288084610cc2565b73ffffffffffffffffffffffffffffffffffffffff16145b806128a957506128a88185612477565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166128d282611a3a565b73ffffffffffffffffffffffffffffffffffffffff1614612928576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291f906149fe565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612998576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161298f90614a7e565b60405180910390fd5b6129a3838383613191565b6129ae60008261271b565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129fe919061500e565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a559190614f2d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b148383836131a1565b505050565b6000612b2482611a3a565b9050612b3281600084613191565b612b3d60008361271b565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b8d919061500e565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c32816000846131a1565b5050565b600060148201519050919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612d79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d7090614a9e565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612e6a91906148e4565b60405180910390a3505050565b612e828484846128b2565b612e8e848484846131a6565b612ecd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ec4906149be565b60405180910390fd5b50505050565b6060604051806060016040528060368152602001615ba460369139905090565b60606000821415612f3b576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061304f565b600082905060005b60008214612f6d578080612f56906151fd565b915050600a82612f669190614f83565b9150612f43565b60008167ffffffffffffffff811115612f8957612f8861537e565b5b6040519080825280601f01601f191660200182016040528015612fbb5781602001600182028036833780820191505090505b5090505b6000851461304857600182612fd4919061500e565b9150600a85612fe39190615262565b6030612fef9190614f2d565b60f81b8183815181106130055761300461534f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856130419190614f83565b9450612fbf565b8093505050505b919050565b61305e838361333d565b61306b60008484846131a6565b6130aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130a1906149be565b60405180910390fd5b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061317a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061318a575061318982613517565b5b9050919050565b61319c838383613581565b505050565b505050565b60006131c78473ffffffffffffffffffffffffffffffffffffffff16613695565b15613330578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026131f06126a7565b8786866040518563ffffffff1660e01b8152600401613212949392919061486f565b602060405180830381600087803b15801561322c57600080fd5b505af192505050801561325d57506040513d601f19601f8201168201806040525081019061325a9190613e85565b60015b6132e0573d806000811461328d576040519150601f19603f3d011682016040523d82523d6000602084013e613292565b606091505b506000815114156132d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132cf906149be565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613335565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156133ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133a490614b5e565b60405180910390fd5b6133b6816126af565b156133f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133ed90614a1e565b60405180910390fd5b61340260008383613191565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546134529190614f2d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613513600083836131a1565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61358c8383836136b8565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156135cf576135ca816136bd565b61360e565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461360d5761360c8382613706565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156136515761364c81613873565b613690565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461368f5761368e8282613944565b5b5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161371384611c40565b61371d919061500e565b9050600060086000848152602001908152602001600020549050818114613802576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600980549050613887919061500e565b90506000600a60008481526020019081526020016000205490506000600983815481106138b7576138b661534f565b5b9060005260206000200154905080600983815481106138d9576138d861534f565b5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a600085815260200190815260200160002060009055600980548061392857613927615320565b5b6001900381819060005260206000200160009055905550505050565b600061394f83611c40565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b8280546139cf9061516f565b90600052602060002090601f0160209004810192826139f15760008555613a38565b82601f10613a0a57803560ff1916838001178555613a38565b82800160010185558215613a38579182015b82811115613a37578235825591602001919060010190613a1c565b5b509050613a459190613a49565b5090565b5b80821115613a62576000816000905550600101613a4a565b5090565b6000613a79613a7484614e99565b614e74565b905082815260208101848484011115613a9557613a946153bc565b5b613aa084828561512d565b509392505050565b600081359050613ab781615aeb565b92915050565b600081519050613acc81615b02565b92915050565b600081359050613ae181615b19565b92915050565b600081519050613af681615b19565b92915050565b600081359050613b0b81615b30565b92915050565b600081519050613b2081615b30565b92915050565b60008083601f840112613b3c57613b3b6153b2565b5b8235905067ffffffffffffffff811115613b5957613b586153ad565b5b602083019150836001820283011115613b7557613b746153b7565b5b9250929050565b600082601f830112613b9157613b906153b2565b5b8135613ba1848260208601613a66565b91505092915050565b600081359050613bb981615b47565b92915050565b600081519050613bce81615b47565b92915050565b600081359050613be381615b5e565b92915050565b600081519050613bf881615b5e565b92915050565b600081359050613c0d81615b75565b92915050565b600081359050613c2281615b8c565b92915050565b600060208284031215613c3e57613c3d6153c6565b5b6000613c4c84828501613aa8565b91505092915050565b60008060408385031215613c6c57613c6b6153c6565b5b6000613c7a85828601613abd565b9250506020613c8b85828601613be9565b9150509250929050565b60008060408385031215613cac57613cab6153c6565b5b6000613cba85828601613aa8565b9250506020613ccb85828601613aa8565b9150509250929050565b600080600060608486031215613cee57613ced6153c6565b5b6000613cfc86828701613aa8565b9350506020613d0d86828701613aa8565b9250506040613d1e86828701613bd4565b9150509250925092565b60008060008060808587031215613d4257613d416153c6565b5b6000613d5087828801613aa8565b9450506020613d6187828801613aa8565b9350506040613d7287828801613bd4565b925050606085013567ffffffffffffffff811115613d9357613d926153c1565b5b613d9f87828801613b7c565b91505092959194509250565b60008060408385031215613dc257613dc16153c6565b5b6000613dd085828601613aa8565b9250506020613de185828601613ad2565b9150509250929050565b60008060408385031215613e0257613e016153c6565b5b6000613e1085828601613aa8565b9250506020613e2185828601613bd4565b9150509250929050565b600060208284031215613e4157613e406153c6565b5b6000613e4f84828501613ae7565b91505092915050565b600060208284031215613e6e57613e6d6153c6565b5b6000613e7c84828501613afc565b91505092915050565b600060208284031215613e9b57613e9a6153c6565b5b6000613ea984828501613b11565b91505092915050565b600060208284031215613ec857613ec76153c6565b5b6000613ed684828501613baa565b91505092915050565b600060208284031215613ef557613ef46153c6565b5b6000613f0384828501613bbf565b91505092915050565b600080600060408486031215613f2557613f246153c6565b5b6000613f3386828701613baa565b935050602084013567ffffffffffffffff811115613f5457613f536153c1565b5b613f6086828701613b26565b92509250509250925092565b60008060008060808587031215613f8657613f856153c6565b5b6000613f9487828801613baa565b945050602085013567ffffffffffffffff811115613fb557613fb46153c1565b5b613fc187828801613b7c565b9350506040613fd287828801613bfe565b925050606085013567ffffffffffffffff811115613ff357613ff26153c1565b5b613fff87828801613b7c565b91505092959194509250565b600080600080600060808688031215614027576140266153c6565b5b600061403588828901613baa565b955050602061404688828901613baa565b945050604061405788828901613bd4565b935050606086013567ffffffffffffffff811115614078576140776153c1565b5b61408488828901613b26565b92509250509295509295909350565b6000602082840312156140a9576140a86153c6565b5b60006140b784828501613bd4565b91505092915050565b6000602082840312156140d6576140d56153c6565b5b60006140e484828501613be9565b91505092915050565b600080600060608486031215614106576141056153c6565b5b600061411486828701613bd4565b935050602061412586828701613aa8565b925050604061413686828701613baa565b9150509250925092565b60008060408385031215614157576141566153c6565b5b600061416585828601613be9565b925050602061417685828601613be9565b9150509250929050565b600060208284031215614196576141956153c6565b5b60006141a484828501613c13565b91505092915050565b6141b681615054565b82525050565b6141c581615042565b82525050565b6141d481615066565b82525050565b60006141e68385614ef5565b93506141f383858461512d565b6141fc836153cb565b840190509392505050565b600061421282614edf565b61421c8185614ef5565b935061422c81856020860161513c565b614235816153cb565b840191505092915050565b6000815461424d8161516f565b6142578186614ef5565b945060018216600081146142725760018114614284576142b7565b60ff19831686526020860193506142b7565b61428d85614eca565b60005b838110156142af57815481890152600182019150602081019050614290565b808801955050505b50505092915050565b600081546142cd8161516f565b6142d78186614f06565b945060018216600081146142f2576001811461430357614336565b60ff19831686528186019350614336565b61430c85614eca565b60005b8381101561432e5781548189015260018201915060208101905061430f565b838801955050505b50505092915050565b614348816150f7565b82525050565b600061435982614eea565b6143638185614f11565b935061437381856020860161513c565b61437c816153cb565b840191505092915050565b600061439282614eea565b61439c8185614f22565b93506143ac81856020860161513c565b80840191505092915050565b60006143c5601783614f11565b91506143d0826153e9565b602082019050919050565b60006143e8602683614f11565b91506143f382615412565b604082019050919050565b600061440b602b83614f11565b915061441682615461565b604082019050919050565b600061442e603283614f11565b9150614439826154b0565b604082019050919050565b6000614451602683614f11565b915061445c826154ff565b604082019050919050565b6000614474602583614f11565b915061447f8261554e565b604082019050919050565b6000614497601c83614f11565b91506144a28261559d565b602082019050919050565b60006144ba605683614f11565b91506144c5826155c6565b606082019050919050565b60006144dd601483614f11565b91506144e88261563b565b602082019050919050565b6000614500602483614f11565b915061450b82615664565b604082019050919050565b6000614523601983614f11565b915061452e826156b3565b602082019050919050565b6000614546602c83614f11565b9150614551826156dc565b604082019050919050565b6000614569601583614f11565b91506145748261572b565b602082019050919050565b600061458c603883614f11565b915061459782615754565b604082019050919050565b60006145af602a83614f11565b91506145ba826157a3565b604082019050919050565b60006145d2602983614f11565b91506145dd826157f2565b604082019050919050565b60006145f5602083614f11565b915061460082615841565b602082019050919050565b6000614618602c83614f11565b91506146238261586a565b604082019050919050565b600061463b602083614f11565b9150614646826158b9565b602082019050919050565b600061465e602f83614f11565b9150614669826158e2565b604082019050919050565b6000614681602183614f11565b915061468c82615931565b604082019050919050565b60006146a4601383614f11565b91506146af82615980565b602082019050919050565b60006146c7600083614f06565b91506146d2826159a9565b600082019050919050565b60006146ea603183614f11565b91506146f5826159ac565b604082019050919050565b600061470d601783614f11565b9150614718826159fb565b602082019050919050565b6000614730602c83614f11565b915061473b82615a24565b604082019050919050565b6000614753603083614f11565b915061475e82615a73565b604082019050919050565b6000614776601683614f11565b915061478182615ac2565b602082019050919050565b6147958161509e565b82525050565b6147ac6147a78261509e565b615246565b82525050565b6147bb816150cc565b82525050565b6147d26147cd826150cc565b615258565b82525050565b60006147e482846142c0565b915081905092915050565b60006147fb8285614387565b91506148078284614387565b91508190509392505050565b600061481e826146ba565b9150819050919050565b6000614834828561479b565b60028201915061484482846147c1565b6020820191508190509392505050565b600060208201905061486960008301846141bc565b92915050565b600060808201905061488460008301876141bc565b61489160208301866141bc565b61489e60408301856147b2565b81810360608301526148b08184614207565b905095945050505050565b60006040820190506148d060008301856141bc565b6148dd60208301846147b2565b9392505050565b60006020820190506148f960008301846141cb565b92915050565b600060208201905081810360008301526149198184614207565b905092915050565b6000602082019050614936600083018461433f565b92915050565b60006020820190508181036000830152614956818461434e565b905092915050565b60006020820190508181036000830152614977816143b8565b9050919050565b60006020820190508181036000830152614997816143db565b9050919050565b600060208201905081810360008301526149b7816143fe565b9050919050565b600060208201905081810360008301526149d781614421565b9050919050565b600060208201905081810360008301526149f781614444565b9050919050565b60006020820190508181036000830152614a1781614467565b9050919050565b60006020820190508181036000830152614a378161448a565b9050919050565b60006020820190508181036000830152614a57816144ad565b9050919050565b60006020820190508181036000830152614a77816144d0565b9050919050565b60006020820190508181036000830152614a97816144f3565b9050919050565b60006020820190508181036000830152614ab781614516565b9050919050565b60006020820190508181036000830152614ad781614539565b9050919050565b60006020820190508181036000830152614af78161455c565b9050919050565b60006020820190508181036000830152614b178161457f565b9050919050565b60006020820190508181036000830152614b37816145a2565b9050919050565b60006020820190508181036000830152614b57816145c5565b9050919050565b60006020820190508181036000830152614b77816145e8565b9050919050565b60006020820190508181036000830152614b978161460b565b9050919050565b60006020820190508181036000830152614bb78161462e565b9050919050565b60006020820190508181036000830152614bd781614651565b9050919050565b60006020820190508181036000830152614bf781614674565b9050919050565b60006020820190508181036000830152614c1781614697565b9050919050565b60006020820190508181036000830152614c37816146dd565b9050919050565b60006020820190508181036000830152614c5781614700565b9050919050565b60006020820190508181036000830152614c7781614723565b9050919050565b60006020820190508181036000830152614c9781614746565b9050919050565b60006020820190508181036000830152614cb781614769565b9050919050565b6000602082019050614cd3600083018461478c565b92915050565b600060a082019050614cee600083018861478c565b614cfb60208301876141bc565b8181036040830152614d0d8186614207565b9050614d1c60608301856141cb565b8181036080830152614d2e8184614207565b90509695505050505050565b6000604082019050614d4f600083018661478c565b8181036020830152614d628184866141da565b9050949350505050565b600060c082019050614d81600083018961478c565b8181036020830152614d938188614240565b90508181036040830152614da78187614207565b9050614db660608301866141ad565b614dc360808301856141bc565b81810360a0830152614dd58184614207565b9050979650505050505050565b6000608082019050614df7600083018861478c565b614e04602083018761478c565b614e1160408301866147b2565b8181036060830152614e248184866141da565b90509695505050505050565b6000602082019050614e4560008301846147b2565b92915050565b6000604082019050614e6060008301856147b2565b614e6d60208301846147b2565b9392505050565b6000614e7e614e8f565b9050614e8a82826151a1565b919050565b6000604051905090565b600067ffffffffffffffff821115614eb457614eb361537e565b5b614ebd826153cb565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614f38826150cc565b9150614f43836150cc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614f7857614f77615293565b5b828201905092915050565b6000614f8e826150cc565b9150614f99836150cc565b925082614fa957614fa86152c2565b5b828204905092915050565b6000614fbf826150cc565b9150614fca836150cc565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561500357615002615293565b5b828202905092915050565b6000615019826150cc565b9150615024836150cc565b92508282101561503757615036615293565b5b828203905092915050565b600061504d826150ac565b9050919050565b600061505f826150ac565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b600060ff82169050919050565b600061510282615109565b9050919050565b60006151148261511b565b9050919050565b6000615126826150ac565b9050919050565b82818337600083830152505050565b60005b8381101561515a57808201518184015260208101905061513f565b83811115615169576000848401525b50505050565b6000600282049050600182168061518757607f821691505b6020821081141561519b5761519a6152f1565b5b50919050565b6151aa826153cb565b810181811067ffffffffffffffff821117156151c9576151c861537e565b5b80604052505050565b60006151dd8261509e565b915061ffff8214156151f2576151f1615293565b5b600182019050919050565b6000615208826150cc565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561523b5761523a615293565b5b600182019050919050565b6000615251826153dc565b9050919050565b6000819050919050565b600061526d826150cc565b9150615278836150cc565b925082615288576152876152c2565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160f01b9050919050565b7f4d6178206d696e7420737570706c792072656163686564000000000000000000600082015250565b7f496e73756666696369656e7420616d6f756e7420746f20636f7665722067617360008201527f20636f7374730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f496e76616c69642072656d6f74652073656e64657220616464726573732e206f60008201527f776e65722073686f756c642063616c6c2073657452656d6f7465282920746f2060208201527f656e61626c652072656d6f746520636f6e747261637400000000000000000000604082015250565b7f4661696c656420746f2073656e64204574686572000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f52656d6f7465206e6f7420636f6e666967757265640000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f53656e646572206973206e6f74206f776e657200000000000000000000000000600082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820616d6f756e742073656e742e000000000000000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b7f31206f6d6e696672616e6b20706572205458204d415800000000000000000000600082015250565b615af481615042565b8114615aff57600080fd5b50565b615b0b81615054565b8114615b1657600080fd5b50565b615b2281615066565b8114615b2d57600080fd5b50565b615b3981615072565b8114615b4457600080fd5b50565b615b508161509e565b8114615b5b57600080fd5b50565b615b67816150cc565b8114615b7257600080fd5b50565b615b7e816150d6565b8114615b8957600080fd5b50565b615b95816150ea565b8114615ba057600080fd5b5056fe697066733a2f2f516d593357416f5a57656952474e6f5441426d62344848786f72785155476a5457694d6b445579564c5732516d692fa2646970667358221220dc3cfb96d24e21a202c32cc514f73fdb3d2db386b7bd305b0b34883e79e40ad064736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000000000000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd675
-----Decoded View---------------
Arg [0] : _lastTokenId (uint256): 0
Arg [1] : _layerZeroEndpoint (address): 0x66A71Dcef29A0fFBDBE3c6a460a3B5BC225Cd675
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [1] : 00000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd675
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.