<!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(86, 48);

context.lineTo(87, 48);
context.stroke();

context.lineTo(89, 48);
context.stroke();

context.lineTo(95, 52);
context.stroke();

context.lineTo(106, 60);
context.stroke();

context.lineTo(129, 77);
context.stroke();

context.lineTo(157, 94);
context.stroke();

context.lineTo(178, 104);
context.stroke();

context.lineTo(205, 118);
context.stroke();

context.lineTo(228, 128);
context.stroke();

context.lineTo(240, 134);
context.stroke();

context.lineTo(255, 142);
context.stroke();

context.lineTo(261, 147);
context.stroke();

context.lineTo(266, 152);
context.stroke();

context.lineTo(270, 157);
context.stroke();

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

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

context.lineTo(277, 170);
context.stroke();

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

context.lineTo(279, 174);
context.stroke();

context.lineTo(279, 174);
context.stroke();

context.lineTo(279, 175);
context.stroke();

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

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

context.lineTo(275, 175);
context.stroke();

context.lineTo(275, 175);
context.stroke();

context.strokeStyle = '#000000';
context.save();
context.translate(289, 242);
context.scale(1, 0.8818181818181818);
context.beginPath();
context.arc(0, 0, 293, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#000000';
context.save();
context.translate(313.5, 256);
context.scale(1, 0.9781021897810219);
context.beginPath();
context.arc(0, 0, 192, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#000000';
context.save();
context.translate(336.5, 224);
context.scale(1, 0.9557522123893806);
context.beginPath();
context.arc(0, 0, 156, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();
</script>
</body>
</html>