<!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.strokeRect(37, 50, 75, 111);

context.strokeStyle = '#000000';
context.strokeRect(115, 47, 86, 117);

context.strokeStyle = '#000000';
context.strokeRect(200, 49, 77, 115);

context.strokeStyle = '#000000';
context.strokeRect(279, 51, 83, 113);

context.strokeStyle = '#000000';
context.strokeRect(363, 52, 80, 115);

context.strokeStyle = '#000000';
context.strokeRect(46, 254, 68, 118);

context.strokeStyle = '#000000';
context.strokeRect(163, 265, 88, 120);

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(474, 201);
context.lineTo(292, 200);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(236, 201);
context.lineTo(126, 200);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(81, 199);
context.lineTo(20, 197);
context.stroke();
context.closePath();

context.lineWidth = 6;

context.lineWidth = 7;

context.lineWidth = 8;

context.lineWidth = 9;

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(388, 242);
context.lineTo(241, 239);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(347, 432);
context.lineTo(336, 285);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(487, 395);
context.lineTo(534, 260);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.save();
context.translate(499, 95.5);
context.scale(1, 0.9772727272727273);
context.beginPath();
context.arc(0, 0, 62, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#000000';
context.save();
context.translate(386.5, 281);
context.scale(1, 0.7111111111111111);
context.beginPath();
context.arc(0, 0, 55, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

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

context.strokeStyle = '#000000';
context.save();
context.translate(105.5, 428);
context.scale(1, 0.8837209302325582);
context.beginPath();
context.arc(0, 0, 57, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#000000';
context.save();
context.translate(283, 435.5);
context.scale(0.7804878048780488, 1);
context.beginPath();
context.arc(0, 0, 52, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#000000';
context.save();
context.translate(543.5, 440.5);
context.scale(0.7333333333333333, 1);
context.beginPath();
context.arc(0, 0, 56, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();
</script>
</body>
</html>