code:

setBackgroundColor(.3,.4,.5)

//centerbox - black
setPenColor(0,0,0)
setPenWeight(.001);
//
var width=.36; // width of box
var height=.4; // height of box
var top=.3; // Y (height)starting point, upperLcorner
var left=0.32; // X (width)starting point, upperLcorner

var bottom = top + height;
var right = left + width;
drawLine(left, top, right, top);
drawLine(right, top, right, bottom);
drawLine(right, bottom, left, bottom);
drawLine(left, bottom, left, top);

//centerbox - white
setPenColor(1,1,1)
setPenWeight(.003);
//
var width=.32; // width of box
var height=.34; // height of box
var top=.33; // Y (height)starting point, upperLcorner
var left=0.34; // X (width)starting point, upperLcorner

var bottom = top + height;
var right = left + width;
drawLine(left, top, right, top);
drawLine(right, top, right, bottom);
drawLine(right, bottom, left, bottom);
drawLine(left, bottom, left, top);

//boxes from center to upper left corner
setPenColor(0,0,0)
setPenWeight(.001);

//
var width=.08; // width of box
var height=.1; // height of box
var top=.3; // Y (height)starting point, upperLcorner
var left=.24; // X (width)starting point, upperLcorner

var bottom = top + height;
var right = left + width;
drawLine(left, top, right, top);
drawLine(right, top, right, bottom);
drawLine(right, bottom, left, bottom);
drawLine(left, bottom, left, top);
//
var width=.08; // width of box
var height=.1; // height of box
var top=.2; // Y (height)starting point, upperLcorner
var left=0.16; // X (width)starting point, upperLcorner

var bottom = top + height;
var right = left + width;
drawLine(left, top, right, top);
drawLine(right, top, right, bottom);
drawLine(right, bottom, left, bottom);
drawLine(left, bottom, left, top);
//
var width=.08; // width of box
var height=.1; // height of box
var top=.1; // Y (height)starting point, upperLcorner
var left=0.08; // X (width)starting point, upperLcorner

var bottom = top + height;
var right = left + width;
drawLine(left, top, right, top);
drawLine(right, top, right, bottom);
drawLine(right, bottom, left, bottom);
drawLine(left, bottom, left, top);
//
var width=.08; // width of box
var height=.1; // height of box
var top=0; // Y (height)starting point, upperLcorner
var left=0; // X (width)starting point, upperLcorner

var bottom = top + height;
var right = left + width;
drawLine(left, top, right, top);
drawLine(right, top, right, bottom);
drawLine(right, bottom, left, bottom);
drawLine(left, bottom, left, top);

//boxes from center to upper right corner
setPenColor(0,0,0)
setPenWeight(.001);

//
var width=.08; // width of box
var height=.1; // height of box
var top=.3; // Y (height)starting point, upperLcorner
var left=.68; // X (width)starting point, upperLcorner

var bottom = top + height;
var right = left + width;
drawLine(left, top, right, top);
drawLine(right, top, right, bottom);
drawLine(right, bottom, left, bottom);
drawLine(left, bottom, left, top);
//
var width=.08; // width of box
var height=.1; // height of box
var top=.2; // Y (height)starting point, upperLcorner
var left=0.76; // X (width)starting point, upperLcorner

var bottom = top + height;
var right = left + width;
drawLine(left, top, right, top);
drawLine(right, top, right, bottom);
drawLine(right, bottom, left, bottom);
drawLine(left, bottom, left, top); //
var width=.08; // width of box
var height=.1; // height of box
var top=.1; // Y (height)starting point, upperLcorner
var left=0.84; // X (width)starting point, upperLcorner

var bottom = top + height;
var right = left + width;
drawLine(left, top, right, top);
drawLine(right, top, right, bottom);
drawLine(right, bottom, left, bottom);
drawLine(left, bottom, left, top);
//
var width=.08; // width of box
var height=.1; // height of box
var top=0; // Y (height)starting point, upperLcorner
var left=.92; // X (width)starting point, upperLcorner

var bottom = top + height;
var right = left + width;
drawLine(left, top, right, top);
drawLine(right, top, right, bottom);
drawLine(right, bottom, left, bottom);
drawLine(left, bottom, left, top);

//boxes from center to bottom right corner
setPenColor(0,0,0)
setPenWeight(.001);

//
var width=.08; // width of box
var height=.1; // height of box
var top=.6; // Y (height)starting point, upperLcorner
var left=.68; // X (width)starting point, upperLcorner

var bottom = top + height;
var right = left + width;
drawLine(left, top, right, top);
drawLine(right, top, right, bottom);
drawLine(right, bottom, left, bottom);
drawLine(left, bottom, left, top);
//
var width=.08; // width of box
var height=.1; // height of box
var top=.7; // Y (height)starting point, upperLcorner
var left=0.76; // X (width)starting point, upperLcorner

var bottom = top + height;
var right = left + width;
drawLine(left, top, right, top);
drawLine(right, top, right, bottom);
drawLine(right, bottom, left, bottom);
drawLine(left, bottom, left, top);
//
var width=.08; // width of box
var height=.1; // height of box
var top=.8; // Y (height)starting point, upperLcorner
var left=0.84; // X (width)starting point, upperLcorner

var bottom = top + height;
var right = left + width;
drawLine(left, top, right, top);
drawLine(right, top, right, bottom);
drawLine(right, bottom, left, bottom);
drawLine(left, bottom, left, top);
//
var width=.08; // width of box
var height=.1; // height of box
var top=.9; // Y (height)starting point, upperLcorner
var left=.92; // X (width)starting point, upperLcorner

var bottom = top + height;
var right = left + width;
drawLine(left, top, right, top);
drawLine(right, top, right, bottom);
drawLine(right, bottom, left, bottom);
drawLine(left, bottom, left, top);

//boxes from center to bottom left corner
setPenColor(0,0,0)
setPenWeight(.001);

//
var width=.08; // width of box
var height=.1; // height of box
var top=.6; // Y (height)starting point, upperLcorner
var left=.24; // X (width)starting point, upperLcorner

var bottom = top + height;
var right = left + width;
drawLine(left, top, right, top);
drawLine(right, top, right, bottom);
drawLine(right, bottom, left, bottom);
drawLine(left, bottom, left, top);
//
var width=.08; // width of box
var height=.1; // height of box
var top=.7; // Y (height)starting point, upperLcorner
var left=0.16; // X (width)starting point, upperLcorner

var bottom = top + height;
var right = left + width;
drawLine(left, top, right, top);
drawLine(right, top, right, bottom);
drawLine(right, bottom, left, bottom);
drawLine(left, bottom, left, top);
//
var width=.08; // width of box
var height=.1; // height of box
var top=.8; // Y (height)starting point, upperLcorner
var left=0.08; // X (width)starting point, upperLcorner

var bottom = top + height;
var right = left + width;
drawLine(left, top, right, top);
drawLine(right, top, right, bottom);
drawLine(right, bottom, left, bottom);
drawLine(left, bottom, left, top);
//
var width=.08; // width of box
var height=.1; // height of box
var top=.9; // Y (height)starting point, upperLcorner
var left=0; // X (width)starting point, upperLcorner

var bottom = top + height;
var right = left + width;
drawLine(left, top, right, top);
drawLine(right, top, right, bottom);
drawLine(right, bottom, left, bottom);
drawLine(left, bottom, left, top);

//white outline top
setPenColor(1,1,1)
setPenWeight(.003);
drawLine(.1,0, .1,.08);
drawLine(.1,.08, .175,.08);
drawLine(.175,.08, .175,.18);
drawLine(.175,.18, .258,.18);
drawLine(.258,.18, .258,.28);
drawLine(.258,.28, .745,.28);
drawLine(.745,.28, .745,.182);
drawLine(.745,.182, .825,.182);
drawLine(.825,.182, .825,.081);
drawLine(.825,.081, .905,.081);
drawLine(.905,.081, .905,0);

//white outline bottom
setPenColor(1,1,1)
setPenWeight(.003);

drawLine(.1,1, .1,.925);
drawLine(.1,.925, .175,.925);
drawLine(.175,.925, .175,.825);
drawLine(.175,.825, .258,.825);
drawLine(.258,.825, .258,.725);
drawLine(.258,.725, .745,.725);
drawLine(.745,.725, .745,.825);
drawLine(.745,.825, .825,.825);
drawLine(.825,.825, .825,.925);
drawLine(.825,.925, .905,.925);
drawLine(.905,.925, .905,1);

//white outline Lside
setPenColor(1,1,1)
setPenWeight(.003);

drawLine(0,.125, .06,.125);
drawLine(.06,.125, .06,.225);
drawLine(.06,.225, .14,.225);
drawLine(.14,.225, .14,.325);
drawLine(.14,.325, .22,.325);
drawLine(.22,.325, .22,.425);
drawLine(.22,.425, .3,.425);
drawLine(.3,.425, .3,.575);
drawLine(.3,.575, .22,.575);
drawLine(.22,.575, .22,.675);
drawLine(.22,.675, .14,.675);
drawLine(.14,.675, .14,.775);
drawLine(.14,.775, .06,.775);
drawLine(.06,.775, .06,.875);
drawLine(.06,.875, 0,.875);

//white outline Rside
setPenColor(1,1,1)
setPenWeight(.003);

drawLine(1,.125, .94,.125);
drawLine(.94,.125, .94,.225);
drawLine(.94,.225, .86,.225);
drawLine(.86,.225, .86,.325);
drawLine(.86,.325, .78,.325);
drawLine(.78,.325, .78,.425);
drawLine(.78,.425, .7,.425);
drawLine(.7,.425, .7,.575);
drawLine(.7,.575, .78,.575);
drawLine(.78,.575, .78,.675);
drawLine(.78,.675, .86,.675);
drawLine(.86,.675, .86,.775);
drawLine(.86,.775, .94,.775);
drawLine(.94,.775, .94,.875);
drawLine(.94,.875, 1,.875);

//
//

stop();>