<!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.save();
context.translate(62, 49);
context.scale(1, 1);
context.beginPath();
context.arc(0, 0, 17, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

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

context.strokeStyle = '#000000';
context.save();
context.translate(62, 151);
context.scale(1, 1);
context.beginPath();
context.arc(0, 0, 17, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

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

context.strokeStyle = '#FFFFFF';
context.beginPath();
context.moveTo(173, 29);

context.lineTo(173, 29);
context.stroke();

context.lineTo(172, 28);
context.stroke();

context.lineTo(169, 26);
context.stroke();

context.lineTo(168, 26);
context.stroke();

context.lineTo(166, 25);
context.stroke();

context.lineTo(166, 24);
context.stroke();

context.lineTo(165, 24);
context.stroke();

context.lineTo(165, 23);
context.stroke();

context.lineTo(164, 22);
context.stroke();

context.lineTo(163, 22);
context.stroke();

context.lineTo(162, 22);
context.stroke();

context.lineTo(161, 22);
context.stroke();

context.lineTo(161, 22);
context.stroke();

context.lineTo(161, 22);
context.stroke();

context.lineTo(162, 22);
context.stroke();

context.lineTo(163, 22);
context.stroke();

context.lineTo(164, 22);
context.stroke();

context.lineTo(165, 22);
context.stroke();

context.lineTo(168, 22);
context.stroke();

context.lineTo(173, 22);
context.stroke();

context.lineTo(176, 21);
context.stroke();

context.lineTo(180, 20);
context.stroke();

context.lineTo(181, 19);
context.stroke();

context.lineTo(182, 19);
context.stroke();

context.lineTo(184, 19);
context.stroke();

context.lineTo(185, 19);
context.stroke();

context.lineTo(187, 19);
context.stroke();

context.lineTo(187, 18);
context.stroke();

context.lineTo(188, 18);
context.stroke();

context.lineTo(189, 18);
context.stroke();

context.lineTo(189, 17);
context.stroke();

context.lineTo(191, 16);
context.stroke();

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

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

context.lineTo(194, 14);
context.stroke();

context.lineTo(195, 13);
context.stroke();

context.lineTo(196, 13);
context.stroke();

context.lineTo(197, 12);
context.stroke();

context.lineTo(197, 11);
context.stroke();

context.lineTo(198, 11);
context.stroke();

context.lineTo(199, 10);
context.stroke();

context.lineTo(199, 10);
context.stroke();

context.lineTo(200, 9);
context.stroke();

context.lineTo(201, 9);
context.stroke();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(297, 43);
context.lineTo(359, 42);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(297, 87);
context.lineTo(356, 89);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(300, 135);
context.lineTo(357, 134);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(304, 182);
context.lineTo(362, 183);
context.stroke();
context.closePath();
</script>
</body>
</html>