diff --git a/fcore/level/player/player-vec.sml b/fcore/level/player/player-vec.sml index c731a4c..29ef882 100644 --- a/fcore/level/player/player-vec.sml +++ b/fcore/level/player/player-vec.sml @@ -51,36 +51,36 @@ struct fun getWhenJumpingRight (player, amt, rx, ry, dw, dh, ww, wh) = if amt < 3 then PlayerJumpRight1.lerp - (rx, ry, dw, dh, ww, wh, 1.0, 1.0, 1.0) + (rx, ry, 3.0, ww, wh) else if amt < 6 then PlayerJumpRight2.lerp - (rx, ry, dw, dh, ww, wh, 1.0, 1.0, 1.0) + (rx, ry, 3.0, ww, wh) else if amt < 9 then PlayerJumpRight3.lerp - (rx, ry, dw, dh, ww, wh, 1.0, 1.0, 1.0) + (rx, ry, 3.0, ww, wh) else if amt < 12 then PlayerJumpRight4.lerp - (rx, ry, dw, dh, ww, wh, 1.0, 1.0, 1.0) + (rx, ry, 3.0, ww, wh) else PlayerJumpRight5.lerp - (rx, ry, dw, dh, ww, wh, 1.0, 1.0, 1.0) + (rx, ry, 3.0, ww, wh) fun getWhenJumpingLeft (player, amt, rx, ry, dw, dh, ww, wh) = if amt < 3 then PlayerJumpLeft1.lerp - (rx, ry, dw, dh, ww, wh, 1.0, 1.0, 1.0) + (rx, ry, 3.0, ww, wh) else if amt < 6 then PlayerJumpLeft2.lerp - (rx, ry, dw, dh, ww, wh, 1.0, 1.0, 1.0) + (rx, ry, 3.0, ww, wh) else if amt < 9 then PlayerJumpLeft3.lerp - (rx, ry, dw, dh, ww, wh, 1.0, 1.0, 1.0) + (rx, ry, 3.0, ww, wh) else if amt < 12 then PlayerJumpLeft4.lerp - (rx, ry, dw, dh, ww, wh, 1.0, 1.0, 1.0) + (rx, ry, 3.0, ww, wh) else PlayerJumpLeft5.lerp - (rx, ry, dw, dh, ww, wh, 1.0, 1.0, 1.0) + (rx, ry, 3.0, ww, wh) fun getWhenJumping (player, amt, rx, ry, dw, dh, ww, wh) = case #facing player of @@ -91,10 +91,10 @@ struct case #facing player of FACING_RIGHT => PlayerJumpRight5.lerp - (rx, ry, dw, dh, ww, wh, 1.0, 1.0, 1.0) + (rx, ry, 3.0, ww, wh) | FACING_LEFT => PlayerJumpLeft5.lerp - (rx, ry, dw, dh, ww, wh, 1.0, 1.0, 1.0) + (rx, ry, 3.0, ww, wh) fun getWhenDropping (player, rx, ry, dw, dh, ww, wh) = let diff --git a/fcore/level/player/sprites/jump/player-jump-left-1.sml b/fcore/level/player/sprites/jump/player-jump-left-1.sml index fab3fea..8a94812 100644 --- a/fcore/level/player/sprites/jump/player-jump-left-1.sml +++ b/fcore/level/player/sprites/jump/player-jump-left-1.sml @@ -1,343 +1,5507 @@ structure PlayerJumpLeft1 = 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.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.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.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.8125)) + (endX * 0.8125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0499999821186)) + (endY * 0.0499999821186)) / 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.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.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.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.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.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.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.0)) + (endY * 0.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.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / 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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / 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.700000047684)) + (endY * 0.700000047684)) / 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, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.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, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.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, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.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, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.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, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +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, 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, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.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, 4.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, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.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, 15.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, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.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, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +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, 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, 18.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, 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, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +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, 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, 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, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.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, 4.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, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.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, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +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, 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, 6.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, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.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, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.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, 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, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.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, 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, 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, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.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, 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, 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, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +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.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, 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, 6.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, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.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, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.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, 26.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.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, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.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, 5.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, 5.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, 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, 5.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, 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, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.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, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.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.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +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, 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, 7.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, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.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, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.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, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.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, 26.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.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, 26.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, 27.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.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, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.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, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.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, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.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.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, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.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, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.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, 25.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 7.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, 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, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.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, 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, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.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, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +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, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.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, 5.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, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.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, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +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, 28.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, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.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, 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.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, 15.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.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, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.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, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.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, 26.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.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, 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, 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, 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, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.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, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.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, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.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, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.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, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.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, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.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, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.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, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.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, 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, 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, 10.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, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.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, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.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, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +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, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.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, 26.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, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.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, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.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, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.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, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.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, 13.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.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, 13.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, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.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, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.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, 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, 22.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, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.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, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.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, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 12.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, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.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, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.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, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.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, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.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, 13.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, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.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, 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, 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, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.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, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.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, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +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, 30.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, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.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, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 32.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 32.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 32.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, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.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, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.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, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.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, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 13.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, 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, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.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, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 14.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, 29.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 14.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, 15.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, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 14.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, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.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, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.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, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +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, 29.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, 27.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.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, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.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, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.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, 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, 15.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, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 15.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, 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, 29.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, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +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, 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, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.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, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.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, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.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, 20.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, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.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, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +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, 12.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.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, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.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, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.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, 17.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, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.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, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.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, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 18.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, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +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, 26.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, 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, 13.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +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, 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, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.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, 23.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, 16.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, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.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, 19.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, 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, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.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, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.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, 12.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, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.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, 12.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.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, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.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, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.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, 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, 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, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.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, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.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, 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, 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, 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, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +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, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.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, 11.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, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.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, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.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, 23.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, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.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, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +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, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.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, 10.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, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.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, 10.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, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.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, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.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, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.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, 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, 6.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, 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, 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, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.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, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.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, 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, 19.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, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.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, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +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, 22.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, 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, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.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, 22.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, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.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, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.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, 23.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, 7.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, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.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, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +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, 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, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.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, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +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, 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, 21.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, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +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, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.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, 22.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, 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, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.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, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.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, 22.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, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.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, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +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, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.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, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 28.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 28.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 28.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000 + ] + end end diff --git a/fcore/level/player/sprites/jump/player-jump-left-2.sml b/fcore/level/player/sprites/jump/player-jump-left-2.sml index 612b0d9..eccdbc8 100644 --- a/fcore/level/player/sprites/jump/player-jump-left-2.sml +++ b/fcore/level/player/sprites/jump/player-jump-left-2.sml @@ -1,373 +1,5177 @@ structure PlayerJumpLeft2 = 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.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.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.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.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.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.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.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.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.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.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / 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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / 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.700000047684)) + (endY * 0.700000047684)) / 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, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.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, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.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, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.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, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.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, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.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, 19.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, 5.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, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.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, 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, 4.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, 3.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, 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, 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, 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, 22.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, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.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, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +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, 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, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.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, 4.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, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.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, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.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, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.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, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.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, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.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, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +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, 20.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, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.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, 19.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, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +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, 23.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, 24.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, 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, 6.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, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.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, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +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, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.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, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.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, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.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, 14.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, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.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, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.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, 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, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.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, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.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, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.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, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.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, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +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, 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, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.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, 6.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, 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, 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, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +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, 23.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, 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.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, 24.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, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.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, 7.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, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.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, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.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, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.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, 10.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, 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, 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, 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, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.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, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.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, 10.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, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.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, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.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, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.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, 10.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, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.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, 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, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.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, 4.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, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.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, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.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, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.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, 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, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.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, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.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, 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, 24.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.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, 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, 10.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, 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, 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, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.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, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.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, 8.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, 9.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, 8.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, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.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, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.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, 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, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.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, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.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, 9.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, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.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, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +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, 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, 10.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, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.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, 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, 10.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, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.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, 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, 10.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, 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, 28.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, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.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, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.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, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +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, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.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, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.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, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.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, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.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, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.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, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.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, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +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, 12.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, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.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, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +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, 15.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, 12.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, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +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, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.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, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.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, 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, 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, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 12.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, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.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, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.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, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.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, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.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, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.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, 13.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, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.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, 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, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.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, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.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, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.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, 18.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, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.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, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.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, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.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, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.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, 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, 18.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, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.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, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.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, 16.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, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.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, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 32.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 32.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.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, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.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, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.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, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.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, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.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, 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, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.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, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.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, 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, 18.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, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +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, 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, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.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, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.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, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.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, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.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, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.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, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.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, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.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, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.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, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.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, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.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, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.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, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.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, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.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, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.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, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.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, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.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, 20.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, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.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, 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, 31.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, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.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, 19.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, 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, 12.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.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, 19.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, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.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, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.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, 15.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, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.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, 19.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, 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, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.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, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.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, 11.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, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.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, 11.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, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.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, 22.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, 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, 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, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.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, 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, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +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, 22.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, 10.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, 10.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, 21.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, 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, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.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, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.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, 21.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, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +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, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.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, 9.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, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.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, 9.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, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.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, 22.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, 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, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.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, 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, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.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, 4.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, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +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, 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, 20.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, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.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, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.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, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.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, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +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, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.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, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.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, 23.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, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.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, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.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, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.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, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +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, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.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, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.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, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.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, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +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, 21.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, 21.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, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.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, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 28.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 28.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 28.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000 + ] + end end diff --git a/fcore/level/player/sprites/jump/player-jump-left-3.sml b/fcore/level/player/sprites/jump/player-jump-left-3.sml index 8d90f28..3056765 100644 --- a/fcore/level/player/sprites/jump/player-jump-left-3.sml +++ b/fcore/level/player/sprites/jump/player-jump-left-3.sml @@ -1,373 +1,5357 @@ structure PlayerJumpLeft3 = 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.875)) + (endX * 0.875)) / 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.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.875)) + (endX * 0.875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.875)) + (endX * 0.875)) / 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.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.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.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.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / 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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / 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.700000047684)) + (endY * 0.700000047684)) / 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, 0.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 0.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 0.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 1.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, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.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, 17.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.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, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.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, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +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, 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, 15.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, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +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, 19.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, 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, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.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, 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, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.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, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +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, 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, 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, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.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, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +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, 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, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.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, 4.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, 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, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.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, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.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, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.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, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +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, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.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, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.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, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.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, 27.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +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, 4.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, 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, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.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, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.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, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.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, 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, 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, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.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, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +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, 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, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.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, 5.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, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.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, 18.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, 8.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, 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, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.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, 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, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +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, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.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, 27.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.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, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.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, 6.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, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.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, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.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, 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, 7.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, 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, 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, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.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, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.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, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.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, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.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, 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, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.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, 7.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, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.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, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.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, 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, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.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, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.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, 17.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, 17.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, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.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, 17.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, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +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, 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, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.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, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.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, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.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, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.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, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.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, 28.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.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, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.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, 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, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.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, 4.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, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.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, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.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, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.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, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.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, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.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, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +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, 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, 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, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.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, 27.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +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, 16.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, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.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, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +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.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.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, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +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, 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, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.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, 27.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, 12.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, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +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, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.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, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.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, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.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, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.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, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.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, 10.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, 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, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.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, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.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, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.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, 15.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, 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, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +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, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.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, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.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, 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, 12.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, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.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, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.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, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.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, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.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, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.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, 13.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, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.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, 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, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.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, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.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, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.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, 18.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, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.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, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.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, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.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, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.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, 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, 18.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, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.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, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.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, 16.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, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.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, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 32.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 32.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.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, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.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, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.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, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.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, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.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, 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, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.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, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.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, 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, 18.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, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +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, 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, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.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, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.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, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.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, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.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, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.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, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.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, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.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, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.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, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.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, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.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, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.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, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.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, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.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, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.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, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.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, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.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, 20.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, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.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, 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, 31.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, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.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, 19.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, 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, 12.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.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, 19.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, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.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, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.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, 15.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, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.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, 19.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, 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, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.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, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.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, 11.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, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.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, 11.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, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.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, 22.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, 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, 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, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.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, 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, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +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, 22.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, 10.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, 10.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, 21.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, 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, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.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, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.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, 21.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, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +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, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.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, 9.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, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.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, 9.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, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.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, 22.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, 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, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.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, 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, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.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, 4.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, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +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, 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, 20.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, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.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, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.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, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.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, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +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, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.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, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.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, 23.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, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.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, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.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, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.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, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +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, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.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, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.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, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.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, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +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, 21.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, 21.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, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.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, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 28.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 28.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 28.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000 + ] + end end diff --git a/fcore/level/player/sprites/jump/player-jump-left-4.sml b/fcore/level/player/sprites/jump/player-jump-left-4.sml index f429de3..fcaac8d 100644 --- a/fcore/level/player/sprites/jump/player-jump-left-4.sml +++ b/fcore/level/player/sprites/jump/player-jump-left-4.sml @@ -1,373 +1,5417 @@ structure PlayerJumpLeft4 = 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.875)) + (endX * 0.875)) / 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.100000023842)) + (endY * 0.100000023842)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.875)) + (endX * 0.875)) / 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.0499999821186)) + (endY * 0.0499999821186)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.875)) + (endX * 0.875)) / 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.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.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.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.4375)) + (endX * 0.4375)) / 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.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.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.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / 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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / 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.700000047684)) + (endY * 0.700000047684)) / 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, 13.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.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, 13.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, 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, 10.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, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.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, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.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, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.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, 26.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, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.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, 9.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, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.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, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.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.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, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.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, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.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, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.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, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.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, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.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, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +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, 28.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.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, 27.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.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, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.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, 29.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, 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.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.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, 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, 8.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, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.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, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.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, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.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, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.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, 4.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, 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, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.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, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.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, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.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, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.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, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.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, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +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, 28.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.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, 26.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, 8.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, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.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, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.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, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.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, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.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, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +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, 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, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.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, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.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, 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, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.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, 5.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, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.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, 27.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.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, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +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, 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, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.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, 6.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, 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, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.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, 6.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, 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, 17.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, 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, 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, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.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.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.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, 11.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, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.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, 21.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, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.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, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.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, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.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, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.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, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.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, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.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, 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, 28.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.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, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.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, 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, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.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, 4.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, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.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, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.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, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.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, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.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, 18.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, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.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, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.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, 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, 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, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.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, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +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, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.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, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +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, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.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, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.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, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.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, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.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, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.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, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.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, 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, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.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, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.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, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.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, 15.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, 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, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +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, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.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, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.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, 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, 12.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, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.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, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.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, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.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, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.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, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.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, 13.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, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.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, 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, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.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, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.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, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.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, 18.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, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.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, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.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, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.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, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 14.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, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.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, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.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, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.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, 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, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 32.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 32.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 32.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +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, 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, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.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, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.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, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.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, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.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, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.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, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.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, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +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, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.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, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.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, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.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, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.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, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.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, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.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, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.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, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.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, 20.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, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.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, 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, 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, 12.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.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, 19.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, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.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, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.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, 15.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, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.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, 19.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, 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, 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, 19.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, 19.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, 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, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.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, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.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, 11.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, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.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, 11.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, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.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, 22.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, 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, 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, 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, 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, 31.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, 4.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, 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, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +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, 22.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, 10.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, 10.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, 21.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, 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, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.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, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.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, 21.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, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +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, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.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, 9.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, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.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, 9.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, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.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, 22.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, 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, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.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, 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, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.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, 4.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, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +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, 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, 20.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, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.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, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.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, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.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, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +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, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.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, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.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, 23.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, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.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, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.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, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.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, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +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, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.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, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.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, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.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, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +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, 21.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, 21.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, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.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, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 28.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 28.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 28.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000 + ] + end end diff --git a/fcore/level/player/sprites/jump/player-jump-left-5.sml b/fcore/level/player/sprites/jump/player-jump-left-5.sml index aa855aa..4f7aefd 100644 --- a/fcore/level/player/sprites/jump/player-jump-left-5.sml +++ b/fcore/level/player/sprites/jump/player-jump-left-5.sml @@ -1,403 +1,5717 @@ structure PlayerJumpLeft5 = 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.875)) + (endX * 0.875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.150000035763)) + (endY * 0.150000035763)) / 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.875)) + (endX * 0.875)) / 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.8125)) + (endX * 0.8125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.150000035763)) + (endY * 0.150000035763)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.875)) + (endX * 0.875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.150000035763)) + (endY * 0.150000035763)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.8125)) + (endX * 0.8125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0499999821186)) + (endY * 0.0499999821186)) / 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.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.0499999821186)) + (endY * 0.0499999821186)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.8125)) + (endX * 0.8125)) / 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.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.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.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.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.4375)) + (endX * 0.4375)) / 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.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.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.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / 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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / 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.700000047684)) + (endY * 0.700000047684)) / 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, 0.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 0.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 0.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.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, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.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, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 1.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, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 1.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, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.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, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.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, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.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, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.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, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 2.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, 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, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.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, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.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, 11.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, 27.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.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, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.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, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.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, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 3.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, 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, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.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, 3.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, 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, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.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, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +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, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.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, 2.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, 5.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, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 4.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, 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, 10.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, 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, 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, 9.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, 8.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, 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, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +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, 12.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.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, 12.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, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.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, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.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, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.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, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.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, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.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, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 5.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, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.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, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.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, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.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, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +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, 12.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.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, 12.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, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.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, 14.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, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.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, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +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, 21.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, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.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, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +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, 27.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, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 0.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 0.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 0.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.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, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.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, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.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, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +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, 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, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.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, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.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, 11.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, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.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, 21.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, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.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, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.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, 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, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.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, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.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, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.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, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.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, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.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, 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, 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, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.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, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.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, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.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, 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, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.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, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.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, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.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, 4.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, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.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, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.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, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.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, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.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, 18.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, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.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, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.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, 9.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, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.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, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.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, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +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, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.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, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.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, 12.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, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +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, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.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, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.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, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.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, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.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, 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, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.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, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.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, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.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, 12.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.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, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.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, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.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, 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, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +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, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.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, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.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, 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, 12.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, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.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, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.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, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.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, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.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, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.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, 13.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, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.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, 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, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.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, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.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, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.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, 18.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, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.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, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.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, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.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, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.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, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.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, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +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, 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, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.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, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.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, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.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, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.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, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.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, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.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, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +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, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.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, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.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, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.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, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.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, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.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, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.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, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.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, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.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, 20.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, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.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, 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, 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, 30.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.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, 29.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.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, 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, 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, 12.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.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, 19.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, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.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, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.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, 15.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, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.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, 19.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, 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, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.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, 19.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.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, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.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, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.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, 11.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, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.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, 11.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, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.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, 22.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, 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, 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, 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, 23.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, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +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, 22.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, 10.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, 10.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, 21.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, 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, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.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, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.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, 21.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, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.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, 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, 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, 21.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, 21.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, 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, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +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, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.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, 9.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, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.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, 9.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, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.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, 22.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, 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, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.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, 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, 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, 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, 31.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, 5.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, 4.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, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +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, 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, 20.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, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.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, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.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, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.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, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +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, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.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, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.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, 23.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, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.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, 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, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.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, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.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, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +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, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.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, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.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, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.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, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +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, 21.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, 21.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, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.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, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 28.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 28.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 28.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000 + ] + end end diff --git a/fcore/level/player/sprites/jump/player-jump-right-1.sml b/fcore/level/player/sprites/jump/player-jump-right-1.sml index aa64cf3..a4add3c 100644 --- a/fcore/level/player/sprites/jump/player-jump-right-1.sml +++ b/fcore/level/player/sprites/jump/player-jump-right-1.sml @@ -1,343 +1,5597 @@ structure PlayerJumpRight1 = 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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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, 0.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 0.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 0.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.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, 11.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, 1.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, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.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, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +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, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.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, 18.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, 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, 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, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.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, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.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, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.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, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.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, 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, 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, 7.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, 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, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.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, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +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, 19.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, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.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, 3.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, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.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, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +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, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.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, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +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, 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, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.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, 21.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, 22.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, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.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, 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, 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, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.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, 4.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, 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, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.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, 4.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, 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, 6.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, 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, 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, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.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, 4.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, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.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, 16.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, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.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, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.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, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.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, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.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, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 5.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, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +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, 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, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.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, 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, 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, 7.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, 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, 7.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, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.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, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.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, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.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, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.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, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.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, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.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, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.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, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.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, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.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, 10.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, 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, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.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, 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, 12.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.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, 12.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, 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, 9.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, 6.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, 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, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.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, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.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, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.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, 6.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, 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, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.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, 8.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, 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, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.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, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.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, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.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, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.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, 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, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 8.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, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 8.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, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.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, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.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, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.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, 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, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.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, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.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, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.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, 8.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, 11.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, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.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, 8.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, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.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, 8.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, 8.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, 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, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.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, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.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, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.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, 13.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, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.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, 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, 27.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.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, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.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, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.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, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.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, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.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, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.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, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.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, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +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, 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, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.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, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.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, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.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, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +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, 29.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, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.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, 13.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, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 32.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 32.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, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 32.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.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, 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, 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, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.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, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 15.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, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 15.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.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.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, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.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, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.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, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.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, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.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, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.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, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.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, 14.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, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.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, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +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, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.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, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.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, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.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, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.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, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.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, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.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, 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, 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, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.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, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.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, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.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, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.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, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.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, 27.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.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, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 15.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, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.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, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.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, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.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, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.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, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.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, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +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, 13.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.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, 13.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.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, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.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, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.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, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 16.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, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 16.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, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +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, 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, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.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, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.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, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.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, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.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, 27.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 16.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, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.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, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.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, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.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, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.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, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.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, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.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, 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, 19.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, 17.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, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.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, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.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, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.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, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +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, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.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, 26.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 18.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, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.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, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.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, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.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, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.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, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.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, 18.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, 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, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.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, 18.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, 18.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, 19.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, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.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, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.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, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.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, 19.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, 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, 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, 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, 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, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.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, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.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, 19.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, 19.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, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.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, 19.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, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.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, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.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, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.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, 19.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, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.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, 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, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.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, 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, 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, 30.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, 19.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, 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, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.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, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.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, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.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, 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, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.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, 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, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.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, 25.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 20.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, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.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, 26.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +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, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.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, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +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, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.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, 15.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, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.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, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +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, 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, 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, 26.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, 26.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, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.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, 24.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, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.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, 25.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.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, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.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, 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, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.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, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.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, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.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, 11.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, 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, 22.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, 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.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, 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, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.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, 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, 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, 27.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, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.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, 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, 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, 23.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, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +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, 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, 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, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.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, 27.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.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, 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, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.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, 11.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, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.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, 26.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 + ] + end end diff --git a/fcore/level/player/sprites/jump/player-jump-right-2.sml b/fcore/level/player/sprites/jump/player-jump-right-2.sml index 4999949..f176561 100644 --- a/fcore/level/player/sprites/jump/player-jump-right-2.sml +++ b/fcore/level/player/sprites/jump/player-jump-right-2.sml @@ -1,373 +1,5087 @@ structure PlayerJumpRight2 = 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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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, 0.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 0.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 0.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 1.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, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.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, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 1.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, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.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, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 2.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, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 2.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, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.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, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +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, 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, 8.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, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.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, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.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, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.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, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +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, 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, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 3.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, 2.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, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.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, 3.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, 6.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, 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, 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, 3.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, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.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, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.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, 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, 4.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, 3.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, 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, 5.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, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +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, 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, 3.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, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.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, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.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, 4.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, 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, 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, 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, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.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, 4.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, 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, 5.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, 4.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, 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, 6.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, 4.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, 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, 7.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, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.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, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +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, 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, 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.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, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +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, 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, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.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, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.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, 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, 6.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, 5.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, 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, 7.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, 5.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, 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, 6.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, 5.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, 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, 7.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, 5.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, 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, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.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.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, 21.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, 6.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, 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.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.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, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.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, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.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, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.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, 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, 7.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, 6.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, 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, 8.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, 6.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, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.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, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.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, 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, 7.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, 6.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, 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, 8.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, 6.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, 6.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, 9.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, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.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, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.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, 8.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, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.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, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.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, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.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, 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, 8.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, 7.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, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.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, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.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, 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, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +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.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.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, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.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, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.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, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.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, 9.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, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.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, 8.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, 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, 9.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, 8.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, 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, 10.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, 8.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, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.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, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.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, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.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, 10.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, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.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, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.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, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.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, 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, 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, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.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, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +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, 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, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.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, 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, 10.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, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.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, 10.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, 29.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, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.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, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.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, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.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, 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, 17.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, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.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, 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, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.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, 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, 11.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, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.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, 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, 15.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, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.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, 24.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, 11.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, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.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, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.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, 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, 31.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, 10.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, 10.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, 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, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 32.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.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, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 32.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.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, 14.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, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.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, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.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, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.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, 11.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, 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, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.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, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.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, 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, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.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, 30.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.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, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +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, 30.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, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.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, 31.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 14.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, 29.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.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, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.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, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.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, 14.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, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.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, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.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, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.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, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.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, 14.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, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.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, 14.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, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.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, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.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, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.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, 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, 16.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, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.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, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.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, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +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, 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, 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, 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, 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, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.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, 15.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, 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, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.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, 15.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, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +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, 19.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, 28.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, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.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, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.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, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.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, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.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, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.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, 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, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +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, 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, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.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, 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, 17.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, 16.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, 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, 18.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, 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, 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, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.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, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.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, 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, 18.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, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.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, 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, 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, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.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, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 19.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, 18.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, 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, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.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, 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, 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, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.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, 28.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.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, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.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, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.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, 19.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, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.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, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.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, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.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, 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, 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, 5.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, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.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, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.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, 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, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.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, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.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, 6.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, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.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, 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, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.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, 21.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, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.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, 14.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, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.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, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +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, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.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, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.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, 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, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.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, 8.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, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.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, 10.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, 19.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, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.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, 22.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, 22.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, 24.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, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.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, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +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, 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, 23.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, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.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, 17.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, 19.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, 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, 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, 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, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.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, 20.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, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.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, 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, 17.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, 10.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, 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, 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, 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, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.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, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.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, 22.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 + ] + end end diff --git a/fcore/level/player/sprites/jump/player-jump-right-3.sml b/fcore/level/player/sprites/jump/player-jump-right-3.sml index ffab823..a9d570c 100644 --- a/fcore/level/player/sprites/jump/player-jump-right-3.sml +++ b/fcore/level/player/sprites/jump/player-jump-right-3.sml @@ -1,373 +1,5267 @@ structure PlayerJumpRight3 = 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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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, 0.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 0.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 0.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 1.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, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.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, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 1.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, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.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, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 2.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, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 2.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, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.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, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +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, 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, 8.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, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.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, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.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, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.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, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +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, 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, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 3.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, 2.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, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.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, 3.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, 6.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, 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, 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, 3.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, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.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, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.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, 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, 4.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, 3.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, 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, 5.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, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +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, 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, 3.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, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.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, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.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, 4.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, 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, 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, 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, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.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, 4.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, 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, 5.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, 4.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, 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, 6.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, 4.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, 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, 7.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, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.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, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +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, 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, 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.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, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +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, 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, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.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, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.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, 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, 6.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, 5.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, 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, 7.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, 5.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, 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, 6.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, 5.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, 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, 7.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, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.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, 21.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, 6.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, 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.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.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, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.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, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.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, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.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, 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, 7.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, 6.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, 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, 8.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, 6.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, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.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, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.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, 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, 7.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, 6.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, 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, 8.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, 6.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, 6.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, 9.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, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.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, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.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, 8.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, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.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, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.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, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.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, 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, 8.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, 7.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, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.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, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.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, 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, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +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.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.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, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.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, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.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, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.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, 9.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, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.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, 8.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, 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, 9.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, 8.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, 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, 10.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, 8.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, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.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, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.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, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.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, 22.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, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.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, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.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, 10.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, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.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, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.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, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.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, 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, 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, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.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, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +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, 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, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.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, 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, 10.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, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.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, 10.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, 29.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, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.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, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.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, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.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, 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, 17.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, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.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, 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, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.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, 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, 11.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, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.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, 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, 15.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, 10.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, 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, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.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, 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, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.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, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.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, 24.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, 11.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, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.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, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.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, 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, 31.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, 10.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, 10.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, 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, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 32.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.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, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 32.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.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, 14.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, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.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, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.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, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.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, 11.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, 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, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.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, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.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, 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, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.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, 30.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.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, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +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, 30.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, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.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, 31.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 14.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, 29.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.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, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.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, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.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, 14.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, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.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, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.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, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.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, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.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, 14.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, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.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, 14.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, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.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, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.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, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.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, 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, 16.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, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.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, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.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, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +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, 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, 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, 19.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, 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, 17.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, 15.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, 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, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.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, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.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, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.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, 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, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +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, 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, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.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, 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, 17.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, 16.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, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.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, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.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, 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, 18.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, 17.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, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.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, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.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, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.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, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.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, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.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, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.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, 18.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, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 19.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, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.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, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.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, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 18.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, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.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, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.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, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.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, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.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, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.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, 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, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.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, 20.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, 18.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, 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, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.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, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.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, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.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, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.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, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.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, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.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, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 19.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, 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, 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, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.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, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.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, 27.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.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, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.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, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.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, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.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, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.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, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.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, 19.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, 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, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.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, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.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, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.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, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +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, 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, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.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, 21.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.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, 17.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, 20.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, 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, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.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, 20.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, 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, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.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, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +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, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.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, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +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, 23.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, 20.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.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, 28.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, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.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, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.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, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.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, 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, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.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, 21.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, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.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, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +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, 18.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, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.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, 22.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.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, 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, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.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, 21.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, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.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, 21.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, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.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, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.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, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.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, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.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, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.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, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.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, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.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, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.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, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.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, 22.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, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.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, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.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.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, 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, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +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, 29.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, 10.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, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +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, 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, 23.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, 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, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.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, 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, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.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.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, 23.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, 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, 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, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.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, 28.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.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, 17.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, 10.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, 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, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.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, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 28.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 28.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 28.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000 + ] + end end diff --git a/fcore/level/player/sprites/jump/player-jump-right-4.sml b/fcore/level/player/sprites/jump/player-jump-right-4.sml index 513e2cd..aceaec8 100644 --- a/fcore/level/player/sprites/jump/player-jump-right-4.sml +++ b/fcore/level/player/sprites/jump/player-jump-right-4.sml @@ -1,373 +1,5267 @@ structure PlayerJumpRight4 = 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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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, 0.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 0.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 0.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 1.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, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.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, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 1.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, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.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, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 2.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, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 2.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, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.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, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +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, 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, 8.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, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.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, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.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, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.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, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +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, 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, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 3.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, 2.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, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.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, 3.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, 6.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, 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, 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, 3.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, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.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, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.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, 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, 4.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, 3.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, 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, 5.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, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +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, 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, 3.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, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.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, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.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, 4.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, 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, 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, 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, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.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, 4.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, 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, 5.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, 4.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, 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, 6.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, 4.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, 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, 7.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, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.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, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +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, 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, 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.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, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +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, 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, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.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, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.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, 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, 6.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, 5.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, 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, 7.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, 5.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, 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, 6.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, 5.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, 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, 7.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, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.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, 21.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, 6.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, 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.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.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, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.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, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.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, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.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, 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, 7.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, 6.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, 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, 8.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, 6.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, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.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, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.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, 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, 7.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, 6.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, 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, 8.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, 6.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, 6.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, 9.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, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.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, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.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, 8.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, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.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, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.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, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.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, 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, 8.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, 7.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, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.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, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.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, 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, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +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.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.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, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +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, 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, 31.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, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.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, 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, 9.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, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 32.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 32.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 32.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.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, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.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, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.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, 9.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, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.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, 8.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, 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, 9.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, 8.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, 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, 10.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, 8.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, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.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, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.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, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.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, 22.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, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.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, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.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, 10.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, 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, 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, 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, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.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, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.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, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.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, 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, 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, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.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, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +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, 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, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.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, 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, 10.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, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.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, 29.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.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, 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, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.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, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.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, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.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, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.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, 17.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, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.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, 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, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.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, 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, 11.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, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.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, 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, 15.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, 10.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, 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, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.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, 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, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.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, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.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, 24.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, 11.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, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.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, 29.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.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, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.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, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.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, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.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, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.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, 11.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, 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, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.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, 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, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.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, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.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, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.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, 14.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, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.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, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.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, 14.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, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.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, 14.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, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.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, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.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, 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, 16.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, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.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, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.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, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +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, 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, 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, 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, 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, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.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, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.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, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.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, 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, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +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, 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, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.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, 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, 17.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, 16.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, 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, 18.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, 16.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, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.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, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.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, 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, 18.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, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.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, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.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, 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, 18.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, 17.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, 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, 19.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, 17.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, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.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, 22.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, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 19.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, 18.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, 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, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.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, 18.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, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.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, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.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, 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, 19.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, 18.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, 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, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.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, 18.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, 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, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.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, 18.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, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.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, 20.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, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.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, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.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, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.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, 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, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.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, 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, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.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, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.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, 20.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, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.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, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.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, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.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, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.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, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.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, 20.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, 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, 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, 20.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, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.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, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.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, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 20.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, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 20.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, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.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, 27.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.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, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.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, 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, 6.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, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.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, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.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, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +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, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.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, 14.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, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.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, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +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, 27.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.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, 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, 6.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.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, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.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, 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, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.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, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.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, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.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, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +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, 13.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +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, 14.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, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.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, 21.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, 22.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, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.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, 25.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, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.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, 22.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, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +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, 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, 6.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, 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, 6.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, 7.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +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, 8.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, 8.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, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.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, 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, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.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, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.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, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.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, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.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, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +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, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.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, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +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, 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, 24.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, 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, 6.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, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.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, 24.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, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.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, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.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, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.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, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +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, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.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, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.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, 27.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.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, 10.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, 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, 10.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, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.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, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.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, 25.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, 26.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, 13.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.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, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000 + ] + end end diff --git a/fcore/level/player/sprites/jump/player-jump-right-5.sml b/fcore/level/player/sprites/jump/player-jump-right-5.sml index 69fd4c7..1e03919 100644 --- a/fcore/level/player/sprites/jump/player-jump-right-5.sml +++ b/fcore/level/player/sprites/jump/player-jump-right-5.sml @@ -1,403 +1,5537 @@ structure PlayerJumpRight5 = 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.125)) + (endX * 0.125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.150000035763)) + (endY * 0.150000035763)) / 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.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.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.125)) + (endX * 0.125)) / 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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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, 0.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 0.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 0.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 1.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, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.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, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 1.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, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.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, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 2.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, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 2.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, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.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, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +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, 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, 8.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, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.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, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.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, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.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, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +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, 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, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 3.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, 2.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, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.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, 3.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, 6.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, 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, 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, 3.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, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.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, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.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, 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, 4.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, 3.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, 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, 5.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, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +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, 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, 3.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, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.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, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.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, 4.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, 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, 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, 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, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.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, 4.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, 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, 5.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, 4.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, 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, 6.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, 4.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, 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, 7.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, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.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, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +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, 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, 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.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, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +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, 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, 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, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.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, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.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, 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, 6.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, 5.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, 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, 7.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, 5.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, 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, 6.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, 5.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, 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, 7.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, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.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, 21.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, 6.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, 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.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.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, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.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, 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, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.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, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.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, 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, 7.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, 6.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, 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, 8.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, 6.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, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.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, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.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, 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, 7.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, 6.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, 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, 8.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, 6.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, 6.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, 9.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, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.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, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.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, 8.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, 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, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.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, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.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, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.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, 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, 8.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, 7.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, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.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, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.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, 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, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +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.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.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, 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, 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, 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, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.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, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.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, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.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, 9.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, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.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, 8.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, 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, 9.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, 8.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, 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, 10.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, 8.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, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.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, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.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, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.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, 22.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, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.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, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.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, 10.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, 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, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.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, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.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, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.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, 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, 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, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.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, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +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, 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, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.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, 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, 10.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, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +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, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.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, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.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, 10.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, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.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, 3.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, 17.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, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.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, 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, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.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, 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, 11.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, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.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, 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, 15.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, 10.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, 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, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.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, 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, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.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, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.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, 24.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, 11.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, 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, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.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, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.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, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.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, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.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, 11.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, 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, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.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, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.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, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.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, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.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, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.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, 14.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, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.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, 14.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, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.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, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.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, 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, 16.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, 15.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, 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, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.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, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +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, 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, 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, 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, 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, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.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, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.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, 17.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, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +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, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +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, 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, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.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, 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, 17.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, 16.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, 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, 18.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, 16.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, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.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, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.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, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.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, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.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, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.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, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.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, 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, 18.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, 17.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, 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, 19.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, 17.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, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.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, 22.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, 18.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, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.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, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 19.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, 18.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, 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, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.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, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.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, 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, 19.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, 18.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, 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, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.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, 18.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, 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, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.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, 18.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, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.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, 20.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, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 0.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 0.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 0.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.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, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.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, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.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, 19.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, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.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, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.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, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.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, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.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, 20.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, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.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, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.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, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.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, 20.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, 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, 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, 2.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.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, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.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, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.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, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.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, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.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, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.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, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.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, 9.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +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, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.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, 14.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, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.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, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +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, 27.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.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, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.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, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.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, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.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, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.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, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.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, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.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, 11.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, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +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, 12.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.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, 12.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, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 12.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, 12.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, 19.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, 23.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, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.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, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.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.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, 22.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, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.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, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 24.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.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, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.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, 27.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, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.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, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.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, 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, 10.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, 10.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, 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, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.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, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.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, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +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, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.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, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.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, 25.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.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, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.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, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +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, 17.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.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, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.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, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.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, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.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, 26.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.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, 11.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, 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, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.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, 25.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 26.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 28.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 28.000000000000000, scale, halfWidth), +yToNdc (yOffset, 27.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 28.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000 + ] + end end