That is made with this code:
\documentclass{article}
\usepackage{tikz}
\usepackage{amssymb,amsthm,amsmath}
\usetikzlibrary{shapes,positioning,intersections,quotes}
\begin{document}
\begin{center}
\begin{tikzpicture}
\draw [rotate=270] (0,0) arc (180:0:1);
\draw [rotate=270] (-2,0) arc (180:0:1);
\draw (0,0) circle (2cm);
\draw[dashed] (0,2.5) -- (0,-2.5);
\draw[dashed](-2.5,0) -- (2.5,0);
\draw (0,0) -- (-1.1547,1.9);
\draw (0,0) -- (-1.01,2);
\draw [rotate=120](0,0) -- (-1.1547,1.9);
\draw [rotate=120](0,0) -- (-1.01,2);
\filldraw[black] (1.2,0) circle (0pt)
node[anchor=west] {$S_0$};
\filldraw[black] (-1.2,0) circle (0pt)
node[anchor=west] {$S_3$};
\filldraw[black] (0,1.2) circle (0pt)
node[anchor=west] {$S_1$};
\filldraw[black] (0,-1.2) circle (0pt)
node[anchor=west] {$S_2$};
\filldraw[black] (-1,2.1) circle (0pt)
node[anchor=west] {\tiny{$R_1$}};
\end{tikzpicture}
\end{center}
\end{document}
And I want to know if there is a way to color in gray the zone that is between the 2 lines (in both zones). Any ideas? Thanks.

