<!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(229, 100);

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

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

context.lineTo(224, 117);
context.stroke();

context.lineTo(220, 120);
context.stroke();

context.lineTo(186, 144);
context.stroke();

context.lineTo(160, 159);
context.stroke();

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

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

context.lineTo(105, 183);
context.stroke();

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

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

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

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

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

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

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

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

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

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

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

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

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

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(372, 183);

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(290, 163);

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(341, 59);

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

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

context.lineTo(341, 65);
context.stroke();

context.lineTo(340, 70);
context.stroke();

context.lineTo(339, 73);
context.stroke();

context.lineTo(336, 80);
context.stroke();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(143, 233);
context.lineTo(267, 226);
context.stroke();
context.closePath();

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

context.strokeStyle = '#000000';
context.strokeRect(100, 131, 395, 170);

context.strokeStyle = '#000000';
context.strokeRect(29, 212, 527, 109);
</script>
</body>
</html>