<!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(9, 11);
context.lineTo(599, 499);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(598, 0);
context.lineTo(0, 499);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.strokeRect(121, 98, 354, 300);

context.strokeStyle = '#000000';
context.save();
context.translate(246.5, 213);
context.scale(1, 0.9156626506024096);
context.beginPath();
context.arc(0, 0, 338, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#000000';
context.save();
context.translate(399, 195);
context.scale(0.9121621621621622, 1);
context.beginPath();
context.arc(0, 0, 401, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#000000';
context.save();
context.translate(403, 190);
context.scale(0.9591836734693877, 1);
context.beginPath();
context.arc(0, 0, 407, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#000000';
context.save();
context.translate(184, 195.5);
context.scale(0.8754208754208754, 1);
context.beginPath();
context.arc(0, 0, 395, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#000000';
context.save();
context.translate(169, 199.5);
context.scale(0.9571984435797666, 1);
context.beginPath();
context.arc(0, 0, 356, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#000000';
context.save();
context.translate(322, 156);
context.scale(0.9411764705882353, 1);
context.beginPath();
context.arc(0, 0, 47, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#000000';
context.save();
context.translate(279, 339.5);
context.scale(1, 0.96875);
context.beginPath();
context.arc(0, 0, 45, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#000000';
context.save();
context.translate(406, 243.5);
context.scale(0.9032258064516129, 1);
context.beginPath();
context.arc(0, 0, 42, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

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

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(352, 120);
context.lineTo(289, 184);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(436, 217);
context.lineTo(380, 275);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(314, 310);
context.lineTo(248, 370);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(208, 200);
context.lineTo(152, 259);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(119, 95);
context.lineTo(306, 13);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(303, 9);
context.lineTo(474, 98);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(123, 93);
context.lineTo(52, 241);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(53, 239);
context.lineTo(120, 393);
context.stroke();
context.closePath();
</script>
</body>
</html>