<!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 = '#141CFF';
context.strokeRect(207, 40, 51, 39);

context.strokeStyle = '#141CFF';
context.save();
context.translate(229, 97.5);
context.scale(1, 0.5);
context.beginPath();
context.arc(0, 0, 38, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#141CFF';
context.save();
context.translate(214.5, 157.5);
context.scale(0.7575757575757576, 1);
context.beginPath();
context.arc(0, 0, 41, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#141CFF';
context.save();
context.translate(212, 268.5);
context.scale(0.5901639344262295, 1);
context.beginPath();
context.arc(0, 0, 71, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#141CFF';
context.beginPath();
context.moveTo(243, 145);

context.lineTo(244, 145);
context.stroke();

context.strokeStyle = '#141CFF';
context.strokeRect(244, 139, 0, 1);

context.strokeStyle = '#141CFF';
context.strokeRect(241, 137, 92, 7);

context.strokeStyle = '#141CFF';
context.beginPath();
context.moveTo(186, 139);
context.lineTo(96, 136);
context.stroke();
context.closePath();

context.strokeStyle = '#141CFF';
context.beginPath();
context.moveTo(181, 149);
context.lineTo(96, 145);
context.stroke();
context.closePath();

context.strokeStyle = '#141CFF';
context.beginPath();
context.moveTo(95, 64);
context.lineTo(93, 318);
context.stroke();
context.closePath();

context.strokeStyle = '#141CFF';
context.save();
context.translate(210.5, 87.5);
context.scale(1, 0.6);
context.beginPath();
context.arc(0, 0, 6, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#141CFF';
context.save();
context.translate(245.5, 87.5);
context.scale(1, 0.6);
context.beginPath();
context.arc(0, 0, 6, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#141CFF';
context.beginPath();
context.moveTo(227, 97);

context.strokeStyle = '#141CFF';
context.beginPath();
context.moveTo(230, 95);
context.lineTo(207, 105);
context.stroke();
context.closePath();

context.strokeStyle = '#141CFF';
context.beginPath();
context.moveTo(227, 93);
context.lineTo(229, 108);
context.stroke();
context.closePath();

context.strokeStyle = '#141CFF';
context.beginPath();
context.moveTo(227, 104);
context.lineTo(209, 106);
context.stroke();
context.closePath();

context.strokeStyle = '#141CFF';
context.beginPath();
context.moveTo(212, 111);
context.lineTo(233, 112);
context.stroke();
context.closePath();
</script>
</body>
</html>