functionsafeMint(address to)publiconlyOwner{ _tokenIdCounter+=1; _safeMint(to,_tokenIdCounter); } // The following functions are overrides required by Solidity. function_burn(uint256 tokenId)internaloverride(ERC721,ERC721URIStorage){ super._burn(tokenId); ...