From ee5ccf77a0d6078503d096f812d6abda032e06d6 Mon Sep 17 00:00:00 2001 From: Humza Shahid Date: Thu, 28 Aug 2025 23:08:30 +0100 Subject: [PATCH] update/port over right-walking frames --- fcore/level/player/player-vec.sml | 10 +- .../sprites/walk/player-walk-right-1.sml | 5540 ++++++++++++++-- .../sprites/walk/player-walk-right-2.sml | 5630 ++++++++++++++-- .../sprites/walk/player-walk-right-3.sml | 5750 +++++++++++++++-- .../sprites/walk/player-walk-right-4.sml | 5630 ++++++++++++++-- .../sprites/walk/player-walk-right-5.sml | 5540 ++++++++++++++-- .../sprites/walk/player-walk-right-6.sml | 5750 +++++++++++++++-- .../sprites/walk/player-walk-right-7.sml | 5720 ++++++++++++++-- .../sprites/walk/player-walk-right-8.sml | 5630 +++++++++++++++- .../sprites/walk/player-walk-right-9.sml | 403 -- oms.mlb | 1 - 11 files changed, 42187 insertions(+), 3417 deletions(-) delete mode 100644 fcore/level/player/sprites/walk/player-walk-right-9.sml diff --git a/fcore/level/player/player-vec.sml b/fcore/level/player/player-vec.sml index 578529d..c731a4c 100644 --- a/fcore/level/player/player-vec.sml +++ b/fcore/level/player/player-vec.sml @@ -12,14 +12,6 @@ struct , PlayerWalkRight6.lerp , PlayerWalkRight7.lerp , PlayerWalkRight8.lerp - , PlayerWalkRight9.lerp - , PlayerWalkRight8.lerp - , PlayerWalkRight7.lerp - , PlayerWalkRight6.lerp - , PlayerWalkRight5.lerp - , PlayerWalkRight4.lerp - , PlayerWalkRight3.lerp - , PlayerWalkRight2.lerp ] val walkLeftFrames = @@ -51,7 +43,7 @@ struct fun getWhenOnGround (player, rx, ry, dw, dh, ww, wh) = case #xAxis player of MOVE_RIGHT => - getWalk (rx, ry, dw, dh, ww, wh, walkLeftFrames, #animTimer player) + getWalk (rx, ry, dw, dh, ww, wh, walkRightFrames, #animTimer player) | MOVE_LEFT => getWalk (rx, ry, dw, dh, ww, wh, walkLeftFrames, #animTimer player) | STAY_STILL => getIdle (player, rx, ry, dw, dh, ww, wh) diff --git a/fcore/level/player/sprites/walk/player-walk-right-1.sml b/fcore/level/player/sprites/walk/player-walk-right-1.sml index 9fc4ca5..ad11043 100644 --- a/fcore/level/player/sprites/walk/player-walk-right-1.sml +++ b/fcore/level/player/sprites/walk/player-walk-right-1.sml @@ -1,373 +1,5177 @@ structure PlayerWalkRight1 = struct - fun lerp (startX, startY, drawWidth, drawHeight, windowWidth, windowHeight, r, g, b) : Real32.real vector = + fun xToNdc (xOffset, xpos, scale, halfWidth) = + ((xpos * scale + xOffset) - halfWidth) / halfWidth + + fun yToNdc (yOffset, ypos, scale, halfHeight) = + ~(((ypos * scale + yOffset) - halfHeight) / halfHeight) + + fun lerp (xOffset: Real32.real, yOffset, scale, windowWidth, windowHeight) = let - val endY = windowHeight - startY - val startY = windowHeight - (startY + drawHeight) - val endX = startX + drawWidth - val windowHeight = windowHeight / 2.0 - val windowWidth = windowWidth / 2.0 + val halfWidth = windowWidth / 2.0 + val halfHeight = windowHeight / 2.0 in - #[ (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0)) + (endY * 0.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0499999821186)) + (endY * 0.0499999821186)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.3125)) + (endX * 0.3125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0499999821186)) + (endY * 0.0499999821186)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.3125)) + (endX * 0.3125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0499999821186)) + (endY * 0.0499999821186)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.3125)) + (endX * 0.3125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0)) + (endY * 0.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0)) + (endY * 0.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.3125)) + (endX * 0.3125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0499999821186)) + (endY * 0.0499999821186)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.3125)) + (endX * 0.3125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0499999821186)) + (endY * 0.0499999821186)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.3125)) + (endX * 0.3125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0499999821186)) + (endY * 0.0499999821186)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0)) + (endY * 0.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.150000035763)) + (endY * 0.150000035763)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.6875)) + (endX * 0.6875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.150000035763)) + (endY * 0.150000035763)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.6875)) + (endX * 0.6875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.150000035763)) + (endY * 0.150000035763)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.6875)) + (endX * 0.6875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0)) + (endY * 0.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0)) + (endY * 0.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.6875)) + (endX * 0.6875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.150000035763)) + (endY * 0.150000035763)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.150000035763)) + (endY * 0.150000035763)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.6875)) + (endX * 0.6875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.150000035763)) + (endY * 0.150000035763)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.6875)) + (endX * 0.6875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0)) + (endX * 0.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0)) + (endX * 0.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0)) + (endX * 0.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0 - ] - end + #[ +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 32.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 32.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 32.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 0.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 0.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 0.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 32.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 32.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 32.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000 + ] + end end diff --git a/fcore/level/player/sprites/walk/player-walk-right-2.sml b/fcore/level/player/sprites/walk/player-walk-right-2.sml index e008dc6..83a8f74 100644 --- a/fcore/level/player/sprites/walk/player-walk-right-2.sml +++ b/fcore/level/player/sprites/walk/player-walk-right-2.sml @@ -1,403 +1,5237 @@ structure PlayerWalkRight2 = struct - fun lerp (startX, startY, drawWidth, drawHeight, windowWidth, windowHeight, r, g, b) : Real32.real vector = + fun xToNdc (xOffset, xpos, scale, halfWidth) = + ((xpos * scale + xOffset) - halfWidth) / halfWidth + + fun yToNdc (yOffset, ypos, scale, halfHeight) = + ~(((ypos * scale + yOffset) - halfHeight) / halfHeight) + + fun lerp (xOffset: Real32.real, yOffset, scale, windowWidth, windowHeight) = let - val endY = windowHeight - startY - val startY = windowHeight - (startY + drawHeight) - val endX = startX + drawWidth - val windowHeight = windowHeight / 2.0 - val windowWidth = windowWidth / 2.0 + val halfWidth = windowWidth / 2.0 + val halfHeight = windowHeight / 2.0 in - #[ (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0)) + (endY * 0.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.3125)) + (endX * 0.3125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.3125)) + (endX * 0.3125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.3125)) + (endX * 0.3125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0)) + (endY * 0.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0)) + (endY * 0.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.3125)) + (endX * 0.3125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.3125)) + (endX * 0.3125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.3125)) + (endX * 0.3125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.5625)) + (endX * 0.5625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0499999821186)) + (endY * 0.0499999821186)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0)) + (endY * 0.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0499999821186)) + (endY * 0.0499999821186)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.5625)) + (endX * 0.5625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0499999821186)) + (endY * 0.0499999821186)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.5625)) + (endX * 0.5625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0)) + (endY * 0.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0)) + (endY * 0.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0499999821186)) + (endY * 0.0499999821186)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.150000035763)) + (endY * 0.150000035763)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.6875)) + (endX * 0.6875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.150000035763)) + (endY * 0.150000035763)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.6875)) + (endX * 0.6875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.150000035763)) + (endY * 0.150000035763)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.6875)) + (endX * 0.6875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0499999821186)) + (endY * 0.0499999821186)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0499999821186)) + (endY * 0.0499999821186)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.6875)) + (endX * 0.6875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.150000035763)) + (endY * 0.150000035763)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.150000035763)) + (endY * 0.150000035763)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.6875)) + (endX * 0.6875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.150000035763)) + (endY * 0.150000035763)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.6875)) + (endX * 0.6875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0)) + (endX * 0.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0)) + (endX * 0.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0)) + (endX * 0.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0 - ] - end + #[ +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 32.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 32.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 32.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000 + ] + end end diff --git a/fcore/level/player/sprites/walk/player-walk-right-3.sml b/fcore/level/player/sprites/walk/player-walk-right-3.sml index 8a7fdb4..a6f0bac 100644 --- a/fcore/level/player/sprites/walk/player-walk-right-3.sml +++ b/fcore/level/player/sprites/walk/player-walk-right-3.sml @@ -1,373 +1,5387 @@ structure PlayerWalkRight3 = struct - fun lerp (startX, startY, drawWidth, drawHeight, windowWidth, windowHeight, r, g, b) : Real32.real vector = + fun xToNdc (xOffset, xpos, scale, halfWidth) = + ((xpos * scale + xOffset) - halfWidth) / halfWidth + + fun yToNdc (yOffset, ypos, scale, halfHeight) = + ~(((ypos * scale + yOffset) - halfHeight) / halfHeight) + + fun lerp (xOffset: Real32.real, yOffset, scale, windowWidth, windowHeight) = let - val endY = windowHeight - startY - val startY = windowHeight - (startY + drawHeight) - val endX = startX + drawWidth - val windowHeight = windowHeight / 2.0 - val windowWidth = windowWidth / 2.0 + val halfWidth = windowWidth / 2.0 + val halfHeight = windowHeight / 2.0 in - #[ (((startX * (1.0 - 0.5625)) + (endX * 0.5625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0499999821186)) + (endY * 0.0499999821186)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.5625)) + (endX * 0.5625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.6875)) + (endX * 0.6875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.5625)) + (endX * 0.5625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0499999821186)) + (endY * 0.0499999821186)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.6875)) + (endX * 0.6875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0499999821186)) + (endY * 0.0499999821186)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.6875)) + (endX * 0.6875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.6875)) + (endX * 0.6875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.6875)) + (endX * 0.6875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.6875)) + (endX * 0.6875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0)) + (endY * 0.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.150000035763)) + (endY * 0.150000035763)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.3125)) + (endX * 0.3125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.150000035763)) + (endY * 0.150000035763)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.3125)) + (endX * 0.3125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.150000035763)) + (endY * 0.150000035763)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.3125)) + (endX * 0.3125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0)) + (endY * 0.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0)) + (endY * 0.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.3125)) + (endX * 0.3125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.150000035763)) + (endY * 0.150000035763)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.3125)) + (endX * 0.3125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.150000035763)) + (endY * 0.150000035763)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.3125)) + (endX * 0.3125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.150000035763)) + (endY * 0.150000035763)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0)) + (endX * 0.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0)) + (endX * 0.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0)) + (endX * 0.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0 - ] - end + #[ +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000 + ] + end end diff --git a/fcore/level/player/sprites/walk/player-walk-right-4.sml b/fcore/level/player/sprites/walk/player-walk-right-4.sml index cd98715..8580e06 100644 --- a/fcore/level/player/sprites/walk/player-walk-right-4.sml +++ b/fcore/level/player/sprites/walk/player-walk-right-4.sml @@ -1,433 +1,5207 @@ structure PlayerWalkRight4 = struct - fun lerp (startX, startY, drawWidth, drawHeight, windowWidth, windowHeight, r, g, b) : Real32.real vector = + fun xToNdc (xOffset, xpos, scale, halfWidth) = + ((xpos * scale + xOffset) - halfWidth) / halfWidth + + fun yToNdc (yOffset, ypos, scale, halfHeight) = + ~(((ypos * scale + yOffset) - halfHeight) / halfHeight) + + fun lerp (xOffset: Real32.real, yOffset, scale, windowWidth, windowHeight) = let - val endY = windowHeight - startY - val startY = windowHeight - (startY + drawHeight) - val endX = startX + drawWidth - val windowHeight = windowHeight / 2.0 - val windowWidth = windowWidth / 2.0 + val halfWidth = windowWidth / 2.0 + val halfHeight = windowHeight / 2.0 in - #[ (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0499999821186)) + (endY * 0.0499999821186)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0499999821186)) + (endY * 0.0499999821186)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0499999821186)) + (endY * 0.0499999821186)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.150000035763)) + (endY * 0.150000035763)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.6875)) + (endX * 0.6875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.150000035763)) + (endY * 0.150000035763)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.6875)) + (endX * 0.6875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.150000035763)) + (endY * 0.150000035763)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.6875)) + (endX * 0.6875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.6875)) + (endX * 0.6875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.150000035763)) + (endY * 0.150000035763)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.150000035763)) + (endY * 0.150000035763)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.6875)) + (endX * 0.6875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.150000035763)) + (endY * 0.150000035763)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.6875)) + (endX * 0.6875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.4375)) + (endX * 0.4375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0)) + (endY * 0.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.4375)) + (endX * 0.4375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0499999821186)) + (endY * 0.0499999821186)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0499999821186)) + (endY * 0.0499999821186)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0499999821186)) + (endY * 0.0499999821186)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0)) + (endY * 0.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.4375)) + (endX * 0.4375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0)) + (endY * 0.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0499999821186)) + (endY * 0.0499999821186)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.3125)) + (endX * 0.3125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.3125)) + (endX * 0.3125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.3125)) + (endX * 0.3125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0499999821186)) + (endY * 0.0499999821186)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0499999821186)) + (endY * 0.0499999821186)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.3125)) + (endX * 0.3125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.3125)) + (endX * 0.3125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.3125)) + (endX * 0.3125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0)) + (endX * 0.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0)) + (endX * 0.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0)) + (endX * 0.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0 - ] - end + #[ +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 0.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 0.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 0.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 32.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 32.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 32.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000 + ] + end end diff --git a/fcore/level/player/sprites/walk/player-walk-right-5.sml b/fcore/level/player/sprites/walk/player-walk-right-5.sml index 68e103e..0735ae3 100644 --- a/fcore/level/player/sprites/walk/player-walk-right-5.sml +++ b/fcore/level/player/sprites/walk/player-walk-right-5.sml @@ -1,373 +1,5177 @@ structure PlayerWalkRight5 = struct - fun lerp (startX, startY, drawWidth, drawHeight, windowWidth, windowHeight, r, g, b) : Real32.real vector = + fun xToNdc (xOffset, xpos, scale, halfWidth) = + ((xpos * scale + xOffset) - halfWidth) / halfWidth + + fun yToNdc (yOffset, ypos, scale, halfHeight) = + ~(((ypos * scale + yOffset) - halfHeight) / halfHeight) + + fun lerp (xOffset: Real32.real, yOffset, scale, windowWidth, windowHeight) = let - val endY = windowHeight - startY - val startY = windowHeight - (startY + drawHeight) - val endX = startX + drawWidth - val windowHeight = windowHeight / 2.0 - val windowWidth = windowWidth / 2.0 + val halfWidth = windowWidth / 2.0 + val halfHeight = windowHeight / 2.0 in - #[ (((startX * (1.0 - 0.5625)) + (endX * 0.5625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0499999821186)) + (endY * 0.0499999821186)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.6875)) + (endX * 0.6875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0499999821186)) + (endY * 0.0499999821186)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.6875)) + (endX * 0.6875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.6875)) + (endX * 0.6875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.5625)) + (endX * 0.5625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.5625)) + (endX * 0.5625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0499999821186)) + (endY * 0.0499999821186)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.6875)) + (endX * 0.6875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.6875)) + (endX * 0.6875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.6875)) + (endX * 0.6875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0)) + (endY * 0.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.3125)) + (endX * 0.3125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.3125)) + (endX * 0.3125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.3125)) + (endX * 0.3125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0)) + (endY * 0.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0)) + (endY * 0.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.3125)) + (endX * 0.3125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.3125)) + (endX * 0.3125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.3125)) + (endX * 0.3125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0)) + (endX * 0.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0)) + (endX * 0.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0)) + (endX * 0.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0 - ] - end + #[ +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 32.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 32.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 32.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 0.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 0.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 0.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 32.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 32.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 32.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000 + ] + end end diff --git a/fcore/level/player/sprites/walk/player-walk-right-6.sml b/fcore/level/player/sprites/walk/player-walk-right-6.sml index 96be42d..f801384 100644 --- a/fcore/level/player/sprites/walk/player-walk-right-6.sml +++ b/fcore/level/player/sprites/walk/player-walk-right-6.sml @@ -1,373 +1,5387 @@ structure PlayerWalkRight6 = struct - fun lerp (startX, startY, drawWidth, drawHeight, windowWidth, windowHeight, r, g, b) : Real32.real vector = + fun xToNdc (xOffset, xpos, scale, halfWidth) = + ((xpos * scale + xOffset) - halfWidth) / halfWidth + + fun yToNdc (yOffset, ypos, scale, halfHeight) = + ~(((ypos * scale + yOffset) - halfHeight) / halfHeight) + + fun lerp (xOffset: Real32.real, yOffset, scale, windowWidth, windowHeight) = let - val endY = windowHeight - startY - val startY = windowHeight - (startY + drawHeight) - val endX = startX + drawWidth - val windowHeight = windowHeight / 2.0 - val windowWidth = windowWidth / 2.0 + val halfWidth = windowWidth / 2.0 + val halfHeight = windowHeight / 2.0 in - #[ (((startX * (1.0 - 0.6875)) + (endX * 0.6875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0)) + (endY * 0.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.6875)) + (endX * 0.6875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0)) + (endY * 0.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.6875)) + (endX * 0.6875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0)) + (endY * 0.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.6875)) + (endX * 0.6875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.6875)) + (endX * 0.6875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.6875)) + (endX * 0.6875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0)) + (endY * 0.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0499999821186)) + (endY * 0.0499999821186)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.3125)) + (endX * 0.3125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0499999821186)) + (endY * 0.0499999821186)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.3125)) + (endX * 0.3125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0499999821186)) + (endY * 0.0499999821186)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.3125)) + (endX * 0.3125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0)) + (endY * 0.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0)) + (endY * 0.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.3125)) + (endX * 0.3125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0499999821186)) + (endY * 0.0499999821186)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.3125)) + (endX * 0.3125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0499999821186)) + (endY * 0.0499999821186)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.3125)) + (endX * 0.3125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0499999821186)) + (endY * 0.0499999821186)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0)) + (endX * 0.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0)) + (endX * 0.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0)) + (endX * 0.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0 - ] - end + #[ +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 32.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 32.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 32.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000 + ] + end end diff --git a/fcore/level/player/sprites/walk/player-walk-right-7.sml b/fcore/level/player/sprites/walk/player-walk-right-7.sml index dcfbea0..5470e41 100644 --- a/fcore/level/player/sprites/walk/player-walk-right-7.sml +++ b/fcore/level/player/sprites/walk/player-walk-right-7.sml @@ -1,373 +1,5357 @@ structure PlayerWalkRight7 = struct - fun lerp (startX, startY, drawWidth, drawHeight, windowWidth, windowHeight, r, g, b) : Real32.real vector = + fun xToNdc (xOffset, xpos, scale, halfWidth) = + ((xpos * scale + xOffset) - halfWidth) / halfWidth + + fun yToNdc (yOffset, ypos, scale, halfHeight) = + ~(((ypos * scale + yOffset) - halfHeight) / halfHeight) + + fun lerp (xOffset: Real32.real, yOffset, scale, windowWidth, windowHeight) = let - val endY = windowHeight - startY - val startY = windowHeight - (startY + drawHeight) - val endX = startX + drawWidth - val windowHeight = windowHeight / 2.0 - val windowWidth = windowWidth / 2.0 + val halfWidth = windowWidth / 2.0 + val halfHeight = windowHeight / 2.0 in - #[ (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0)) + (endY * 0.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.6875)) + (endX * 0.6875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0)) + (endY * 0.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.6875)) + (endX * 0.6875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0499999821186)) + (endY * 0.0499999821186)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.6875)) + (endX * 0.6875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0499999821186)) + (endY * 0.0499999821186)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0499999821186)) + (endY * 0.0499999821186)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0)) + (endY * 0.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.6875)) + (endX * 0.6875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0499999821186)) + (endY * 0.0499999821186)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0499999821186)) + (endY * 0.0499999821186)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.6875)) + (endX * 0.6875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.6875)) + (endX * 0.6875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0499999821186)) + (endY * 0.0499999821186)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.1875)) + (endX * 0.1875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0)) + (endY * 0.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.1875)) + (endX * 0.1875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0)) + (endY * 0.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.1875)) + (endX * 0.1875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0)) + (endY * 0.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.3125)) + (endX * 0.3125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.3125)) + (endX * 0.3125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.3125)) + (endX * 0.3125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0)) + (endX * 0.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0)) + (endX * 0.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0)) + (endX * 0.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0 - ] - end + #[ +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000 + ] + end end diff --git a/fcore/level/player/sprites/walk/player-walk-right-8.sml b/fcore/level/player/sprites/walk/player-walk-right-8.sml index b429d71..d52054e 100644 --- a/fcore/level/player/sprites/walk/player-walk-right-8.sml +++ b/fcore/level/player/sprites/walk/player-walk-right-8.sml @@ -1,343 +1,5297 @@ structure PlayerWalkRight8 = struct - fun lerp (startX, startY, drawWidth, drawHeight, windowWidth, windowHeight, r, g, b) : Real32.real vector = + fun xToNdc (xOffset, xpos, scale, halfWidth) = + ((xpos * scale + xOffset) - halfWidth) / halfWidth + + fun yToNdc (yOffset, ypos, scale, halfHeight) = + ~(((ypos * scale + yOffset) - halfHeight) / halfHeight) + + fun lerp (xOffset: Real32.real, yOffset, scale, windowWidth, windowHeight) = let - val endY = windowHeight - startY - val startY = windowHeight - (startY + drawHeight) - val endX = startX + drawWidth - val windowHeight = windowHeight / 2.0 - val windowWidth = windowWidth / 2.0 + val halfWidth = windowWidth / 2.0 + val halfHeight = windowHeight / 2.0 in - #[ (((startX * (1.0 - 0.6875)) + (endX * 0.6875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0)) + (endY * 0.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.6875)) + (endX * 0.6875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0)) + (endY * 0.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.6875)) + (endX * 0.6875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0)) + (endY * 0.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.3125)) + (endX * 0.3125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.3125)) + (endX * 0.3125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.3125)) + (endX * 0.3125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.125)) + (endX * 0.125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0499999821186)) + (endY * 0.0499999821186)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0499999821186)) + (endY * 0.0499999821186)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.125)) + (endX * 0.125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0499999821186)) + (endY * 0.0499999821186)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.125)) + (endX * 0.125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0)) + (endX * 0.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0)) + (endX * 0.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0)) + (endX * 0.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0 - ] - end + #[ +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 0.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 0.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 0.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 32.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 32.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 32.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000 + ] + end end diff --git a/fcore/level/player/sprites/walk/player-walk-right-9.sml b/fcore/level/player/sprites/walk/player-walk-right-9.sml deleted file mode 100644 index 856e4f2..0000000 --- a/fcore/level/player/sprites/walk/player-walk-right-9.sml +++ /dev/null @@ -1,403 +0,0 @@ -structure PlayerWalkRight9 = -struct - fun lerp (startX, startY, drawWidth, drawHeight, windowWidth, windowHeight, r, g, b) : Real32.real vector = - let - val endY = windowHeight - startY - val startY = windowHeight - (startY + drawHeight) - val endX = startX + drawWidth - val windowHeight = windowHeight / 2.0 - val windowWidth = windowWidth / 2.0 - in - #[ (((startX * (1.0 - 0.8125)) + (endX * 0.8125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0)) + (endY * 0.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.8125)) + (endX * 0.8125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0)) + (endY * 0.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.8125)) + (endX * 0.8125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0)) + (endY * 0.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.6875)) + (endX * 0.6875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.6875)) + (endX * 0.6875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.6875)) + (endX * 0.6875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.3125)) + (endX * 0.3125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.150000035763)) + (endY * 0.150000035763)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.150000035763)) + (endY * 0.150000035763)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.3125)) + (endX * 0.3125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.150000035763)) + (endY * 0.150000035763)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.3125)) + (endX * 0.3125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.150000035763)) + (endY * 0.150000035763)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.1875)) + (endX * 0.1875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.150000035763)) + (endY * 0.150000035763)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.1875)) + (endX * 0.1875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.1875)) + (endX * 0.1875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.150000035763)) + (endY * 0.150000035763)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.1875)) + (endX * 0.1875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0499999821186)) + (endY * 0.0499999821186)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0499999821186)) + (endY * 0.0499999821186)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.1875)) + (endX * 0.1875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0499999821186)) + (endY * 0.0499999821186)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.1875)) + (endX * 0.1875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0)) + (endX * 0.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0)) + (endX * 0.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0)) + (endX * 0.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0 - ] - end -end diff --git a/oms.mlb b/oms.mlb index ab54ce3..e374ff0 100644 --- a/oms.mlb +++ b/oms.mlb @@ -79,7 +79,6 @@ in fcore/level/player/sprites/walk/player-walk-right-6.sml fcore/level/player/sprites/walk/player-walk-right-7.sml fcore/level/player/sprites/walk/player-walk-right-8.sml - fcore/level/player/sprites/walk/player-walk-right-9.sml fcore/level/player/sprites/walk/player-walk-left-1.sml fcore/level/player/sprites/walk/player-walk-left-2.sml