//SPDX-License-Identifier: MIT pragma solidity >=0.8.11 <0.9.0; import "../../token/ERC721.sol"; contract ERC721Mock is ERC721 { function initialize( string memory tokenName, string memory tokenSymbol, string memory baseURL ) public { _initialize(tokenName, tokenSymbol, baseURL); } function mint(uint256 tokenId) external { _mint(ERC2771Context._msgSender(), tokenId); } function mintTo(address to, uint256 tokenId) external { _mint(to, tokenId); } function burn(uint256 tokenId) external { _burn(tokenId); } }