ERC-721
Overview
Max Total Supply
7,700 IM
Holders
321
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 IMLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
InvisibleMachines
Compiler Version
v0.8.9+commit.e5eed63a
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.8.0; //Developer Info: //Written by Blockchainguy.net //Email: [email protected] //Instagram: @sheraz.manzoor /** * @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; } } pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } 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); } error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintedQueryForZeroAddress(); error BurnedQueryForZeroAddress(); error AuxQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerIndexOutOfBounds(); error OwnerQueryForNonexistentToken(); error TokenIndexOutOfBounds(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex = 1; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex times unchecked { return (_currentIndex - _burnCounter) - 1; } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { if (owner == address(0)) revert MintedQueryForZeroAddress(); return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { if (owner == address(0)) revert BurnedQueryForZeroAddress(); return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { if (owner == address(0)) revert AuxQueryForZeroAddress(); return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { if (owner == address(0)) revert AuxQueryForZeroAddress(); _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (!_checkOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; for (uint256 i; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) { revert TransferToNonERC721ReceiverImplementer(); } updatedIndex++; } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || isApprovedForAll(prevOwnership.addr, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId].addr = to; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @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 { TokenOwnership memory prevOwnership = ownershipOf(tokenId); _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[prevOwnership.addr].balance -= 1; _addressData[prevOwnership.addr].numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. _ownerships[tokenId].addr = prevOwnership.addr; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); _ownerships[tokenId].burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(prevOwnership.addr, address(0), tokenId); _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } else if (error == RecoverError.InvalidSignatureV) { revert("ECDSA: invalid signature 'v' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { // Check the signature length // - case 65: r,s,v signature (standard) // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._ if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else if (signature.length == 64) { bytes32 r; bytes32 vs; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) vs := mload(add(signature, 0x40)) } return tryRecover(hash, r, vs); } else { return (address(0), RecoverError.InvalidSignatureLength); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.3._ */ function tryRecover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address, RecoverError) { bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff); uint8 v = uint8((uint256(vs) >> 255) + 27); return tryRecover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. * * _Available since v4.2._ */ function recover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address, RecoverError) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n � 2 + 1, and for v in (302): v ? {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS); } if (v != 27 && v != 28) { return (address(0), RecoverError.InvalidSignatureV); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature); } return (signer, RecoverError.NoError); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) { // 32 is the length in bytes of hash, // enforced by the type signature above return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } /** * @dev Returns an Ethereum Signed Message, created from `s`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); } } abstract contract EIP712 { /* solhint-disable var-name-mixedcase */ // Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to // invalidate the cached domain separator if the chain id changes. bytes32 private immutable _CACHED_DOMAIN_SEPARATOR; uint256 private immutable _CACHED_CHAIN_ID; address private immutable _CACHED_THIS; bytes32 private immutable _HASHED_NAME; bytes32 private immutable _HASHED_VERSION; bytes32 private immutable _TYPE_HASH; /* solhint-enable var-name-mixedcase */ /** * @dev Initializes the domain separator and parameter caches. * * The meaning of `name` and `version` is specified in * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]: * * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol. * - `version`: the current major version of the signing domain. * * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart * contract upgrade]. */ constructor(string memory name, string memory version) { bytes32 hashedName = keccak256(bytes(name)); bytes32 hashedVersion = keccak256(bytes(version)); bytes32 typeHash = keccak256( "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)" ); _HASHED_NAME = hashedName; _HASHED_VERSION = hashedVersion; _CACHED_CHAIN_ID = block.chainid; _CACHED_DOMAIN_SEPARATOR = _buildDomainSeparator(typeHash, hashedName, hashedVersion); _CACHED_THIS = address(this); _TYPE_HASH = typeHash; } /** * @dev Returns the domain separator for the current chain. */ function _domainSeparatorV4() internal view returns (bytes32) { if (address(this) == _CACHED_THIS && block.chainid == _CACHED_CHAIN_ID) { return _CACHED_DOMAIN_SEPARATOR; } else { return _buildDomainSeparator(_TYPE_HASH, _HASHED_NAME, _HASHED_VERSION); } } function _buildDomainSeparator( bytes32 typeHash, bytes32 nameHash, bytes32 versionHash ) private view returns (bytes32) { return keccak256(abi.encode(typeHash, nameHash, versionHash, block.chainid, address(this))); } /** * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this * function returns the hash of the fully encoded EIP712 message for this domain. * * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example: * * ```solidity * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode( * keccak256("Mail(address to,string contents)"), * mailTo, * keccak256(bytes(mailContents)) * ))); * address signer = ECDSA.recover(digest, signature); * ``` */ function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) { return ECDSA.toTypedDataHash(_domainSeparatorV4(), structHash); } } contract InvisibleMachines is Ownable, ERC721A { uint256 public adoptionLimit = 5; using Strings for uint256; mapping(uint256 => string) private _tokenURIs; bool public publicSaleOpen = false; string public baseURI = "ipfs://QmPvg14XtU4cMjZHJUmYAyuB7VeRhBFDQNC4nao81uPBfr/"; string public _extension = ".json"; uint256 public price = 0.001 ether; uint256 public maxSupply = 7700; constructor() ERC721A("Invisible Machines", "IM"){} function mintNFT(uint256 _quantity) public payable { require(_quantity > 0 && _quantity <= adoptionLimit, "Wallet full 5 max per wallet"); require(totalSupply() + _quantity <= maxSupply, "Reaching max supply"); require(msg.value == price * _quantity, "Needs to send more ETH"); require(getMintedCount(msg.sender) + _quantity <= adoptionLimit, "Exceed max minting amount"); require(publicSaleOpen, "Public Sale Not Started Yet!"); _safeMint(msg.sender, _quantity); } function sendGifts(address[] memory _wallets) external onlyOwner{ require(totalSupply() + _wallets.length <= maxSupply, "Max Supply Reached."); for(uint i = 0; i < _wallets.length; i++) _safeMint(_wallets[i], 1); } function sendGiftsToWallet(address _wallet, uint256 _num) external onlyOwner{ require(totalSupply() + _num <= maxSupply, "Max Supply Reached."); _safeMint(_wallet, _num); } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require( _exists(_tokenId), "ERC721Metadata: URI set of nonexistent token" ); return string(abi.encodePacked(baseURI, _tokenId.toString(), _extension)); } function updateBaseURI(string memory _newBaseURI) onlyOwner public { baseURI = _newBaseURI; } function updateExtension(string memory _temp) onlyOwner public { _extension = _temp; } function getBaseURI() external view returns(string memory) { return baseURI; } function setPrice(uint256 _price) public onlyOwner() { price = _price; } function setAdoptionlimits(uint256 _adoptionLimit) public onlyOwner() { adoptionLimit = _adoptionLimit; } function setmaxSupply(uint256 _supply) public onlyOwner() { maxSupply = _supply; } function toggleSale() public onlyOwner() { publicSaleOpen = !publicSaleOpen; } function getBalance() public view returns(uint) { return address(this).balance; } function getMintedCount(address owner) public view returns (uint256) { return _numberMinted(owner); } function withdraw() external onlyOwner { uint _balance = address(this).balance; payable(owner()).transfer(_balance); //Owner } function getOwnershipData(uint256 tokenId) external view returns (TokenOwnership memory) { return ownershipOf(tokenId); } receive() external payable {} }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"MintedQueryForZeroAddress","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_extension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"adoptionLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"getMintedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"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":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mintNFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"_wallets","type":"address[]"}],"name":"sendGifts","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"},{"internalType":"uint256","name":"_num","type":"uint256"}],"name":"sendGiftsToWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_adoptionLimit","type":"uint256"}],"name":"setAdoptionlimits","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":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supply","type":"uint256"}],"name":"setmaxSupply","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":[],"name":"toggleSale","outputs":[],"stateMutability":"nonpayable","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":"string","name":"_newBaseURI","type":"string"}],"name":"updateBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_temp","type":"string"}],"name":"updateExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040526001805560056009556000600b60006101000a81548160ff021916908315150217905550604051806060016040528060368152602001620041f160369139600c90805190602001906200005992919062000259565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600d9080519060200190620000a792919062000259565b5066038d7ea4c68000600e55611e14600f55348015620000c657600080fd5b506040518060400160405280601281526020017f496e76697369626c65204d616368696e657300000000000000000000000000008152506040518060400160405280600281526020017f494d00000000000000000000000000000000000000000000000000000000000081525062000153620001476200018d60201b60201c565b6200019560201b60201c565b81600390805190602001906200016b92919062000259565b5080600490805190602001906200018492919062000259565b5050506200036e565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002679062000338565b90600052602060002090601f0160209004810192826200028b5760008555620002d7565b82601f10620002a657805160ff1916838001178555620002d7565b82800160010185558215620002d7579182015b82811115620002d6578251825591602001919060010190620002b9565b5b509050620002e69190620002ea565b5090565b5b8082111562000305576000816000905550600101620002eb565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200035157607f821691505b6020821081141562000368576200036762000309565b5b50919050565b613e73806200037e6000396000f3fe60806040526004361061021e5760003560e01c80637e6182d911610123578063a035b1fe116100ab578063d5abeb011161006f578063d5abeb01146107a5578063e917a28c146107d0578063e985e9c5146107fb578063f2fde38b14610838578063f9e237991461086157610225565b8063a035b1fe146106c2578063a22cb465146106ed578063b88d4fde14610716578063c87b56dd1461073f578063d1f919ed1461077c57610225565b80639231ab2a116100f25780639231ab2a146105d85780639264274414610615578063931688cb1461063157806395d89b411461065a57806397d6696b1461068557610225565b80637e6182d91461053257806381a89b591461055b5780638da5cb5b1461058457806391b7f5ed146105af57610225565b80633ccfd60b116101a657806370a082311161017557806370a0823114610473578063714c5398146104b0578063715018a6146104db5780637c8255db146104f25780637d8966e41461051b57610225565b80633ccfd60b146103cb57806342842e0e146103e25780636352211e1461040b5780636c0360eb1461044857610225565b806312065fe0116101ed57806312065fe0146102f857806318160ddd14610323578063228025e81461034e57806323b872dd146103775780633ae1dd9d146103a057610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf57610225565b3661022557005b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190612dd4565b61088c565b60405161025e9190612e1c565b60405180910390f35b34801561027357600080fd5b5061027c61096e565b6040516102899190612ed0565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b49190612f28565b610a00565b6040516102c69190612f96565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f19190612fdd565b610a7c565b005b34801561030457600080fd5b5061030d610b87565b60405161031a919061302c565b60405180910390f35b34801561032f57600080fd5b50610338610b8f565b604051610345919061302c565b60405180910390f35b34801561035a57600080fd5b5061037560048036038101906103709190612f28565b610ba0565b005b34801561038357600080fd5b5061039e60048036038101906103999190613047565b610c26565b005b3480156103ac57600080fd5b506103b5610c36565b6040516103c29190612ed0565b60405180910390f35b3480156103d757600080fd5b506103e0610cc4565b005b3480156103ee57600080fd5b5061040960048036038101906104049190613047565b610d96565b005b34801561041757600080fd5b50610432600480360381019061042d9190612f28565b610db6565b60405161043f9190612f96565b60405180910390f35b34801561045457600080fd5b5061045d610dcc565b60405161046a9190612ed0565b60405180910390f35b34801561047f57600080fd5b5061049a6004803603810190610495919061309a565b610e5a565b6040516104a7919061302c565b60405180910390f35b3480156104bc57600080fd5b506104c5610f2a565b6040516104d29190612ed0565b60405180910390f35b3480156104e757600080fd5b506104f0610fbc565b005b3480156104fe57600080fd5b506105196004803603810190610514919061320f565b611044565b005b34801561052757600080fd5b50610530611160565b005b34801561053e57600080fd5b506105596004803603810190610554919061330d565b611208565b005b34801561056757600080fd5b50610582600480360381019061057d9190612f28565b61129e565b005b34801561059057600080fd5b50610599611324565b6040516105a69190612f96565b60405180910390f35b3480156105bb57600080fd5b506105d660048036038101906105d19190612f28565b61134d565b005b3480156105e457600080fd5b506105ff60048036038101906105fa9190612f28565b6113d3565b60405161060c91906133d9565b60405180910390f35b61062f600480360381019061062a9190612f28565b6113eb565b005b34801561063d57600080fd5b506106586004803603810190610653919061330d565b611596565b005b34801561066657600080fd5b5061066f61162c565b60405161067c9190612ed0565b60405180910390f35b34801561069157600080fd5b506106ac60048036038101906106a7919061309a565b6116be565b6040516106b9919061302c565b60405180910390f35b3480156106ce57600080fd5b506106d76116d0565b6040516106e4919061302c565b60405180910390f35b3480156106f957600080fd5b50610714600480360381019061070f9190613420565b6116d6565b005b34801561072257600080fd5b5061073d60048036038101906107389190613501565b61184e565b005b34801561074b57600080fd5b5061076660048036038101906107619190612f28565b6118a1565b6040516107739190612ed0565b60405180910390f35b34801561078857600080fd5b506107a3600480360381019061079e9190612fdd565b611920565b005b3480156107b157600080fd5b506107ba611a01565b6040516107c7919061302c565b60405180910390f35b3480156107dc57600080fd5b506107e5611a07565b6040516107f2919061302c565b60405180910390f35b34801561080757600080fd5b50610822600480360381019061081d9190613584565b611a0d565b60405161082f9190612e1c565b60405180910390f35b34801561084457600080fd5b5061085f600480360381019061085a919061309a565b611aa1565b005b34801561086d57600080fd5b50610876611b99565b6040516108839190612e1c565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061095757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610967575061096682611bac565b5b9050919050565b60606003805461097d906135f3565b80601f01602080910402602001604051908101604052809291908181526020018280546109a9906135f3565b80156109f65780601f106109cb576101008083540402835291602001916109f6565b820191906000526020600020905b8154815290600101906020018083116109d957829003601f168201915b5050505050905090565b6000610a0b82611c16565b610a41576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a8782610db6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610aef576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b0e611c51565b73ffffffffffffffffffffffffffffffffffffffff1614158015610b405750610b3e81610b39611c51565b611a0d565b155b15610b77576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b82838383611c59565b505050565b600047905090565b600060016002546001540303905090565b610ba8611c51565b73ffffffffffffffffffffffffffffffffffffffff16610bc6611324565b73ffffffffffffffffffffffffffffffffffffffff1614610c1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1390613671565b60405180910390fd5b80600f8190555050565b610c31838383611d0b565b505050565b600d8054610c43906135f3565b80601f0160208091040260200160405190810160405280929190818152602001828054610c6f906135f3565b8015610cbc5780601f10610c9157610100808354040283529160200191610cbc565b820191906000526020600020905b815481529060010190602001808311610c9f57829003601f168201915b505050505081565b610ccc611c51565b73ffffffffffffffffffffffffffffffffffffffff16610cea611324565b73ffffffffffffffffffffffffffffffffffffffff1614610d40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3790613671565b60405180910390fd5b6000479050610d4d611324565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610d92573d6000803e3d6000fd5b5050565b610db18383836040518060200160405280600081525061184e565b505050565b6000610dc1826121fc565b600001519050919050565b600c8054610dd9906135f3565b80601f0160208091040260200160405190810160405280929190818152602001828054610e05906135f3565b8015610e525780601f10610e2757610100808354040283529160200191610e52565b820191906000526020600020905b815481529060010190602001808311610e3557829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ec2576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6060600c8054610f39906135f3565b80601f0160208091040260200160405190810160405280929190818152602001828054610f65906135f3565b8015610fb25780601f10610f8757610100808354040283529160200191610fb2565b820191906000526020600020905b815481529060010190602001808311610f9557829003601f168201915b5050505050905090565b610fc4611c51565b73ffffffffffffffffffffffffffffffffffffffff16610fe2611324565b73ffffffffffffffffffffffffffffffffffffffff1614611038576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102f90613671565b60405180910390fd5b6110426000612478565b565b61104c611c51565b73ffffffffffffffffffffffffffffffffffffffff1661106a611324565b73ffffffffffffffffffffffffffffffffffffffff16146110c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b790613671565b60405180910390fd5b600f5481516110cd610b8f565b6110d791906136c0565b1115611118576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110f90613762565b60405180910390fd5b60005b815181101561115c5761114982828151811061113a57611139613782565b5b6020026020010151600161253c565b8080611154906137b1565b91505061111b565b5050565b611168611c51565b73ffffffffffffffffffffffffffffffffffffffff16611186611324565b73ffffffffffffffffffffffffffffffffffffffff16146111dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d390613671565b60405180910390fd5b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b611210611c51565b73ffffffffffffffffffffffffffffffffffffffff1661122e611324565b73ffffffffffffffffffffffffffffffffffffffff1614611284576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127b90613671565b60405180910390fd5b80600d908051906020019061129a929190612c82565b5050565b6112a6611c51565b73ffffffffffffffffffffffffffffffffffffffff166112c4611324565b73ffffffffffffffffffffffffffffffffffffffff161461131a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131190613671565b60405180910390fd5b8060098190555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611355611c51565b73ffffffffffffffffffffffffffffffffffffffff16611373611324565b73ffffffffffffffffffffffffffffffffffffffff16146113c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c090613671565b60405180910390fd5b80600e8190555050565b6113db612d08565b6113e4826121fc565b9050919050565b6000811180156113fd57506009548111155b61143c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143390613846565b60405180910390fd5b600f5481611448610b8f565b61145291906136c0565b1115611493576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148a906138b2565b60405180910390fd5b80600e546114a191906138d2565b34146114e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d990613978565b60405180910390fd5b600954816114ef336116be565b6114f991906136c0565b111561153a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611531906139e4565b60405180910390fd5b600b60009054906101000a900460ff16611589576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158090613a50565b60405180910390fd5b611593338261253c565b50565b61159e611c51565b73ffffffffffffffffffffffffffffffffffffffff166115bc611324565b73ffffffffffffffffffffffffffffffffffffffff1614611612576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160990613671565b60405180910390fd5b80600c9080519060200190611628929190612c82565b5050565b60606004805461163b906135f3565b80601f0160208091040260200160405190810160405280929190818152602001828054611667906135f3565b80156116b45780601f10611689576101008083540402835291602001916116b4565b820191906000526020600020905b81548152906001019060200180831161169757829003601f168201915b5050505050905090565b60006116c98261255a565b9050919050565b600e5481565b6116de611c51565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611743576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060086000611750611c51565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166117fd611c51565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118429190612e1c565b60405180910390a35050565b611859848484611d0b565b6118658484848461262a565b61189b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606118ac82611c16565b6118eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e290613ae2565b60405180910390fd5b600c6118f6836127b8565b600d60405160200161190a93929190613bd2565b6040516020818303038152906040529050919050565b611928611c51565b73ffffffffffffffffffffffffffffffffffffffff16611946611324565b73ffffffffffffffffffffffffffffffffffffffff161461199c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199390613671565b60405180910390fd5b600f54816119a8610b8f565b6119b291906136c0565b11156119f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ea90613762565b60405180910390fd5b6119fd828261253c565b5050565b600f5481565b60095481565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611aa9611c51565b73ffffffffffffffffffffffffffffffffffffffff16611ac7611324565b73ffffffffffffffffffffffffffffffffffffffff1614611b1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1490613671565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8490613c75565b60405180910390fd5b611b9681612478565b50565b600b60009054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482108015611c4a575060056000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611d16826121fc565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611d3d611c51565b73ffffffffffffffffffffffffffffffffffffffff161480611d705750611d6f8260000151611d6a611c51565b611a0d565b5b80611db55750611d7e611c51565b73ffffffffffffffffffffffffffffffffffffffff16611d9d84610a00565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611dee576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611e57576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611ebe576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611ecb8585856001612919565b611edb6000848460000151611c59565b6001600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836005600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166005600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561218c5760015481101561218b5782600001516005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121f5858585600161291f565b5050505050565b612204612d08565b6000829050600154811015612441576000600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161243f57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612323578092505050612473565b5b60011561243e57818060019003925050600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612439578092505050612473565b612324565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612556828260405180602001604052806000815250612925565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125c2576040517f35ebb31900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b600061264b8473ffffffffffffffffffffffffffffffffffffffff16612937565b156127ab578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612674611c51565b8786866040518563ffffffff1660e01b81526004016126969493929190613cea565b602060405180830381600087803b1580156126b057600080fd5b505af19250505080156126e157506040513d601f19601f820116820180604052508101906126de9190613d4b565b60015b61275b573d8060008114612711576040519150601f19603f3d011682016040523d82523d6000602084013e612716565b606091505b50600081511415612753576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506127b0565b600190505b949350505050565b60606000821415612800576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612914565b600082905060005b6000821461283257808061281b906137b1565b915050600a8261282b9190613da7565b9150612808565b60008167ffffffffffffffff81111561284e5761284d6130cc565b5b6040519080825280601f01601f1916602001820160405280156128805781602001600182028036833780820191505090505b5090505b6000851461290d576001826128999190613dd8565b9150600a856128a89190613e0c565b60306128b491906136c0565b60f81b8183815181106128ca576128c9613782565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129069190613da7565b9450612884565b8093505050505b919050565b50505050565b50505050565b612932838383600161294a565b505050565b600080823b905060008111915050919050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156129b8576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156129f3576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612a006000868387612919565b83600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612c6557818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4838015612c195750612c17600088848861262a565b155b15612c50576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050612b9e565b508060018190555050612c7b600086838761291f565b5050505050565b828054612c8e906135f3565b90600052602060002090601f016020900481019282612cb05760008555612cf7565b82601f10612cc957805160ff1916838001178555612cf7565b82800160010185558215612cf7579182015b82811115612cf6578251825591602001919060010190612cdb565b5b509050612d049190612d4b565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612d64576000816000905550600101612d4c565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612db181612d7c565b8114612dbc57600080fd5b50565b600081359050612dce81612da8565b92915050565b600060208284031215612dea57612de9612d72565b5b6000612df884828501612dbf565b91505092915050565b60008115159050919050565b612e1681612e01565b82525050565b6000602082019050612e316000830184612e0d565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612e71578082015181840152602081019050612e56565b83811115612e80576000848401525b50505050565b6000601f19601f8301169050919050565b6000612ea282612e37565b612eac8185612e42565b9350612ebc818560208601612e53565b612ec581612e86565b840191505092915050565b60006020820190508181036000830152612eea8184612e97565b905092915050565b6000819050919050565b612f0581612ef2565b8114612f1057600080fd5b50565b600081359050612f2281612efc565b92915050565b600060208284031215612f3e57612f3d612d72565b5b6000612f4c84828501612f13565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612f8082612f55565b9050919050565b612f9081612f75565b82525050565b6000602082019050612fab6000830184612f87565b92915050565b612fba81612f75565b8114612fc557600080fd5b50565b600081359050612fd781612fb1565b92915050565b60008060408385031215612ff457612ff3612d72565b5b600061300285828601612fc8565b925050602061301385828601612f13565b9150509250929050565b61302681612ef2565b82525050565b6000602082019050613041600083018461301d565b92915050565b6000806000606084860312156130605761305f612d72565b5b600061306e86828701612fc8565b935050602061307f86828701612fc8565b925050604061309086828701612f13565b9150509250925092565b6000602082840312156130b0576130af612d72565b5b60006130be84828501612fc8565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61310482612e86565b810181811067ffffffffffffffff82111715613123576131226130cc565b5b80604052505050565b6000613136612d68565b905061314282826130fb565b919050565b600067ffffffffffffffff821115613162576131616130cc565b5b602082029050602081019050919050565b600080fd5b600061318b61318684613147565b61312c565b905080838252602082019050602084028301858111156131ae576131ad613173565b5b835b818110156131d757806131c38882612fc8565b8452602084019350506020810190506131b0565b5050509392505050565b600082601f8301126131f6576131f56130c7565b5b8135613206848260208601613178565b91505092915050565b60006020828403121561322557613224612d72565b5b600082013567ffffffffffffffff81111561324357613242612d77565b5b61324f848285016131e1565b91505092915050565b600080fd5b600067ffffffffffffffff821115613278576132776130cc565b5b61328182612e86565b9050602081019050919050565b82818337600083830152505050565b60006132b06132ab8461325d565b61312c565b9050828152602081018484840111156132cc576132cb613258565b5b6132d784828561328e565b509392505050565b600082601f8301126132f4576132f36130c7565b5b813561330484826020860161329d565b91505092915050565b60006020828403121561332357613322612d72565b5b600082013567ffffffffffffffff81111561334157613340612d77565b5b61334d848285016132df565b91505092915050565b61335f81612f75565b82525050565b600067ffffffffffffffff82169050919050565b61338281613365565b82525050565b61339181612e01565b82525050565b6060820160008201516133ad6000850182613356565b5060208201516133c06020850182613379565b5060408201516133d36040850182613388565b50505050565b60006060820190506133ee6000830184613397565b92915050565b6133fd81612e01565b811461340857600080fd5b50565b60008135905061341a816133f4565b92915050565b6000806040838503121561343757613436612d72565b5b600061344585828601612fc8565b92505060206134568582860161340b565b9150509250929050565b600067ffffffffffffffff82111561347b5761347a6130cc565b5b61348482612e86565b9050602081019050919050565b60006134a461349f84613460565b61312c565b9050828152602081018484840111156134c0576134bf613258565b5b6134cb84828561328e565b509392505050565b600082601f8301126134e8576134e76130c7565b5b81356134f8848260208601613491565b91505092915050565b6000806000806080858703121561351b5761351a612d72565b5b600061352987828801612fc8565b945050602061353a87828801612fc8565b935050604061354b87828801612f13565b925050606085013567ffffffffffffffff81111561356c5761356b612d77565b5b613578878288016134d3565b91505092959194509250565b6000806040838503121561359b5761359a612d72565b5b60006135a985828601612fc8565b92505060206135ba85828601612fc8565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061360b57607f821691505b6020821081141561361f5761361e6135c4565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061365b602083612e42565b915061366682613625565b602082019050919050565b6000602082019050818103600083015261368a8161364e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006136cb82612ef2565b91506136d683612ef2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561370b5761370a613691565b5b828201905092915050565b7f4d617820537570706c7920526561636865642e00000000000000000000000000600082015250565b600061374c601383612e42565b915061375782613716565b602082019050919050565b6000602082019050818103600083015261377b8161373f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006137bc82612ef2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156137ef576137ee613691565b5b600182019050919050565b7f57616c6c65742066756c6c2035206d6178207065722077616c6c657400000000600082015250565b6000613830601c83612e42565b915061383b826137fa565b602082019050919050565b6000602082019050818103600083015261385f81613823565b9050919050565b7f5265616368696e67206d617820737570706c7900000000000000000000000000600082015250565b600061389c601383612e42565b91506138a782613866565b602082019050919050565b600060208201905081810360008301526138cb8161388f565b9050919050565b60006138dd82612ef2565b91506138e883612ef2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561392157613920613691565b5b828202905092915050565b7f4e6565647320746f2073656e64206d6f72652045544800000000000000000000600082015250565b6000613962601683612e42565b915061396d8261392c565b602082019050919050565b6000602082019050818103600083015261399181613955565b9050919050565b7f457863656564206d6178206d696e74696e6720616d6f756e7400000000000000600082015250565b60006139ce601983612e42565b91506139d982613998565b602082019050919050565b600060208201905081810360008301526139fd816139c1565b9050919050565b7f5075626c69632053616c65204e6f742053746172746564205965742100000000600082015250565b6000613a3a601c83612e42565b9150613a4582613a04565b602082019050919050565b60006020820190508181036000830152613a6981613a2d565b9050919050565b7f4552433732314d657461646174613a2055524920736574206f66206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613acc602c83612e42565b9150613ad782613a70565b604082019050919050565b60006020820190508181036000830152613afb81613abf565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154613b2f816135f3565b613b398186613b02565b94506001821660008114613b545760018114613b6557613b98565b60ff19831686528186019350613b98565b613b6e85613b0d565b60005b83811015613b9057815481890152600182019150602081019050613b71565b838801955050505b50505092915050565b6000613bac82612e37565b613bb68185613b02565b9350613bc6818560208601612e53565b80840191505092915050565b6000613bde8286613b22565b9150613bea8285613ba1565b9150613bf68284613b22565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613c5f602683612e42565b9150613c6a82613c03565b604082019050919050565b60006020820190508181036000830152613c8e81613c52565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613cbc82613c95565b613cc68185613ca0565b9350613cd6818560208601612e53565b613cdf81612e86565b840191505092915050565b6000608082019050613cff6000830187612f87565b613d0c6020830186612f87565b613d19604083018561301d565b8181036060830152613d2b8184613cb1565b905095945050505050565b600081519050613d4581612da8565b92915050565b600060208284031215613d6157613d60612d72565b5b6000613d6f84828501613d36565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613db282612ef2565b9150613dbd83612ef2565b925082613dcd57613dcc613d78565b5b828204905092915050565b6000613de382612ef2565b9150613dee83612ef2565b925082821015613e0157613e00613691565b5b828203905092915050565b6000613e1782612ef2565b9150613e2283612ef2565b925082613e3257613e31613d78565b5b82820690509291505056fea2646970667358221220dde3c68aa55de81202c41758ab6cb26fc77c027ed2794cb21800ae53bcbf4ed664736f6c63430008090033697066733a2f2f516d507667313458745534634d6a5a484a556d59417975423756655268424644514e43346e616f383175504266722f
Deployed Bytecode
0x60806040526004361061021e5760003560e01c80637e6182d911610123578063a035b1fe116100ab578063d5abeb011161006f578063d5abeb01146107a5578063e917a28c146107d0578063e985e9c5146107fb578063f2fde38b14610838578063f9e237991461086157610225565b8063a035b1fe146106c2578063a22cb465146106ed578063b88d4fde14610716578063c87b56dd1461073f578063d1f919ed1461077c57610225565b80639231ab2a116100f25780639231ab2a146105d85780639264274414610615578063931688cb1461063157806395d89b411461065a57806397d6696b1461068557610225565b80637e6182d91461053257806381a89b591461055b5780638da5cb5b1461058457806391b7f5ed146105af57610225565b80633ccfd60b116101a657806370a082311161017557806370a0823114610473578063714c5398146104b0578063715018a6146104db5780637c8255db146104f25780637d8966e41461051b57610225565b80633ccfd60b146103cb57806342842e0e146103e25780636352211e1461040b5780636c0360eb1461044857610225565b806312065fe0116101ed57806312065fe0146102f857806318160ddd14610323578063228025e81461034e57806323b872dd146103775780633ae1dd9d146103a057610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf57610225565b3661022557005b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190612dd4565b61088c565b60405161025e9190612e1c565b60405180910390f35b34801561027357600080fd5b5061027c61096e565b6040516102899190612ed0565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b49190612f28565b610a00565b6040516102c69190612f96565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f19190612fdd565b610a7c565b005b34801561030457600080fd5b5061030d610b87565b60405161031a919061302c565b60405180910390f35b34801561032f57600080fd5b50610338610b8f565b604051610345919061302c565b60405180910390f35b34801561035a57600080fd5b5061037560048036038101906103709190612f28565b610ba0565b005b34801561038357600080fd5b5061039e60048036038101906103999190613047565b610c26565b005b3480156103ac57600080fd5b506103b5610c36565b6040516103c29190612ed0565b60405180910390f35b3480156103d757600080fd5b506103e0610cc4565b005b3480156103ee57600080fd5b5061040960048036038101906104049190613047565b610d96565b005b34801561041757600080fd5b50610432600480360381019061042d9190612f28565b610db6565b60405161043f9190612f96565b60405180910390f35b34801561045457600080fd5b5061045d610dcc565b60405161046a9190612ed0565b60405180910390f35b34801561047f57600080fd5b5061049a6004803603810190610495919061309a565b610e5a565b6040516104a7919061302c565b60405180910390f35b3480156104bc57600080fd5b506104c5610f2a565b6040516104d29190612ed0565b60405180910390f35b3480156104e757600080fd5b506104f0610fbc565b005b3480156104fe57600080fd5b506105196004803603810190610514919061320f565b611044565b005b34801561052757600080fd5b50610530611160565b005b34801561053e57600080fd5b506105596004803603810190610554919061330d565b611208565b005b34801561056757600080fd5b50610582600480360381019061057d9190612f28565b61129e565b005b34801561059057600080fd5b50610599611324565b6040516105a69190612f96565b60405180910390f35b3480156105bb57600080fd5b506105d660048036038101906105d19190612f28565b61134d565b005b3480156105e457600080fd5b506105ff60048036038101906105fa9190612f28565b6113d3565b60405161060c91906133d9565b60405180910390f35b61062f600480360381019061062a9190612f28565b6113eb565b005b34801561063d57600080fd5b506106586004803603810190610653919061330d565b611596565b005b34801561066657600080fd5b5061066f61162c565b60405161067c9190612ed0565b60405180910390f35b34801561069157600080fd5b506106ac60048036038101906106a7919061309a565b6116be565b6040516106b9919061302c565b60405180910390f35b3480156106ce57600080fd5b506106d76116d0565b6040516106e4919061302c565b60405180910390f35b3480156106f957600080fd5b50610714600480360381019061070f9190613420565b6116d6565b005b34801561072257600080fd5b5061073d60048036038101906107389190613501565b61184e565b005b34801561074b57600080fd5b5061076660048036038101906107619190612f28565b6118a1565b6040516107739190612ed0565b60405180910390f35b34801561078857600080fd5b506107a3600480360381019061079e9190612fdd565b611920565b005b3480156107b157600080fd5b506107ba611a01565b6040516107c7919061302c565b60405180910390f35b3480156107dc57600080fd5b506107e5611a07565b6040516107f2919061302c565b60405180910390f35b34801561080757600080fd5b50610822600480360381019061081d9190613584565b611a0d565b60405161082f9190612e1c565b60405180910390f35b34801561084457600080fd5b5061085f600480360381019061085a919061309a565b611aa1565b005b34801561086d57600080fd5b50610876611b99565b6040516108839190612e1c565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061095757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610967575061096682611bac565b5b9050919050565b60606003805461097d906135f3565b80601f01602080910402602001604051908101604052809291908181526020018280546109a9906135f3565b80156109f65780601f106109cb576101008083540402835291602001916109f6565b820191906000526020600020905b8154815290600101906020018083116109d957829003601f168201915b5050505050905090565b6000610a0b82611c16565b610a41576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a8782610db6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610aef576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b0e611c51565b73ffffffffffffffffffffffffffffffffffffffff1614158015610b405750610b3e81610b39611c51565b611a0d565b155b15610b77576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b82838383611c59565b505050565b600047905090565b600060016002546001540303905090565b610ba8611c51565b73ffffffffffffffffffffffffffffffffffffffff16610bc6611324565b73ffffffffffffffffffffffffffffffffffffffff1614610c1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1390613671565b60405180910390fd5b80600f8190555050565b610c31838383611d0b565b505050565b600d8054610c43906135f3565b80601f0160208091040260200160405190810160405280929190818152602001828054610c6f906135f3565b8015610cbc5780601f10610c9157610100808354040283529160200191610cbc565b820191906000526020600020905b815481529060010190602001808311610c9f57829003601f168201915b505050505081565b610ccc611c51565b73ffffffffffffffffffffffffffffffffffffffff16610cea611324565b73ffffffffffffffffffffffffffffffffffffffff1614610d40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3790613671565b60405180910390fd5b6000479050610d4d611324565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610d92573d6000803e3d6000fd5b5050565b610db18383836040518060200160405280600081525061184e565b505050565b6000610dc1826121fc565b600001519050919050565b600c8054610dd9906135f3565b80601f0160208091040260200160405190810160405280929190818152602001828054610e05906135f3565b8015610e525780601f10610e2757610100808354040283529160200191610e52565b820191906000526020600020905b815481529060010190602001808311610e3557829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ec2576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6060600c8054610f39906135f3565b80601f0160208091040260200160405190810160405280929190818152602001828054610f65906135f3565b8015610fb25780601f10610f8757610100808354040283529160200191610fb2565b820191906000526020600020905b815481529060010190602001808311610f9557829003601f168201915b5050505050905090565b610fc4611c51565b73ffffffffffffffffffffffffffffffffffffffff16610fe2611324565b73ffffffffffffffffffffffffffffffffffffffff1614611038576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102f90613671565b60405180910390fd5b6110426000612478565b565b61104c611c51565b73ffffffffffffffffffffffffffffffffffffffff1661106a611324565b73ffffffffffffffffffffffffffffffffffffffff16146110c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b790613671565b60405180910390fd5b600f5481516110cd610b8f565b6110d791906136c0565b1115611118576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110f90613762565b60405180910390fd5b60005b815181101561115c5761114982828151811061113a57611139613782565b5b6020026020010151600161253c565b8080611154906137b1565b91505061111b565b5050565b611168611c51565b73ffffffffffffffffffffffffffffffffffffffff16611186611324565b73ffffffffffffffffffffffffffffffffffffffff16146111dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d390613671565b60405180910390fd5b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b611210611c51565b73ffffffffffffffffffffffffffffffffffffffff1661122e611324565b73ffffffffffffffffffffffffffffffffffffffff1614611284576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127b90613671565b60405180910390fd5b80600d908051906020019061129a929190612c82565b5050565b6112a6611c51565b73ffffffffffffffffffffffffffffffffffffffff166112c4611324565b73ffffffffffffffffffffffffffffffffffffffff161461131a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131190613671565b60405180910390fd5b8060098190555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611355611c51565b73ffffffffffffffffffffffffffffffffffffffff16611373611324565b73ffffffffffffffffffffffffffffffffffffffff16146113c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c090613671565b60405180910390fd5b80600e8190555050565b6113db612d08565b6113e4826121fc565b9050919050565b6000811180156113fd57506009548111155b61143c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143390613846565b60405180910390fd5b600f5481611448610b8f565b61145291906136c0565b1115611493576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148a906138b2565b60405180910390fd5b80600e546114a191906138d2565b34146114e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d990613978565b60405180910390fd5b600954816114ef336116be565b6114f991906136c0565b111561153a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611531906139e4565b60405180910390fd5b600b60009054906101000a900460ff16611589576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158090613a50565b60405180910390fd5b611593338261253c565b50565b61159e611c51565b73ffffffffffffffffffffffffffffffffffffffff166115bc611324565b73ffffffffffffffffffffffffffffffffffffffff1614611612576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160990613671565b60405180910390fd5b80600c9080519060200190611628929190612c82565b5050565b60606004805461163b906135f3565b80601f0160208091040260200160405190810160405280929190818152602001828054611667906135f3565b80156116b45780601f10611689576101008083540402835291602001916116b4565b820191906000526020600020905b81548152906001019060200180831161169757829003601f168201915b5050505050905090565b60006116c98261255a565b9050919050565b600e5481565b6116de611c51565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611743576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060086000611750611c51565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166117fd611c51565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118429190612e1c565b60405180910390a35050565b611859848484611d0b565b6118658484848461262a565b61189b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606118ac82611c16565b6118eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e290613ae2565b60405180910390fd5b600c6118f6836127b8565b600d60405160200161190a93929190613bd2565b6040516020818303038152906040529050919050565b611928611c51565b73ffffffffffffffffffffffffffffffffffffffff16611946611324565b73ffffffffffffffffffffffffffffffffffffffff161461199c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199390613671565b60405180910390fd5b600f54816119a8610b8f565b6119b291906136c0565b11156119f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ea90613762565b60405180910390fd5b6119fd828261253c565b5050565b600f5481565b60095481565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611aa9611c51565b73ffffffffffffffffffffffffffffffffffffffff16611ac7611324565b73ffffffffffffffffffffffffffffffffffffffff1614611b1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1490613671565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8490613c75565b60405180910390fd5b611b9681612478565b50565b600b60009054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482108015611c4a575060056000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611d16826121fc565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611d3d611c51565b73ffffffffffffffffffffffffffffffffffffffff161480611d705750611d6f8260000151611d6a611c51565b611a0d565b5b80611db55750611d7e611c51565b73ffffffffffffffffffffffffffffffffffffffff16611d9d84610a00565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611dee576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611e57576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611ebe576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611ecb8585856001612919565b611edb6000848460000151611c59565b6001600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836005600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166005600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561218c5760015481101561218b5782600001516005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121f5858585600161291f565b5050505050565b612204612d08565b6000829050600154811015612441576000600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161243f57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612323578092505050612473565b5b60011561243e57818060019003925050600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612439578092505050612473565b612324565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612556828260405180602001604052806000815250612925565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125c2576040517f35ebb31900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b600061264b8473ffffffffffffffffffffffffffffffffffffffff16612937565b156127ab578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612674611c51565b8786866040518563ffffffff1660e01b81526004016126969493929190613cea565b602060405180830381600087803b1580156126b057600080fd5b505af19250505080156126e157506040513d601f19601f820116820180604052508101906126de9190613d4b565b60015b61275b573d8060008114612711576040519150601f19603f3d011682016040523d82523d6000602084013e612716565b606091505b50600081511415612753576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506127b0565b600190505b949350505050565b60606000821415612800576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612914565b600082905060005b6000821461283257808061281b906137b1565b915050600a8261282b9190613da7565b9150612808565b60008167ffffffffffffffff81111561284e5761284d6130cc565b5b6040519080825280601f01601f1916602001820160405280156128805781602001600182028036833780820191505090505b5090505b6000851461290d576001826128999190613dd8565b9150600a856128a89190613e0c565b60306128b491906136c0565b60f81b8183815181106128ca576128c9613782565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129069190613da7565b9450612884565b8093505050505b919050565b50505050565b50505050565b612932838383600161294a565b505050565b600080823b905060008111915050919050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156129b8576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156129f3576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612a006000868387612919565b83600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612c6557818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4838015612c195750612c17600088848861262a565b155b15612c50576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050612b9e565b508060018190555050612c7b600086838761291f565b5050505050565b828054612c8e906135f3565b90600052602060002090601f016020900481019282612cb05760008555612cf7565b82601f10612cc957805160ff1916838001178555612cf7565b82800160010185558215612cf7579182015b82811115612cf6578251825591602001919060010190612cdb565b5b509050612d049190612d4b565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612d64576000816000905550600101612d4c565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612db181612d7c565b8114612dbc57600080fd5b50565b600081359050612dce81612da8565b92915050565b600060208284031215612dea57612de9612d72565b5b6000612df884828501612dbf565b91505092915050565b60008115159050919050565b612e1681612e01565b82525050565b6000602082019050612e316000830184612e0d565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612e71578082015181840152602081019050612e56565b83811115612e80576000848401525b50505050565b6000601f19601f8301169050919050565b6000612ea282612e37565b612eac8185612e42565b9350612ebc818560208601612e53565b612ec581612e86565b840191505092915050565b60006020820190508181036000830152612eea8184612e97565b905092915050565b6000819050919050565b612f0581612ef2565b8114612f1057600080fd5b50565b600081359050612f2281612efc565b92915050565b600060208284031215612f3e57612f3d612d72565b5b6000612f4c84828501612f13565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612f8082612f55565b9050919050565b612f9081612f75565b82525050565b6000602082019050612fab6000830184612f87565b92915050565b612fba81612f75565b8114612fc557600080fd5b50565b600081359050612fd781612fb1565b92915050565b60008060408385031215612ff457612ff3612d72565b5b600061300285828601612fc8565b925050602061301385828601612f13565b9150509250929050565b61302681612ef2565b82525050565b6000602082019050613041600083018461301d565b92915050565b6000806000606084860312156130605761305f612d72565b5b600061306e86828701612fc8565b935050602061307f86828701612fc8565b925050604061309086828701612f13565b9150509250925092565b6000602082840312156130b0576130af612d72565b5b60006130be84828501612fc8565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61310482612e86565b810181811067ffffffffffffffff82111715613123576131226130cc565b5b80604052505050565b6000613136612d68565b905061314282826130fb565b919050565b600067ffffffffffffffff821115613162576131616130cc565b5b602082029050602081019050919050565b600080fd5b600061318b61318684613147565b61312c565b905080838252602082019050602084028301858111156131ae576131ad613173565b5b835b818110156131d757806131c38882612fc8565b8452602084019350506020810190506131b0565b5050509392505050565b600082601f8301126131f6576131f56130c7565b5b8135613206848260208601613178565b91505092915050565b60006020828403121561322557613224612d72565b5b600082013567ffffffffffffffff81111561324357613242612d77565b5b61324f848285016131e1565b91505092915050565b600080fd5b600067ffffffffffffffff821115613278576132776130cc565b5b61328182612e86565b9050602081019050919050565b82818337600083830152505050565b60006132b06132ab8461325d565b61312c565b9050828152602081018484840111156132cc576132cb613258565b5b6132d784828561328e565b509392505050565b600082601f8301126132f4576132f36130c7565b5b813561330484826020860161329d565b91505092915050565b60006020828403121561332357613322612d72565b5b600082013567ffffffffffffffff81111561334157613340612d77565b5b61334d848285016132df565b91505092915050565b61335f81612f75565b82525050565b600067ffffffffffffffff82169050919050565b61338281613365565b82525050565b61339181612e01565b82525050565b6060820160008201516133ad6000850182613356565b5060208201516133c06020850182613379565b5060408201516133d36040850182613388565b50505050565b60006060820190506133ee6000830184613397565b92915050565b6133fd81612e01565b811461340857600080fd5b50565b60008135905061341a816133f4565b92915050565b6000806040838503121561343757613436612d72565b5b600061344585828601612fc8565b92505060206134568582860161340b565b9150509250929050565b600067ffffffffffffffff82111561347b5761347a6130cc565b5b61348482612e86565b9050602081019050919050565b60006134a461349f84613460565b61312c565b9050828152602081018484840111156134c0576134bf613258565b5b6134cb84828561328e565b509392505050565b600082601f8301126134e8576134e76130c7565b5b81356134f8848260208601613491565b91505092915050565b6000806000806080858703121561351b5761351a612d72565b5b600061352987828801612fc8565b945050602061353a87828801612fc8565b935050604061354b87828801612f13565b925050606085013567ffffffffffffffff81111561356c5761356b612d77565b5b613578878288016134d3565b91505092959194509250565b6000806040838503121561359b5761359a612d72565b5b60006135a985828601612fc8565b92505060206135ba85828601612fc8565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061360b57607f821691505b6020821081141561361f5761361e6135c4565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061365b602083612e42565b915061366682613625565b602082019050919050565b6000602082019050818103600083015261368a8161364e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006136cb82612ef2565b91506136d683612ef2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561370b5761370a613691565b5b828201905092915050565b7f4d617820537570706c7920526561636865642e00000000000000000000000000600082015250565b600061374c601383612e42565b915061375782613716565b602082019050919050565b6000602082019050818103600083015261377b8161373f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006137bc82612ef2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156137ef576137ee613691565b5b600182019050919050565b7f57616c6c65742066756c6c2035206d6178207065722077616c6c657400000000600082015250565b6000613830601c83612e42565b915061383b826137fa565b602082019050919050565b6000602082019050818103600083015261385f81613823565b9050919050565b7f5265616368696e67206d617820737570706c7900000000000000000000000000600082015250565b600061389c601383612e42565b91506138a782613866565b602082019050919050565b600060208201905081810360008301526138cb8161388f565b9050919050565b60006138dd82612ef2565b91506138e883612ef2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561392157613920613691565b5b828202905092915050565b7f4e6565647320746f2073656e64206d6f72652045544800000000000000000000600082015250565b6000613962601683612e42565b915061396d8261392c565b602082019050919050565b6000602082019050818103600083015261399181613955565b9050919050565b7f457863656564206d6178206d696e74696e6720616d6f756e7400000000000000600082015250565b60006139ce601983612e42565b91506139d982613998565b602082019050919050565b600060208201905081810360008301526139fd816139c1565b9050919050565b7f5075626c69632053616c65204e6f742053746172746564205965742100000000600082015250565b6000613a3a601c83612e42565b9150613a4582613a04565b602082019050919050565b60006020820190508181036000830152613a6981613a2d565b9050919050565b7f4552433732314d657461646174613a2055524920736574206f66206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613acc602c83612e42565b9150613ad782613a70565b604082019050919050565b60006020820190508181036000830152613afb81613abf565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154613b2f816135f3565b613b398186613b02565b94506001821660008114613b545760018114613b6557613b98565b60ff19831686528186019350613b98565b613b6e85613b0d565b60005b83811015613b9057815481890152600182019150602081019050613b71565b838801955050505b50505092915050565b6000613bac82612e37565b613bb68185613b02565b9350613bc6818560208601612e53565b80840191505092915050565b6000613bde8286613b22565b9150613bea8285613ba1565b9150613bf68284613b22565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613c5f602683612e42565b9150613c6a82613c03565b604082019050919050565b60006020820190508181036000830152613c8e81613c52565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613cbc82613c95565b613cc68185613ca0565b9350613cd6818560208601612e53565b613cdf81612e86565b840191505092915050565b6000608082019050613cff6000830187612f87565b613d0c6020830186612f87565b613d19604083018561301d565b8181036060830152613d2b8184613cb1565b905095945050505050565b600081519050613d4581612da8565b92915050565b600060208284031215613d6157613d60612d72565b5b6000613d6f84828501613d36565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613db282612ef2565b9150613dbd83612ef2565b925082613dcd57613dcc613d78565b5b828204905092915050565b6000613de382612ef2565b9150613dee83612ef2565b925082821015613e0157613e00613691565b5b828203905092915050565b6000613e1782612ef2565b9150613e2283612ef2565b925082613e3257613e31613d78565b5b82820690509291505056fea2646970667358221220dde3c68aa55de81202c41758ab6cb26fc77c027ed2794cb21800ae53bcbf4ed664736f6c63430008090033
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.