<!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.save();
context.translate(59, 97);
context.scale(1, 0.8888888888888888);
context.beginPath();
context.arc(0, 0, 24, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(89, 96);
context.lineTo(503, 97);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.save();
context.translate(517.5, 103);
context.scale(0.4642857142857143, 1);
context.beginPath();
context.arc(0, 0, 31, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#000000';
context.save();
context.translate(181.5, 89.5);
context.scale(0.8947368421052632, 1);
context.beginPath();
context.arc(0, 0, 25, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#000000';
context.save();
context.translate(300, 83.5);
context.scale(0.7619047619047619, 1);
context.beginPath();
context.arc(0, 0, 26, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#000000';
context.save();
context.translate(398, 87);
context.scale(1, 0.9090909090909091);
context.beginPath();
context.arc(0, 0, 30, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(516, 133);
context.lineTo(513, 264);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.save();
context.translate(516.5, 273);
context.scale(0.95, 1);
context.beginPath();
context.arc(0, 0, 28, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#000000';
context.save();
context.translate(528, 304.5);
context.scale(0, 1);
context.beginPath();
context.arc(0, 0, 41, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.lineWidth = 6;

context.lineWidth = 5;

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(483, 268);
context.lineTo(66, 266);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.save();
context.translate(60, 270);
context.scale(0.4, 1);
context.beginPath();
context.arc(0, 0, 22, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#000000';
context.save();
context.translate(164, 258);
context.scale(1, 0.6923076923076923);
context.beginPath();
context.arc(0, 0, 32, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#000000';
context.save();
context.translate(292, 241);
context.scale(1, 1);
context.beginPath();
context.arc(0, 0, 28, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#000000';
context.save();
context.translate(410.5, 237);
context.scale(1, 0.9655172413793104);
context.beginPath();
context.arc(0, 0, 40, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();
</script>
</body>
</html>