<!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(18, 27);

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

context.lineTo(31, 31);
context.stroke();

context.lineTo(42, 34);
context.stroke();

context.lineTo(61, 43);
context.stroke();

context.lineTo(107, 58);
context.stroke();

context.lineTo(143, 68);
context.stroke();

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

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

context.lineTo(217, 100);
context.stroke();

context.lineTo(229, 108);
context.stroke();

context.lineTo(235, 111);
context.stroke();

context.lineTo(236, 111);
context.stroke();

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

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

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(228, 15);

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

context.lineTo(238, 35);
context.stroke();

context.lineTo(250, 61);
context.stroke();

context.lineTo(254, 78);
context.stroke();

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

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

context.lineTo(258, 98);
context.stroke();

context.lineTo(258, 99);
context.stroke();

context.lineTo(258, 100);
context.stroke();

context.lineTo(258, 100);
context.stroke();

context.strokeStyle = '#000000';
context.strokeRect(67, 93, 118, 169);

context.strokeStyle = '#000000';
context.save();
context.translate(426.5, 235.5);
context.scale(1, 0.4336283185840708);
context.beginPath();
context.arc(0, 0, 123, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();
</script>
</body>
</html>