import static util.SVGUtil.*;

public class Sue {

    public static void main(String[] args) {
   

        start();
        rulers();
    
        strokeWeight(1);
        stroke(rgb255(0, 0, 0));
    
        fill(rgb255(0, 0, 255));
        ellipse(150, 100, 150, 150);
    
        noStroke();
        fill(rgb255(255, 255, 255));
        ellipse(150, 120, 120, 120);
    
        strokeWeight(1);
        stroke(rgb255(0, 0, 0));
    
        fill(rgb255(255, 0, 0));
        ellipse(150, 120, 75, 75);
    
        noStroke();
        fill(rgb255(255, 255, 255));
        rect(110, 75, 80, 45);
    
        strokeWeight(1);
        stroke(rgb255(0, 0, 0));
    
    
        fill(rgb255(255, 255, 255));
        ellipse(135, 60, 30, 40);
        ellipse(165, 60, 30, 40);
    
        fill(rgb255(0, 0, 0));
        ellipse(142, 60, 13, 20);
        ellipse(158, 60, 13, 20);
    
        fill(rgb255(255, 0, 0));
        ellipse(150, 85, 20, 20);
    
        line(150, 95, 150, 120);
    
        stroke(rgb255(0, 0, 0));
    
        line(80, 65, 120, 90);   
        line(70, 100, 120, 100);
        line(80, 135, 120, 110);  

        line(220, 65, 180, 90);   
        line(230, 100, 180, 100);
        line(220, 135, 180, 110);  
    
        finish();
    }
}
