<!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(213, 117);

context.lineTo(216, 119);
context.stroke();

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

context.lineTo(271, 131);
context.stroke();

context.lineTo(317, 135);
context.stroke();

context.lineTo(360, 140);
context.stroke();

context.lineTo(389, 140);
context.stroke();

context.lineTo(404, 141);
context.stroke();

context.lineTo(408, 141);
context.stroke();

context.lineTo(409, 141);
context.stroke();

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

context.lineTo(408, 149);
context.stroke();

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

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

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

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

context.lineTo(392, 190);
context.stroke();

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

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

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

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

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

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

context.lineTo(387, 202);
context.stroke();

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

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

context.lineTo(375, 202);
context.stroke();

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

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

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

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

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

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

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

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

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

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

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

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

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

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

context.strokeStyle = '#000000';
context.strokeRect(142, 169, 116, 134);

context.strokeStyle = '#000000';
context.strokeRect(83, 264, 239, 85);

context.strokeStyle = '#000000';
context.strokeRect(285, 314, 98, 96);

context.strokeStyle = '#000000';
context.strokeRect(54, 317, 113, 50);

context.strokeStyle = '#000000';
context.save();
context.translate(118, 140);
context.scale(1, 0.6470588235294118);
context.beginPath();
context.arc(0, 0, 121, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();
</script>
</body>
</html>