<!DOCTYPE html>

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Your Canvas</title>

<style type="text/css"><!--
#container { position: relative; }
#imageTemp { position: absolute; top: 1px; left: 1px; }
--></style>

</head>
<body>
<canvas id="imageView" width="600" height="500"></canvas>

<script type="text/javascript">
var canvas, context, canvaso, contexto;
canvaso = document.getElementById('imageView');
context = canvaso.getContext('2d');
context.lineWidth = 5;

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(193, 158);

context.lineTo(193, 158);
context.stroke();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(278, 227);

context.lineTo(278, 227);
context.stroke();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(237, 130);

context.lineTo(237, 130);
context.stroke();

context.strokeStyle = '#000000';
context.save();
context.translate(182, 159.5);
context.scale(0.88, 1);
context.beginPath();
context.arc(0, 0, 100, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#000000';
context.save();
context.translate(348, 285);
context.scale(1, 0.5);
context.beginPath();
context.arc(0, 0, 18, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#000000';
context.save();
context.translate(200.5, 179);
context.scale(0.9375, 1);
context.beginPath();
context.arc(0, 0, 22, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#000000';
context.save();
context.translate(216, 216.5);
context.scale(0.5341614906832298, 1);
context.beginPath();
context.arc(0, 0, 183, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#000000';
context.save();
context.translate(253.5, 199);
context.scale(1, 0.4463768115942029);
context.beginPath();
context.arc(0, 0, 378, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#000000';
context.save();
context.translate(311.5, 344);
context.scale(0.4270833333333333, 1);
context.beginPath();
context.arc(0, 0, 104, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#000000';
context.save();
context.translate(240.5, 256.5);
context.scale(0.087248322147651, 1);
context.beginPath();
context.arc(0, 0, 150, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#000000';
context.save();
context.translate(394.5, 238.5);
context.scale(0.937888198757764, 1);
context.beginPath();
context.arc(0, 0, 221, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#000000';
context.save();
context.translate(391.5, 215.5);
context.scale(1, 0.29411764705882354);
context.beginPath();
context.arc(0, 0, 18, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();
</script>
</body>
</html>