https://github.com/code-423n4/2023-10-party/blob/b23c65d62a20921c709582b0b76b387f2bb9ebb5/contracts/renderers/RendererBase.sol#L26
The RendererBase abstract contract defines a function contractURI() virtual function. This definition is unnecessary, because RendererBase is an abstract child of IERC721Renderer, and this condition is sufficient to enforce at compile-time the presence of an implementation in its children.
Consider removing it.
