diff --git a/website/source/javascripts/app/Engine.Point.Puller.js b/website/source/javascripts/app/Engine.Point.Puller.js index 22dc883c4..5dd2d45ba 100644 --- a/website/source/javascripts/app/Engine.Point.Puller.js +++ b/website/source/javascripts/app/Engine.Point.Puller.js @@ -3,15 +3,23 @@ Vector ){ -Engine.Point.Puller = function(id, x, y){ +Engine.Point.Puller = function(id, x, y, shapeSize){ this.id = id; - this.pos.x = x; - this.pos.y = y; - this.pos = Vector.coerce(this.pos); - this.home = this.pos.clone(); + this.shapeSize = shapeSize; + + this.ref = { + x: x, + y: y + }; + + this.pos.x = x * shapeSize.x; + this.pos.y = y * shapeSize.y; + + this.pos = Vector.coerce(this.pos); + this.home = this.pos.clone(); this.accel = Vector.coerce(this.accel); - this.vel = Vector.coerce(this.vel); + this.vel = Vector.coerce(this.vel); }; Engine.Point.Puller.prototype = { @@ -44,11 +52,21 @@ Engine.Point.Puller.prototype = { safety: 0.25, + resize: function(){ + this.home.x = this.pos.x = this.ref.x * this.shapeSize.x; + this.home.y = this.pos.y = this.ref.y * this.shapeSize.y; + + return this; + }, + update: function(engine){ var target = Vector.coerce(engine.mouse), - distanceToMouse = this.distanceTo(target), - toHome, mag, safety; - // distanceToHome = this.distanceTo(this.home); + distanceToMouse, toHome, mag, safety; + + target.x += (this.shapeSize.x - engine.width) / 2; + target.y += (this.shapeSize.y - engine.height) / 2; + + distanceToMouse = this.distanceTo(target); this.accel.mult(0); @@ -76,6 +94,8 @@ Engine.Point.Puller.prototype = { toHome.mult(this.aRad - safety); this.pos = Vector.sub(this.home, toHome); } + + return this; }, toChase: function(target, maxForce){ @@ -113,6 +133,8 @@ Engine.Point.Puller.prototype = { this.radius * scale, this.radius * scale ); + + return this; }, distanceTo: function(target) { diff --git a/website/source/javascripts/app/Engine.Point.js b/website/source/javascripts/app/Engine.Point.js index 6ef3237c7..f8093869e 100644 --- a/website/source/javascripts/app/Engine.Point.js +++ b/website/source/javascripts/app/Engine.Point.js @@ -67,6 +67,8 @@ Engine.Point.prototype = { this.pos.add( Vector.mult(this.vel, engine.tick) ); + + return this; }, draw: function(ctx, scale){ @@ -81,6 +83,7 @@ Engine.Point.prototype = { ); ctx.fillStyle = '#ffffff'; ctx.fill(); + return this; } }; diff --git a/website/source/javascripts/app/Engine.Shape.Puller.js b/website/source/javascripts/app/Engine.Shape.Puller.js index 2816b54ed..38f37c4e3 100644 --- a/website/source/javascripts/app/Engine.Shape.Puller.js +++ b/website/source/javascripts/app/Engine.Shape.Puller.js @@ -11,6 +11,8 @@ Engine.Shape.Puller = function(x, y, width, height, points, polygons){ this.pos = new Vector(x, y); this.size = new Vector(width, height); + this.resize(width, height, true); + ref = {}; this.points = []; this.polygons = []; @@ -18,8 +20,9 @@ Engine.Shape.Puller = function(x, y, width, height, points, polygons){ for (i = 0; i < points.length; i++) { point = new Point( points[i].id, - points[i].x * this.size.x, - points[i].y * this.size.y + points[i].x, + points[i].y, + this.size ); ref[point.id] = point; this.points.push(point); @@ -43,6 +46,27 @@ Engine.Shape.Puller.prototype = { alpha: 0, + sizeOffset: 100, + + resize: function(width, height, sizeOnly){ + var halfOffset = this.sizeOffset / 2, + len, p; + + this.size.x = width + this.sizeOffset; + this.size.y = height + this.sizeOffset; + + this.pos.x = -(width / 2 + halfOffset); + this.pos.y = -(height / 2 + halfOffset); + + if (sizeOnly) { + return this; + } + + for (p = 0, len = this.points.length; p < len; p++) { + this.points[p].resize(); + } + }, + update: function(engine){ var p; @@ -51,7 +75,7 @@ Engine.Shape.Puller.prototype = { } for (p = 0; p < this.polygons.length; p++) { - this.polygons[p].update(engine); + this.polygons[p].update(engine, this); } if (this.alpha < 0.2) { diff --git a/website/source/javascripts/app/Engine.js b/website/source/javascripts/app/Engine.js index 858fe122f..1c3d032eb 100644 --- a/website/source/javascripts/app/Engine.js +++ b/website/source/javascripts/app/Engine.js @@ -87,11 +87,11 @@ Engine = Base.extend({ image.style.opacity = 1; new Chainable() - .wait(2000) + .wait(1000) .then(function(){ this.starGeneratorRate = 200; }, this) - .wait(2000) + .wait(1000) .then(function(){ this.showGrid = true; }, this) @@ -123,7 +123,7 @@ Engine = Base.extend({ setupStarfield: function(){ this.particles = []; // this.generateParticles(50, true); - this.generateParticles(1000); + this.generateParticles(400); }, setupTessellation: function(canvas){ @@ -141,7 +141,7 @@ Engine = Base.extend({ -(this.width / 2), -(this.height / 2), this.width, - this.height * 1.5, + this.height, Grid.points, Grid.polygons ); @@ -169,8 +169,9 @@ Engine = Base.extend({ this.renderStarfield(this.now); if (this.showGrid) { - this.grid.update(this); - this.grid.draw(this.context, scale); + this.grid + .update(this) + .draw(this.context, scale); } if (this.showShapes) { @@ -186,12 +187,14 @@ Engine = Base.extend({ var scale = this.scale, p, index; for (p = 0; p < this.shapes.length; p++) { - this.shapes[p].update(this); - this.shapes[p].draw(this.context, scale); + this.shapes[p] + .update(this) + .draw(this.context, scale); } - this.logo.update(this); - this.logo.draw(this.context, scale); + this.logo + .update(this) + .draw(this.context, scale); // Remove destroyed shapes for (p = 0; p < this._deferredShapes.length; p++) { @@ -266,6 +269,10 @@ Engine = Base.extend({ this.width / 2 * scale >> 0, this.height / 2 * scale >> 0 ); + + if (this.grid) { + this.grid.resize(this.width, this.height); + } }, renderStarfield: function(){ diff --git a/website/source/javascripts/app/Grid.js b/website/source/javascripts/app/Grid.js index 2a6f938e1..9ea5055ec 100644 --- a/website/source/javascripts/app/Grid.js +++ b/website/source/javascripts/app/Grid.js @@ -1,388 +1,403 @@ var Grid = { "data": { - "width": 1601, - "height": 993, - "ar": 0.6202373516552155 + "width": 1572, + "height": 979, + "ar": 0.6227735368956743 }, "points": [ { "id": "point-0", - "x": 0.14322298563397878, - "y": 0.0188632104934416 + "x": 0.01743002544529262, + "y": 0.045658835546476005 }, { "id": "point-1", - "x": 0.04984384759525296, - "y": 0.07507807620237353 + "x": -0.0001272264631043257, + "y": 0.7701736465781408 }, { "id": "point-2", - "x": 0.15202998126171144, - "y": 0.10256089943785135 + "x": 0.012468193384223917, + "y": 0.32665985699693567 }, { "id": "point-7", - "x": 0.21742660836976888, - "y": 0.05190505933791381 + "x": 0.04052162849872774, + "y": 0.12277834525025537 }, { "id": "point-12", - "x": 0.34091193004372267, - "y": 0.00499687695190506 + "x": 0.13568702290076337, + "y": 0.030847803881511746 }, { "id": "point-17", - "x": 0.21736414740787008, - "y": 0.1259837601499063 + "x": 0.14465648854961832, + "y": 0.16772216547497446 }, { "id": "point-22", - "x": 0.2873204247345409, - "y": 0.06308557151780138 + "x": 0.20184478371501274, + "y": 0.05536261491317671 + }, + { + "id": "point-27", + "x": 0.37099236641221384, + "y": 0.02696629213483146 }, { "id": "point-32", - "x": 0.32873204247345406, - "y": 0.10331043098063711 + "x": 0.49357506361323156, + "y": 0.00020429009193054137 + }, + { + "id": "point-37", + "x": 0.1993002544529262, + "y": 0.16281920326864147 }, { "id": "point-42", - "x": 0.40555902560899443, - "y": 0.07645221736414742 - }, - { - "id": "point-47", - "x": 0.4946283572767021, - "y": 0.00006246096189881324 + "x": 0.30337150127226464, + "y": 0.05965270684371808 }, { "id": "point-52", - "x": 0.5602748282323547, - "y": 0.07951280449718927 - }, - { - "id": "point-57", - "x": 0.6095565271705184, - "y": 0.010368519675203 + "x": 0.32461832061068707, + "y": 0.1689479060265577 }, { "id": "point-62", - "x": 0.7093066833229231, - "y": 0.04528419737663961 - }, - { - "id": "point-67", - "x": 0.852529668956902, - "y": 0.009056839475327922 + "x": 0.4028625954198473, + "y": 0.12502553626149132 }, { "id": "point-72", - "x": 0.6542785758900687, - "y": 0.13360399750156154 + "x": 0.5604325699745547, + "y": 0.13003064351378957 }, { "id": "point-77", - "x": 0.7742660836976889, - "y": 0.10543410368519679 + "x": 0.5724554707379135, + "y": 0.01491317671092952 }, { "id": "point-82", - "x": 0.7868831980012492, - "y": 0.053029356652092456 + "x": 0.8836513994910941, + "y": 0.05372829417773237 + }, + { + "id": "point-87", + "x": 0.9759541984732825, + "y": 0.061184882533197135 }, { "id": "point-92", - "x": 0.8560274828232355, - "y": 0.07913803872579639 + "x": 0.7122137404580152, + "y": 0.07405515832482125 }, { "id": "point-102", - "x": 0.9703310430980637, - "y": 0.10543410368519679 + "x": 0.6561704834605598, + "y": 0.218488253319714 }, { - "id": "point-106", - "x": 0.02229856339787633, - "y": 0.1997501561524048 + "id": "point-107", + "x": 0.7784351145038169, + "y": 0.1319713993871297 }, { "id": "point-112", - "x": 0.14328544659587758, - "y": 0.19587757651467835 + "x": 0.7912213740458014, + "y": 0.08672114402451482 }, { "id": "point-122", - "x": 0.22342286071205497, - "y": 0.24253591505309188 + "x": 0.8616412213740458, + "y": 0.12941777323799797 }, { - "id": "point-127", - "x": 0.3110555902560899, - "y": 0.17539038101186763 + "id": "point-132", + "x": 0.9780534351145039, + "y": 0.17242083758937693 }, { "id": "point-142", - "x": 0.3754528419737664, - "y": 0.2044971892567146 - }, - { - "id": "point-147", - "x": 0.4637101811367895, - "y": 0.1989381636477202 + "x": 0.9898854961832061, + "y": 0.30960163432073545 }, { "id": "point-152", - "x": 0.5165521549031855, - "y": 0.14740787008119927 + "x": 0.12888040712468193, + "y": 0.36149131767109294 }, { "id": "point-162", - "x": 0.5850093691442848, - "y": 0.21692692067457844 + "x": 0.21743002544529266, + "y": 0.39662921348314606 }, { - "id": "point-177", - "x": 0.7033728919425358, - "y": 0.18738288569643974 + "id": "point-167", + "x": 0.3361959287531807, + "y": 0.2868232890704801 + }, + { + "id": "point-182", + "x": 0.37220101781170484, + "y": 0.3344228804902961 }, { "id": "point-187", - "x": 0.7677701436602123, - "y": 0.21742660836976893 + "x": 0.4620865139949109, + "y": 0.32533197139938713 }, { "id": "point-192", - "x": 0.8801374141161773, - "y": 0.18226108682073708 + "x": 0.5159033078880407, + "y": 0.24106230847803883 }, { - "id": "point-208", - "x": 0.9807620237351655, - "y": 0.2017489069331668 + "id": "point-202", + "x": 0.5856234096692112, + "y": 0.3547497446373851 }, { - "id": "point-212", - "x": 0, - "y": 0.28844472204871957 + "id": "point-217", + "x": 0.7061704834605598, + "y": 0.30643513789581206 }, { - "id": "point-213", - "x": 0.11561524047470333, - "y": 0.27245471580262337 + "id": "point-227", + "x": 0.7717557251908397, + "y": 0.35556690500510724 }, { - "id": "point-223", - "x": 0.18444722048719553, - "y": 0.3201124297314179 + "id": "point-232", + "x": 0.8581424936386769, + "y": 0.2822267620020429 }, { - "id": "point-233", - "x": 0.29281698938163647, - "y": 0.31542785758900693 + "id": "point-252", + "x": 0.009287531806615776, + "y": 0.47477017364657814 }, { - "id": "point-248", - "x": 0.40555902560899443, - "y": 0.29138038725796384 + "id": "point-257", + "x": 0.10756997455470736, + "y": 0.4454545454545455 }, { - "id": "point-258", - "x": 0.49656464709556525, - "y": 0.30056214865708936 + "id": "point-267", + "x": 0.17767175572519084, + "y": 0.5234933605720122 }, { - "id": "point-263", - "x": 0.5727670206121174, - "y": 0.28838226108682075 + "id": "point-277", + "x": 0.2962468193384224, + "y": 0.5465781409601634 }, { - "id": "point-273", - "x": 0.6485946283572769, - "y": 0.3176139912554654 + "id": "point-292", + "x": 0.4138676844783716, + "y": 0.4349336057201226 }, { - "id": "point-283", - "x": 0.7437851342910681, - "y": 0.28288569643972516 + "id": "point-302", + "x": 0.5194020356234097, + "y": 0.5248212461695607 }, { - "id": "point-293", - "x": 0.8633978763272954, - "y": 0.30243597751405377 + "id": "point-307", + "x": 0.5548982188295165, + "y": 0.49836567926455566 }, { - "id": "point-308", - "x": 0.9998126171143036, - "y": 0.300687070580887 + "id": "point-317", + "x": 0.6503816793893129, + "y": 0.5194075587334014 }, { - "id": "point-312", - "x": 0.009868831980012493, - "y": 0.47101811367895075 + "id": "point-327", + "x": 0.7473282442748093, + "y": 0.4626149131767109 }, { - "id": "point-313", - "x": 0.05921299188007495, - "y": 0.38869456589631485 + "id": "point-337", + "x": 0.8691475826972009, + "y": 0.49458631256384067 }, { - "id": "point-323", - "x": 0.1324797001873829, - "y": 0.3617114303560276 + "id": "point-352", + "x": 0.9832061068702289, + "y": 0.4917262512768131 }, { - "id": "point-333", - "x": 0.18232354778263585, - "y": 0.41711430356027485 + "id": "point-357", + "x": 0.9990458015267175, + "y": 0.7504596527068438 }, { - "id": "point-343", - "x": 0.3008119925046846, - "y": 0.39693941286695816 + "id": "point-362", + "x": 0.05012722646310432, + "y": 0.6356486210418795 }, { - "id": "point-348", - "x": 0.3870705808869457, - "y": 0.3713928794503436 + "id": "point-372", + "x": 0.14440203562340967, + "y": 0.6027579162410623 }, { - "id": "point-358", - "x": 0.4925046845721424, - "y": 0.3724547158026234 + "id": "point-382", + "x": 0.17550890585241732, + "y": 0.6821246169560776 }, { - "id": "point-368", - "x": 0.6081823860087445, - "y": 0.39687695190505934 + "id": "point-392", + "x": 0.3370229007633587, + "y": 0.6620020429009194 }, { - "id": "point-383", - "x": 0.6968144909431605, - "y": 0.3900062460961899 + "id": "point-397", + "x": 0.38403307888040716, + "y": 0.6074565883554648 }, { - "id": "point-393", - "x": 0.797626483447845, - "y": 0.3921299188007496 + "id": "point-407", + "x": 0.49141221374045796, + "y": 0.609090909090909 }, { - "id": "point-403", - "x": 0.8633978763272954, - "y": 0.4129294191130544 + "id": "point-417", + "x": 0.6092239185750636, + "y": 0.6490296220633298 }, { - "id": "point-408", - "x": 0.9315427857589007, - "y": 0.36639600249843857 + "id": "point-432", + "x": 0.6994910941475826, + "y": 0.6377936670071501 }, { - "id": "point-418", - "x": 0.9766396002498438, - "y": 0.49100562148657095 + "id": "point-442", + "x": 0.8021628498727735, + "y": 0.6412665985699693 }, { - "id": "point-423", - "x": 0.09119300437226734, - "y": 0.4971267957526546 + "id": "point-452", + "x": 0.8450381679389314, + "y": 0.6878447395301328 }, { - "id": "point-438", - "x": 0.21299188007495315, - "y": 0.4971267957526546 + "id": "point-457", + "x": 0.9385496183206108, + "y": 0.5991828396322778 }, { - "id": "point-448", - "x": 0.34378513429106805, - "y": 0.4544659587757652 + "id": "point-472", + "x": 0.08269720101781171, + "y": 0.8129724208375894 }, { - "id": "point-458", - "x": 0.43710181136789505, - "y": 0.5008744534665834 + "id": "point-487", + "x": 0.19293893129770992, + "y": 0.7488253319713994 }, { - "id": "point-468", - "x": 0.524422236102436, - "y": 0.4815740162398502 + "id": "point-497", + "x": 0.3399491094147582, + "y": 0.7432073544433095 }, { - "id": "point-478", - "x": 0.6131792629606496, - "y": 0.5098688319800125 + "id": "point-507", + "x": 0.4349872773536895, + "y": 0.8191011235955056 }, { - "id": "point-483", - "x": 0.6606495940037476, - "y": 0.469269206745784 + "id": "point-517", + "x": 0.4825699745547074, + "y": 0.8216547497446374 }, { - "id": "point-493", - "x": 0.7742660836976889, - "y": 0.5098688319800125 + "id": "point-527", + "x": 0.6143129770992367, + "y": 0.8338100102145046 }, { - "id": "point-508", - "x": 0.891317926296065, - "y": 0.4853841349156777 + "id": "point-532", + "x": 0.6626590330788804, + "y": 0.7674157303370785 }, { - "id": "point-522", - "x": 0.04984384759525296, - "y": 0.5787008119925048 + "id": "point-542", + "x": 0.80470737913486, + "y": 0.7797752808988764 }, { - "id": "point-528", - "x": 0.10855715178013742, - "y": 0.5830106183635229 + "id": "point-557", + "x": 0.858587786259542, + "y": 0.780388151174668 }, { - "id": "point-538", - "x": 0.21742660836976888, - "y": 0.6202373516552155 + "id": "point-571", + "x": 0.04058524173027989, + "y": 0.9923391215526047 }, { - "id": "point-543", - "x": 0.30087445346658337, - "y": 0.5400999375390382 + "id": "point-577", + "x": 0.10038167938931299, + "y": 0.9534218590398367 }, { - "id": "point-553", - "x": 0.36820737039350404, - "y": 0.6108682073703936 + "id": "point-587", + "x": 0.21615776081424937, + "y": 0.9832482124616956 }, { - "id": "point-563", - "x": 0.48107432854465965, - "y": 0.5948782011242973 + "id": "point-592", + "x": 0.31653944020356234, + "y": 0.8937691521961184 }, { - "id": "point-578", - "x": 0.6131792629606496, - "y": 0.6108682073703936 + "id": "point-602", + "x": 0.3648218829516539, + "y": 0.9393258426966292 }, { - "id": "point-583", - "x": 0.6974391005621485, - "y": 0.5910056214865711 + "id": "point-612", + "x": 0.4798346055979643, + "y": 0.9085801838610827 }, { - "id": "point-598", - "x": 0.7570893191755153, - "y": 0.6108682073703936 + "id": "point-627", + "x": 0.6159669211195928, + "y": 0.9221654749744637 }, { - "id": "point-603", - "x": 0.8850093691442847, - "y": 0.5844472204871956 + "id": "point-632", + "x": 0.7001272264631042, + "y": 0.9664964249233913 + }, + { + "id": "point-647", + "x": 0.7608778625954199, + "y": 0.9989785495403473 + }, + { + "id": "point-652", + "x": 0.8911577608142494, + "y": 0.9557711950970379 + }, + { + "id": "point-667", + "x": 0.9989821882951655, + "y": 0.9853932584269665 } ], "polygons": [ { "id": "poly-0", "color": { - "h": 275.31428571428575, + "h": 269.25373134328356, "s": 100, - "l": 65.68627450980392, + "l": 60.588235294117645, "a": 1 }, "points": [ @@ -394,9 +409,9 @@ var Grid = { { "id": "poly-1", "color": { - "h": 276.26373626373623, + "h": 277.1428571428571, "s": 100, - "l": 64.31372549019608, + "l": 67.05882352941177, "a": 1 }, "points": [ @@ -408,9 +423,9 @@ var Grid = { { "id": "poly-2", "color": { - "h": 272.23404255319144, + "h": 277.1428571428571, "s": 100, - "l": 63.13725490196078, + "l": 67.05882352941177, "a": 1 }, "points": [ @@ -422,27 +437,27 @@ var Grid = { { "id": "poly-3", "color": { - "h": 274.46808510638294, + "h": 275.31428571428575, "s": 100, - "l": 63.13725490196078, + "l": 65.68627450980392, "a": 1 }, "points": [ + "point-12", "point-7", - "point-2", "point-17" ] }, { "id": "poly-4", "color": { - "h": 272.23404255319144, + "h": 276.26373626373623, "s": 100, - "l": 63.13725490196078, + "l": 64.31372549019608, "a": 1 }, "points": [ - "point-7", + "point-12", "point-17", "point-22" ] @@ -450,243 +465,33 @@ var Grid = { { "id": "poly-5", "color": { - "h": 269.25373134328356, + "h": 272.23404255319144, "s": 100, - "l": 60.588235294117645, + "l": 63.13725490196078, "a": 1 }, "points": [ - "point-7", + "point-12", "point-22", - "point-12" + "point-27" ] }, { "id": "poly-6", - "color": { - "h": 269.25373134328356, - "s": 100, - "l": 60.588235294117645, - "a": 1 - }, - "points": [ - "point-22", - "point-17", - "point-32" - ] - }, - { - "id": "poly-7", "color": { "h": 268.2692307692307, "s": 100, "l": 59.21568627450981, "a": 1 }, - "points": [ - "point-22", - "point-32", - "point-12" - ] - }, - { - "id": "poly-8", - "color": { - "h": 265.96153846153845, - "s": 100, - "l": 59.21568627450981, - "a": 1 - }, "points": [ "point-12", - "point-32", - "point-42" + "point-27", + "point-32" ] }, { - "id": "poly-9", - "color": { - "h": 265.88235294117646, - "s": 86.4406779661017, - "l": 53.72549019607843, - "a": 1 - }, - "points": [ - "point-12", - "point-42", - "point-47" - ] - }, - { - "id": "poly-10", - "color": { - "h": 265.48387096774195, - "s": 76.22950819672131, - "l": 47.84313725490196, - "a": 1 - }, - "points": [ - "point-47", - "point-42", - "point-52" - ] - }, - { - "id": "poly-11", - "color": { - "h": 265.1933701657459, - "s": 83.41013824884793, - "l": 42.549019607843135, - "a": 1 - }, - "points": [ - "point-47", - "point-52", - "point-57" - ] - }, - { - "id": "poly-12", - "color": { - "h": 263.3532934131737, - "s": 91.2568306010929, - "l": 35.88235294117647, - "a": 1 - }, - "points": [ - "point-57", - "point-52", - "point-62" - ] - }, - { - "id": "poly-13", - "color": { - "h": 263.64963503649636, - "s": 100, - "l": 26.862745098039216, - "a": 1 - }, - "points": [ - "point-57", - "point-62", - "point-67" - ] - }, - { - "id": "poly-14", - "color": { - "h": 264.45859872611464, - "s": 96.31901840490798, - "l": 31.960784313725487, - "a": 1 - }, - "points": [ - "point-62", - "point-52", - "point-72" - ] - }, - { - "id": "poly-15", - "color": { - "h": 263.64963503649636, - "s": 100, - "l": 26.862745098039216, - "a": 1 - }, - "points": [ - "point-62", - "point-72", - "point-77" - ] - }, - { - "id": "poly-16", - "color": { - "h": 261.69230769230774, - "s": 100, - "l": 25.49019607843137, - "a": 1 - }, - "points": [ - "point-62", - "point-77", - "point-82" - ] - }, - { - "id": "poly-17", - "color": { - "h": 260, - "s": 100, - "l": 24.11764705882353, - "a": 1 - }, - "points": [ - "point-62", - "point-82", - "point-67" - ] - }, - { - "id": "poly-18", - "color": { - "h": 260, - "s": 100, - "l": 24.11764705882353, - "a": 1 - }, - "points": [ - "point-82", - "point-77", - "point-92" - ] - }, - { - "id": "poly-19", - "color": { - "h": 260, - "s": 100, - "l": 24.11764705882353, - "a": 1 - }, - "points": [ - "point-82", - "point-92", - "point-67" - ] - }, - { - "id": "poly-20", - "color": { - "h": 259.44444444444446, - "s": 100, - "l": 21.176470588235293, - "a": 1 - }, - "points": [ - "point-67", - "point-92", - "point-102" - ] - }, - { - "id": "poly-21", - "color": { - "h": 275.31428571428575, - "s": 100, - "l": 65.68627450980392, - "a": 1 - }, - "points": [ - "point-1", - "point-106", - "point-2" - ] - }, - { - "id": "poly-22", + "id": "poly-7", "color": { "h": 274.46808510638294, "s": 100, @@ -694,13 +499,13 @@ var Grid = { "a": 1 }, "points": [ - "point-2", - "point-106", - "point-112" + "point-22", + "point-17", + "point-37" ] }, { - "id": "poly-23", + "id": "poly-8", "color": { "h": 272.23404255319144, "s": 100, @@ -708,13 +513,13 @@ var Grid = { "a": 1 }, "points": [ - "point-2", - "point-112", - "point-17" + "point-22", + "point-37", + "point-42" ] }, { - "id": "poly-24", + "id": "poly-9", "color": { "h": 269.25373134328356, "s": 100, @@ -722,251 +527,41 @@ var Grid = { "a": 1 }, "points": [ - "point-17", - "point-112", - "point-122" + "point-22", + "point-42", + "point-27" ] }, { - "id": "poly-25", + "id": "poly-10", + "color": { + "h": 269.25373134328356, + "s": 100, + "l": 60.588235294117645, + "a": 1 + }, + "points": [ + "point-42", + "point-37", + "point-52" + ] + }, + { + "id": "poly-11", "color": { "h": 268.2692307692307, "s": 100, "l": 59.21568627450981, "a": 1 }, - "points": [ - "point-17", - "point-122", - "point-127" - ] - }, - { - "id": "poly-26", - "color": { - "h": 268.2692307692307, - "s": 100, - "l": 59.21568627450981, - "a": 1 - }, - "points": [ - "point-17", - "point-127", - "point-32" - ] - }, - { - "id": "poly-27", - "color": { - "h": 265.92233009708735, - "s": 92.7927927927928, - "l": 56.470588235294116, - "a": 1 - }, - "points": [ - "point-32", - "point-127", - "point-42" - ] - }, - { - "id": "poly-28", - "color": { - "h": 265.88235294117646, - "s": 86.4406779661017, - "l": 53.72549019607843, - "a": 1 - }, "points": [ "point-42", - "point-127", - "point-142" + "point-52", + "point-27" ] }, { - "id": "poly-29", - "color": { - "h": 265.48387096774195, - "s": 76.22950819672131, - "l": 47.84313725490196, - "a": 1 - }, - "points": [ - "point-42", - "point-142", - "point-147" - ] - }, - { - "id": "poly-30", - "color": { - "h": 265.24590163934425, - "s": 79.22077922077922, - "l": 45.294117647058826, - "a": 1 - }, - "points": [ - "point-42", - "point-147", - "point-152" - ] - }, - { - "id": "poly-31", - "color": { - "h": 265.24590163934425, - "s": 79.22077922077922, - "l": 45.294117647058826, - "a": 1 - }, - "points": [ - "point-42", - "point-152", - "point-52" - ] - }, - { - "id": "poly-32", - "color": { - "h": 263.3532934131737, - "s": 91.2568306010929, - "l": 35.88235294117647, - "a": 1 - }, - "points": [ - "point-152", - "point-147", - "point-162" - ] - }, - { - "id": "poly-33", - "color": { - "h": 264.45859872611464, - "s": 96.31901840490798, - "l": 31.960784313725487, - "a": 1 - }, - "points": [ - "point-152", - "point-162", - "point-72" - ] - }, - { - "id": "poly-34", - "color": { - "h": 263.3532934131737, - "s": 91.2568306010929, - "l": 35.88235294117647, - "a": 1 - }, - "points": [ - "point-152", - "point-72", - "point-52" - ] - }, - { - "id": "poly-35", - "color": { - "h": 263.64963503649636, - "s": 100, - "l": 26.862745098039216, - "a": 1 - }, - "points": [ - "point-72", - "point-162", - "point-177" - ] - }, - { - "id": "poly-36", - "color": { - "h": 261.69230769230774, - "s": 100, - "l": 25.49019607843137, - "a": 1 - }, - "points": [ - "point-72", - "point-177", - "point-77" - ] - }, - { - "id": "poly-37", - "color": { - "h": 259.44444444444446, - "s": 100, - "l": 21.176470588235293, - "a": 1 - }, - "points": [ - "point-77", - "point-177", - "point-187" - ] - }, - { - "id": "poly-38", - "color": { - "h": 257.2277227722772, - "s": 100, - "l": 19.80392156862745, - "a": 1 - }, - "points": [ - "point-77", - "point-187", - "point-192" - ] - }, - { - "id": "poly-39", - "color": { - "h": 259.44444444444446, - "s": 100, - "l": 21.176470588235293, - "a": 1 - }, - "points": [ - "point-77", - "point-192", - "point-92" - ] - }, - { - "id": "poly-40", - "color": { - "h": 257.2277227722772, - "s": 100, - "l": 19.80392156862745, - "a": 1 - }, - "points": [ - "point-92", - "point-192", - "point-102" - ] - }, - { - "id": "poly-41", - "color": { - "h": 255.31914893617022, - "s": 100, - "l": 18.43137254901961, - "a": 1 - }, - "points": [ - "point-102", - "point-192", - "point-208" - ] - }, - { - "id": "poly-42", + "id": "poly-12", "color": { "h": 265.96153846153845, "s": 100, @@ -974,83 +569,41 @@ var Grid = { "a": 1 }, "points": [ - "point-106", - "point-212", - "point-213" + "point-27", + "point-52", + "point-62" ] }, { - "id": "poly-43", + "id": "poly-13", "color": { - "h": 268.2692307692307, - "s": 100, - "l": 59.21568627450981, + "h": 265.88235294117646, + "s": 86.4406779661017, + "l": 53.72549019607843, "a": 1 }, "points": [ - "point-106", - "point-213", - "point-112" + "point-27", + "point-62", + "point-32" ] }, { - "id": "poly-44", + "id": "poly-14", "color": { - "h": 265.54455445544556, - "s": 80.8, - "l": 50.98039215686274, + "h": 265.48387096774195, + "s": 76.22950819672131, + "l": 47.84313725490196, "a": 1 }, "points": [ - "point-112", - "point-213", - "point-223" + "point-32", + "point-62", + "point-72" ] }, { - "id": "poly-45", - "color": { - "h": 265.54455445544556, - "s": 80.8, - "l": 50.98039215686274, - "a": 1 - }, - "points": [ - "point-112", - "point-223", - "point-122" - ] - }, - { - "id": "poly-46", - "color": { - "h": 264.68571428571425, - "s": 91.62303664921467, - "l": 37.450980392156865, - "a": 1 - }, - "points": [ - "point-122", - "point-223", - "point-233" - ] - }, - { - "id": "poly-47", - "color": { - "h": 265.24590163934425, - "s": 79.22077922077922, - "l": 45.294117647058826, - "a": 1 - }, - "points": [ - "point-122", - "point-233", - "point-127" - ] - }, - { - "id": "poly-48", + "id": "poly-15", "color": { "h": 265.1933701657459, "s": 83.41013824884793, @@ -1058,195 +611,13 @@ var Grid = { "a": 1 }, "points": [ - "point-127", - "point-233", - "point-142" + "point-32", + "point-72", + "point-77" ] }, { - "id": "poly-49", - "color": { - "h": 263.3532934131737, - "s": 91.2568306010929, - "l": 35.88235294117647, - "a": 1 - }, - "points": [ - "point-142", - "point-233", - "point-248" - ] - }, - { - "id": "poly-50", - "color": { - "h": 264.68571428571425, - "s": 91.62303664921467, - "l": 37.450980392156865, - "a": 1 - }, - "points": [ - "point-142", - "point-248", - "point-147" - ] - }, - { - "id": "poly-51", - "color": { - "h": 262.3448275862069, - "s": 100, - "l": 28.431372549019606, - "a": 1 - }, - "points": [ - "point-147", - "point-248", - "point-258" - ] - }, - { - "id": "poly-52", - "color": { - "h": 260, - "s": 100, - "l": 24.11764705882353, - "a": 1 - }, - "points": [ - "point-147", - "point-258", - "point-263" - ] - }, - { - "id": "poly-53", - "color": { - "h": 263.64963503649636, - "s": 100, - "l": 26.862745098039216, - "a": 1 - }, - "points": [ - "point-147", - "point-263", - "point-162" - ] - }, - { - "id": "poly-54", - "color": { - "h": 255.31914893617022, - "s": 100, - "l": 18.43137254901961, - "a": 1 - }, - "points": [ - "point-162", - "point-263", - "point-273" - ] - }, - { - "id": "poly-55", - "color": { - "h": 257.2277227722772, - "s": 100, - "l": 19.80392156862745, - "a": 1 - }, - "points": [ - "point-162", - "point-273", - "point-177" - ] - }, - { - "id": "poly-56", - "color": { - "h": 249.75, - "s": 100, - "l": 15.686274509803921, - "a": 1 - }, - "points": [ - "point-177", - "point-273", - "point-283" - ] - }, - { - "id": "poly-57", - "color": { - "h": 249.75, - "s": 100, - "l": 15.686274509803921, - "a": 1 - }, - "points": [ - "point-177", - "point-283", - "point-187" - ] - }, - { - "id": "poly-58", - "color": { - "h": 240, - "s": 100, - "l": 9.215686274509805, - "a": 1 - }, - "points": [ - "point-187", - "point-283", - "point-293" - ] - }, - { - "id": "poly-59", - "color": { - "h": 246.57534246575347, - "s": 100, - "l": 14.313725490196077, - "a": 1 - }, - "points": [ - "point-187", - "point-293", - "point-192" - ] - }, - { - "id": "poly-60", - "color": { - "h": 242.99999999999997, - "s": 100, - "l": 11.76470588235294, - "a": 1 - }, - "points": [ - "point-192", - "point-293", - "point-208" - ] - }, - { - "id": "poly-61", - "color": { - "h": 240, - "s": 100, - "l": 8.03921568627451, - "a": 1 - }, - "points": [ - "point-208", - "point-293", - "point-308" - ] - }, - { - "id": "poly-62", + "id": "poly-16", "color": { "h": 264.45859872611464, "s": 96.31901840490798, @@ -1254,69 +625,41 @@ var Grid = { "a": 1 }, "points": [ - "point-212", - "point-312", - "point-313" + "point-32", + "point-77", + "point-82" ] }, { - "id": "poly-63", + "id": "poly-17", "color": { - "h": 265.24590163934425, - "s": 79.22077922077922, - "l": 45.294117647058826, - "a": 1 - }, - "points": [ - "point-212", - "point-313", - "point-213" - ] - }, - { - "id": "poly-64", - "color": { - "h": 264.68571428571425, - "s": 91.62303664921467, - "l": 37.450980392156865, - "a": 1 - }, - "points": [ - "point-213", - "point-313", - "point-323" - ] - }, - { - "id": "poly-65", - "color": { - "h": 264.9438202247191, - "s": 87.25490196078431, - "l": 40, - "a": 1 - }, - "points": [ - "point-213", - "point-323", - "point-223" - ] - }, - { - "id": "poly-66", - "color": { - "h": 262.3448275862069, + "h": 261.69230769230774, "s": 100, - "l": 28.431372549019606, + "l": 25.49019607843137, "a": 1 }, "points": [ - "point-223", - "point-323", - "point-333" + "point-32", + "point-82", + "point-87" ] }, { - "id": "poly-67", + "id": "poly-18", + "color": { + "h": 263.3532934131737, + "s": 91.2568306010929, + "l": 35.88235294117647, + "a": 1 + }, + "points": [ + "point-77", + "point-72", + "point-92" + ] + }, + { + "id": "poly-19", "color": { "h": 263.64963503649636, "s": 100, @@ -1324,41 +667,41 @@ var Grid = { "a": 1 }, "points": [ - "point-223", - "point-333", - "point-233" + "point-77", + "point-92", + "point-82" ] }, { - "id": "poly-68", + "id": "poly-20", "color": { - "h": 259.44444444444446, - "s": 100, - "l": 21.176470588235293, + "h": 264.45859872611464, + "s": 96.31901840490798, + "l": 31.960784313725487, "a": 1 }, "points": [ - "point-233", - "point-333", - "point-343" + "point-92", + "point-72", + "point-102" ] }, { - "id": "poly-69", + "id": "poly-21", "color": { - "h": 257.2277227722772, + "h": 263.64963503649636, "s": 100, - "l": 19.80392156862745, + "l": 26.862745098039216, "a": 1 }, "points": [ - "point-233", - "point-343", - "point-348" + "point-92", + "point-102", + "point-107" ] }, { - "id": "poly-70", + "id": "poly-22", "color": { "h": 261.69230769230774, "s": 100, @@ -1366,209 +709,13 @@ var Grid = { "a": 1 }, "points": [ - "point-233", - "point-348", - "point-248" + "point-92", + "point-107", + "point-112" ] }, { - "id": "poly-71", - "color": { - "h": 257.2277227722772, - "s": 100, - "l": 19.80392156862745, - "a": 1 - }, - "points": [ - "point-248", - "point-348", - "point-358" - ] - }, - { - "id": "poly-72", - "color": { - "h": 257.2277227722772, - "s": 100, - "l": 19.80392156862745, - "a": 1 - }, - "points": [ - "point-248", - "point-358", - "point-258" - ] - }, - { - "id": "poly-73", - "color": { - "h": 240, - "s": 100, - "l": 10.588235294117647, - "a": 1 - }, - "points": [ - "point-258", - "point-358", - "point-368" - ] - }, - { - "id": "poly-74", - "color": { - "h": 242.99999999999997, - "s": 100, - "l": 11.76470588235294, - "a": 1 - }, - "points": [ - "point-258", - "point-368", - "point-263" - ] - }, - { - "id": "poly-75", - "color": { - "h": 240, - "s": 100, - "l": 9.215686274509805, - "a": 1 - }, - "points": [ - "point-263", - "point-368", - "point-273" - ] - }, - { - "id": "poly-76", - "color": { - "h": 240, - "s": 100, - "l": 4.705882352941177, - "a": 1 - }, - "points": [ - "point-273", - "point-368", - "point-383" - ] - }, - { - "id": "poly-77", - "color": { - "h": 240, - "s": 100, - "l": 6.862745098039216, - "a": 1 - }, - "points": [ - "point-273", - "point-383", - "point-283" - ] - }, - { - "id": "poly-78", - "color": { - "h": 240, - "s": 100, - "l": 1.5686274509803921, - "a": 1 - }, - "points": [ - "point-283", - "point-383", - "point-393" - ] - }, - { - "id": "poly-79", - "color": { - "h": 240, - "s": 100, - "l": 2.549019607843137, - "a": 1 - }, - "points": [ - "point-283", - "point-393", - "point-293" - ] - }, - { - "id": "poly-80", - "color": { - "h": 0, - "s": 0, - "l": 0, - "a": 1 - }, - "points": [ - "point-293", - "point-393", - "point-403" - ] - }, - { - "id": "poly-81", - "color": { - "h": 0, - "s": 0, - "l": 0, - "a": 1 - }, - "points": [ - "point-293", - "point-403", - "point-408" - ] - }, - { - "id": "poly-82", - "color": { - "h": 240, - "s": 100, - "l": 1.5686274509803921, - "a": 1 - }, - "points": [ - "point-293", - "point-408", - "point-308" - ] - }, - { - "id": "poly-83", - "color": { - "h": 0, - "s": 0, - "l": 0, - "a": 1 - }, - "points": [ - "point-308", - "point-408", - "point-418" - ] - }, - { - "id": "poly-84", - "color": { - "h": 261.69230769230774, - "s": 100, - "l": 25.49019607843137, - "a": 1 - }, - "points": [ - "point-313", - "point-312", - "point-423" - ] - }, - { - "id": "poly-85", + "id": "poly-23", "color": { "h": 260, "s": 100, @@ -1576,265 +723,41 @@ var Grid = { "a": 1 }, "points": [ - "point-313", - "point-423", - "point-333" + "point-92", + "point-112", + "point-82" ] }, { - "id": "poly-86", + "id": "poly-24", "color": { - "h": 263.64963503649636, + "h": 260, "s": 100, - "l": 26.862745098039216, + "l": 24.11764705882353, "a": 1 }, "points": [ - "point-313", - "point-333", - "point-323" + "point-112", + "point-107", + "point-122" ] }, { - "id": "poly-87", + "id": "poly-25", "color": { - "h": 257.2277227722772, + "h": 260, "s": 100, - "l": 19.80392156862745, + "l": 24.11764705882353, "a": 1 }, "points": [ - "point-333", - "point-423", - "point-438" + "point-112", + "point-122", + "point-82" ] }, { - "id": "poly-88", - "color": { - "h": 255.31914893617022, - "s": 100, - "l": 18.43137254901961, - "a": 1 - }, - "points": [ - "point-333", - "point-438", - "point-343" - ] - }, - { - "id": "poly-89", - "color": { - "h": 249.75, - "s": 100, - "l": 15.686274509803921, - "a": 1 - }, - "points": [ - "point-343", - "point-438", - "point-448" - ] - }, - { - "id": "poly-90", - "color": { - "h": 246.57534246575347, - "s": 100, - "l": 14.313725490196077, - "a": 1 - }, - "points": [ - "point-343", - "point-448", - "point-348" - ] - }, - { - "id": "poly-91", - "color": { - "h": 240, - "s": 100, - "l": 10.588235294117647, - "a": 1 - }, - "points": [ - "point-348", - "point-448", - "point-458" - ] - }, - { - "id": "poly-92", - "color": { - "h": 240, - "s": 100, - "l": 9.215686274509805, - "a": 1 - }, - "points": [ - "point-348", - "point-458", - "point-358" - ] - }, - { - "id": "poly-93", - "color": { - "h": 240, - "s": 100, - "l": 6.862745098039216, - "a": 1 - }, - "points": [ - "point-358", - "point-458", - "point-468" - ] - }, - { - "id": "poly-94", - "color": { - "h": 240, - "s": 100, - "l": 5.686274509803922, - "a": 1 - }, - "points": [ - "point-358", - "point-468", - "point-368" - ] - }, - { - "id": "poly-95", - "color": { - "h": 240, - "s": 100, - "l": 1.5686274509803921, - "a": 1 - }, - "points": [ - "point-368", - "point-468", - "point-478" - ] - }, - { - "id": "poly-96", - "color": { - "h": 0, - "s": 0, - "l": 0, - "a": 1 - }, - "points": [ - "point-368", - "point-478", - "point-483" - ] - }, - { - "id": "poly-97", - "color": { - "h": 0, - "s": 0, - "l": 0, - "a": 1 - }, - "points": [ - "point-368", - "point-483", - "point-383" - ] - }, - { - "id": "poly-98", - "color": { - "h": 0, - "s": 0, - "l": 0, - "a": 1 - }, - "points": [ - "point-383", - "point-483", - "point-493" - ] - }, - { - "id": "poly-99", - "color": { - "h": 0, - "s": 0, - "l": 0, - "a": 1 - }, - "points": [ - "point-383", - "point-493", - "point-393" - ] - }, - { - "id": "poly-100", - "color": { - "h": 0, - "s": 0, - "l": 0, - "a": 1 - }, - "points": [ - "point-393", - "point-493", - "point-403" - ] - }, - { - "id": "poly-101", - "color": { - "h": 0, - "s": 0, - "l": 0, - "a": 1 - }, - "points": [ - "point-403", - "point-493", - "point-508" - ] - }, - { - "id": "poly-102", - "color": { - "h": 0, - "s": 0, - "l": 0, - "a": 1 - }, - "points": [ - "point-403", - "point-508", - "point-408" - ] - }, - { - "id": "poly-103", - "color": { - "h": 0, - "s": 0, - "l": 0, - "a": 1 - }, - "points": [ - "point-408", - "point-508", - "point-418" - ] - }, - { - "id": "poly-104", + "id": "poly-26", "color": { "h": 259.44444444444446, "s": 100, @@ -1842,13 +765,27 @@ var Grid = { "a": 1 }, "points": [ - "point-312", - "point-522", - "point-423" + "point-82", + "point-122", + "point-132" ] }, { - "id": "poly-105", + "id": "poly-27", + "color": { + "h": 259.44444444444446, + "s": 100, + "l": 21.176470588235293, + "a": 1 + }, + "points": [ + "point-82", + "point-132", + "point-87" + ] + }, + { + "id": "poly-28", "color": { "h": 257.2277227722772, "s": 100, @@ -1856,13 +793,251 @@ var Grid = { "a": 1 }, "points": [ - "point-423", - "point-522", - "point-528" + "point-87", + "point-132", + "point-142" ] }, { - "id": "poly-106", + "id": "poly-29", + "color": { + "h": 275.31428571428575, + "s": 100, + "l": 65.68627450980392, + "a": 1 + }, + "points": [ + "point-7", + "point-2", + "point-17" + ] + }, + { + "id": "poly-30", + "color": { + "h": 274.46808510638294, + "s": 100, + "l": 63.13725490196078, + "a": 1 + }, + "points": [ + "point-17", + "point-2", + "point-152" + ] + }, + { + "id": "poly-31", + "color": { + "h": 272.23404255319144, + "s": 100, + "l": 63.13725490196078, + "a": 1 + }, + "points": [ + "point-17", + "point-152", + "point-37" + ] + }, + { + "id": "poly-32", + "color": { + "h": 269.25373134328356, + "s": 100, + "l": 60.588235294117645, + "a": 1 + }, + "points": [ + "point-37", + "point-152", + "point-162" + ] + }, + { + "id": "poly-33", + "color": { + "h": 268.2692307692307, + "s": 100, + "l": 59.21568627450981, + "a": 1 + }, + "points": [ + "point-37", + "point-162", + "point-167" + ] + }, + { + "id": "poly-34", + "color": { + "h": 268.2692307692307, + "s": 100, + "l": 59.21568627450981, + "a": 1 + }, + "points": [ + "point-37", + "point-167", + "point-52" + ] + }, + { + "id": "poly-35", + "color": { + "h": 265.92233009708735, + "s": 92.7927927927928, + "l": 56.470588235294116, + "a": 1 + }, + "points": [ + "point-52", + "point-167", + "point-62" + ] + }, + { + "id": "poly-36", + "color": { + "h": 265.88235294117646, + "s": 86.4406779661017, + "l": 53.72549019607843, + "a": 1 + }, + "points": [ + "point-62", + "point-167", + "point-182" + ] + }, + { + "id": "poly-37", + "color": { + "h": 265.48387096774195, + "s": 76.22950819672131, + "l": 47.84313725490196, + "a": 1 + }, + "points": [ + "point-62", + "point-182", + "point-187" + ] + }, + { + "id": "poly-38", + "color": { + "h": 265.24590163934425, + "s": 79.22077922077922, + "l": 45.294117647058826, + "a": 1 + }, + "points": [ + "point-62", + "point-187", + "point-192" + ] + }, + { + "id": "poly-39", + "color": { + "h": 265.24590163934425, + "s": 79.22077922077922, + "l": 45.294117647058826, + "a": 1 + }, + "points": [ + "point-62", + "point-192", + "point-72" + ] + }, + { + "id": "poly-40", + "color": { + "h": 263.3532934131737, + "s": 91.2568306010929, + "l": 35.88235294117647, + "a": 1 + }, + "points": [ + "point-192", + "point-187", + "point-202" + ] + }, + { + "id": "poly-41", + "color": { + "h": 264.45859872611464, + "s": 96.31901840490798, + "l": 31.960784313725487, + "a": 1 + }, + "points": [ + "point-192", + "point-202", + "point-102" + ] + }, + { + "id": "poly-42", + "color": { + "h": 263.3532934131737, + "s": 91.2568306010929, + "l": 35.88235294117647, + "a": 1 + }, + "points": [ + "point-192", + "point-102", + "point-72" + ] + }, + { + "id": "poly-43", + "color": { + "h": 263.64963503649636, + "s": 100, + "l": 26.862745098039216, + "a": 1 + }, + "points": [ + "point-102", + "point-202", + "point-217" + ] + }, + { + "id": "poly-44", + "color": { + "h": 261.69230769230774, + "s": 100, + "l": 25.49019607843137, + "a": 1 + }, + "points": [ + "point-102", + "point-217", + "point-107" + ] + }, + { + "id": "poly-45", + "color": { + "h": 259.44444444444446, + "s": 100, + "l": 21.176470588235293, + "a": 1 + }, + "points": [ + "point-107", + "point-217", + "point-227" + ] + }, + { + "id": "poly-46", "color": { "h": 257.2277227722772, "s": 100, @@ -1870,55 +1045,293 @@ var Grid = { "a": 1 }, "points": [ - "point-423", - "point-528", - "point-438" + "point-107", + "point-227", + "point-232" ] }, { - "id": "poly-107", + "id": "poly-47", "color": { - "h": 252.41379310344828, + "h": 259.44444444444446, "s": 100, - "l": 17.058823529411764, + "l": 21.176470588235293, "a": 1 }, "points": [ - "point-438", - "point-528", - "point-538" + "point-107", + "point-232", + "point-122" ] }, { - "id": "poly-108", + "id": "poly-48", "color": { - "h": 246.57534246575347, + "h": 257.2277227722772, "s": 100, - "l": 14.313725490196077, + "l": 19.80392156862745, "a": 1 }, "points": [ - "point-438", - "point-538", - "point-543" + "point-122", + "point-232", + "point-132" ] }, { - "id": "poly-109", + "id": "poly-49", "color": { - "h": 246.57534246575347, + "h": 255.31914893617022, "s": 100, - "l": 14.313725490196077, + "l": 18.43137254901961, "a": 1 }, "points": [ - "point-438", - "point-543", - "point-448" + "point-132", + "point-232", + "point-142" ] }, { - "id": "poly-110", + "id": "poly-50", + "color": { + "h": 265.24590163934425, + "s": 79.22077922077922, + "l": 45.294117647058826, + "a": 1 + }, + "points": [ + "point-2", + "point-1", + "point-252" + ] + }, + { + "id": "poly-51", + "color": { + "h": 265.96153846153845, + "s": 100, + "l": 59.21568627450981, + "a": 1 + }, + "points": [ + "point-2", + "point-252", + "point-257" + ] + }, + { + "id": "poly-52", + "color": { + "h": 268.2692307692307, + "s": 100, + "l": 59.21568627450981, + "a": 1 + }, + "points": [ + "point-2", + "point-257", + "point-152" + ] + }, + { + "id": "poly-53", + "color": { + "h": 265.54455445544556, + "s": 80.8, + "l": 50.98039215686274, + "a": 1 + }, + "points": [ + "point-152", + "point-257", + "point-267" + ] + }, + { + "id": "poly-54", + "color": { + "h": 265.54455445544556, + "s": 80.8, + "l": 50.98039215686274, + "a": 1 + }, + "points": [ + "point-152", + "point-267", + "point-162" + ] + }, + { + "id": "poly-55", + "color": { + "h": 264.68571428571425, + "s": 91.62303664921467, + "l": 37.450980392156865, + "a": 1 + }, + "points": [ + "point-162", + "point-267", + "point-277" + ] + }, + { + "id": "poly-56", + "color": { + "h": 265.24590163934425, + "s": 79.22077922077922, + "l": 45.294117647058826, + "a": 1 + }, + "points": [ + "point-162", + "point-277", + "point-167" + ] + }, + { + "id": "poly-57", + "color": { + "h": 265.1933701657459, + "s": 83.41013824884793, + "l": 42.549019607843135, + "a": 1 + }, + "points": [ + "point-167", + "point-277", + "point-182" + ] + }, + { + "id": "poly-58", + "color": { + "h": 263.3532934131737, + "s": 91.2568306010929, + "l": 35.88235294117647, + "a": 1 + }, + "points": [ + "point-182", + "point-277", + "point-292" + ] + }, + { + "id": "poly-59", + "color": { + "h": 264.68571428571425, + "s": 91.62303664921467, + "l": 37.450980392156865, + "a": 1 + }, + "points": [ + "point-182", + "point-292", + "point-187" + ] + }, + { + "id": "poly-60", + "color": { + "h": 262.3448275862069, + "s": 100, + "l": 28.431372549019606, + "a": 1 + }, + "points": [ + "point-187", + "point-292", + "point-302" + ] + }, + { + "id": "poly-61", + "color": { + "h": 260, + "s": 100, + "l": 24.11764705882353, + "a": 1 + }, + "points": [ + "point-187", + "point-302", + "point-307" + ] + }, + { + "id": "poly-62", + "color": { + "h": 263.64963503649636, + "s": 100, + "l": 26.862745098039216, + "a": 1 + }, + "points": [ + "point-187", + "point-307", + "point-202" + ] + }, + { + "id": "poly-63", + "color": { + "h": 255.31914893617022, + "s": 100, + "l": 18.43137254901961, + "a": 1 + }, + "points": [ + "point-202", + "point-307", + "point-317" + ] + }, + { + "id": "poly-64", + "color": { + "h": 257.2277227722772, + "s": 100, + "l": 19.80392156862745, + "a": 1 + }, + "points": [ + "point-202", + "point-317", + "point-217" + ] + }, + { + "id": "poly-65", + "color": { + "h": 249.75, + "s": 100, + "l": 15.686274509803921, + "a": 1 + }, + "points": [ + "point-217", + "point-317", + "point-327" + ] + }, + { + "id": "poly-66", + "color": { + "h": 249.75, + "s": 100, + "l": 15.686274509803921, + "a": 1 + }, + "points": [ + "point-217", + "point-327", + "point-227" + ] + }, + { + "id": "poly-67", "color": { "h": 240, "s": 100, @@ -1926,55 +1339,55 @@ var Grid = { "a": 1 }, "points": [ - "point-448", - "point-543", - "point-553" + "point-227", + "point-327", + "point-337" ] }, { - "id": "poly-111", + "id": "poly-68", "color": { - "h": 240, + "h": 246.57534246575347, "s": 100, - "l": 9.215686274509805, + "l": 14.313725490196077, "a": 1 }, "points": [ - "point-448", - "point-553", - "point-458" + "point-227", + "point-337", + "point-232" ] }, { - "id": "poly-112", + "id": "poly-69", "color": { - "h": 240, + "h": 242.99999999999997, "s": 100, - "l": 5.686274509803922, + "l": 11.76470588235294, "a": 1 }, "points": [ - "point-458", - "point-553", - "point-563" + "point-232", + "point-337", + "point-142" ] }, { - "id": "poly-113", + "id": "poly-70", "color": { "h": 240, "s": 100, - "l": 5.686274509803922, + "l": 8.03921568627451, "a": 1 }, "points": [ - "point-458", - "point-563", - "point-468" + "point-142", + "point-337", + "point-352" ] }, { - "id": "poly-114", + "id": "poly-71", "color": { "h": 240, "s": 100, @@ -1982,125 +1395,195 @@ var Grid = { "a": 1 }, "points": [ - "point-468", - "point-563", - "point-478" + "point-142", + "point-352", + "point-357" ] }, { - "id": "poly-115", + "id": "poly-72", "color": { - "h": 0, - "s": 0, - "l": 0, + "h": 264.45859872611464, + "s": 96.31901840490798, + "l": 31.960784313725487, "a": 1 }, "points": [ - "point-478", - "point-563", - "point-578" + "point-252", + "point-1", + "point-362" ] }, { - "id": "poly-116", + "id": "poly-73", "color": { - "h": 0, - "s": 0, - "l": 0, + "h": 265.24590163934425, + "s": 79.22077922077922, + "l": 45.294117647058826, "a": 1 }, "points": [ - "point-478", - "point-578", - "point-583" + "point-252", + "point-362", + "point-257" ] }, { - "id": "poly-117", + "id": "poly-74", "color": { - "h": 0, - "s": 0, - "l": 0, + "h": 264.68571428571425, + "s": 91.62303664921467, + "l": 37.450980392156865, "a": 1 }, "points": [ - "point-478", - "point-583", - "point-483" + "point-257", + "point-362", + "point-372" ] }, { - "id": "poly-118", + "id": "poly-75", "color": { - "h": 0, - "s": 0, - "l": 0, + "h": 264.9438202247191, + "s": 87.25490196078431, + "l": 40, "a": 1 }, "points": [ - "point-483", - "point-583", - "point-493" + "point-257", + "point-372", + "point-267" ] }, { - "id": "poly-119", + "id": "poly-76", "color": { - "h": 0, - "s": 0, - "l": 0, + "h": 262.3448275862069, + "s": 100, + "l": 28.431372549019606, "a": 1 }, "points": [ - "point-493", - "point-583", - "point-598" + "point-267", + "point-372", + "point-382" ] }, { - "id": "poly-120", + "id": "poly-77", "color": { - "h": 0, - "s": 0, - "l": 0, + "h": 263.64963503649636, + "s": 100, + "l": 26.862745098039216, "a": 1 }, "points": [ - "point-493", - "point-598", - "point-603" + "point-267", + "point-382", + "point-277" ] }, { - "id": "poly-121", + "id": "poly-78", "color": { - "h": 0, - "s": 0, - "l": 0, + "h": 259.44444444444446, + "s": 100, + "l": 21.176470588235293, "a": 1 }, "points": [ - "point-493", - "point-603", - "point-508" + "point-277", + "point-382", + "point-392" ] }, { - "id": "poly-122", + "id": "poly-79", "color": { - "h": 0, - "s": 0, - "l": 0, + "h": 257.2277227722772, + "s": 100, + "l": 19.80392156862745, "a": 1 }, "points": [ - "point-508", - "point-603", - "point-418" + "point-277", + "point-392", + "point-397" ] }, { - "id": "poly-123", + "id": "poly-80", + "color": { + "h": 261.69230769230774, + "s": 100, + "l": 25.49019607843137, + "a": 1 + }, + "points": [ + "point-277", + "point-397", + "point-292" + ] + }, + { + "id": "poly-81", + "color": { + "h": 257.2277227722772, + "s": 100, + "l": 19.80392156862745, + "a": 1 + }, + "points": [ + "point-292", + "point-397", + "point-407" + ] + }, + { + "id": "poly-82", + "color": { + "h": 257.2277227722772, + "s": 100, + "l": 19.80392156862745, + "a": 1 + }, + "points": [ + "point-292", + "point-407", + "point-302" + ] + }, + { + "id": "poly-83", + "color": { + "h": 240, + "s": 100, + "l": 10.588235294117647, + "a": 1 + }, + "points": [ + "point-302", + "point-407", + "point-417" + ] + }, + { + "id": "poly-84", + "color": { + "h": 242.99999999999997, + "s": 100, + "l": 11.76470588235294, + "a": 1 + }, + "points": [ + "point-302", + "point-417", + "point-307" + ] + }, + { + "id": "poly-85", "color": { "h": 240, "s": 100, @@ -2108,9 +1591,793 @@ var Grid = { "a": 1 }, "points": [ - "point-538", - "point-553", - "point-543" + "point-307", + "point-417", + "point-317" + ] + }, + { + "id": "poly-86", + "color": { + "h": 240, + "s": 100, + "l": 4.705882352941177, + "a": 1 + }, + "points": [ + "point-317", + "point-417", + "point-432" + ] + }, + { + "id": "poly-87", + "color": { + "h": 240, + "s": 100, + "l": 6.862745098039216, + "a": 1 + }, + "points": [ + "point-317", + "point-432", + "point-327" + ] + }, + { + "id": "poly-88", + "color": { + "h": 240, + "s": 100, + "l": 1.5686274509803921, + "a": 1 + }, + "points": [ + "point-327", + "point-432", + "point-442" + ] + }, + { + "id": "poly-89", + "color": { + "h": 240, + "s": 100, + "l": 2.549019607843137, + "a": 1 + }, + "points": [ + "point-327", + "point-442", + "point-337" + ] + }, + { + "id": "poly-90", + "color": { + "h": 0, + "s": 0, + "l": 0, + "a": 1 + }, + "points": [ + "point-337", + "point-442", + "point-452" + ] + }, + { + "id": "poly-91", + "color": { + "h": 0, + "s": 0, + "l": 0, + "a": 1 + }, + "points": [ + "point-337", + "point-452", + "point-457" + ] + }, + { + "id": "poly-92", + "color": { + "h": 240, + "s": 100, + "l": 1.5686274509803921, + "a": 1 + }, + "points": [ + "point-337", + "point-457", + "point-352" + ] + }, + { + "id": "poly-93", + "color": { + "h": 0, + "s": 0, + "l": 0, + "a": 1 + }, + "points": [ + "point-352", + "point-457", + "point-357" + ] + }, + { + "id": "poly-94", + "color": { + "h": 261.69230769230774, + "s": 100, + "l": 25.49019607843137, + "a": 1 + }, + "points": [ + "point-362", + "point-1", + "point-472" + ] + }, + { + "id": "poly-95", + "color": { + "h": 260, + "s": 100, + "l": 24.11764705882353, + "a": 1 + }, + "points": [ + "point-362", + "point-472", + "point-382" + ] + }, + { + "id": "poly-96", + "color": { + "h": 263.64963503649636, + "s": 100, + "l": 26.862745098039216, + "a": 1 + }, + "points": [ + "point-362", + "point-382", + "point-372" + ] + }, + { + "id": "poly-97", + "color": { + "h": 257.2277227722772, + "s": 100, + "l": 19.80392156862745, + "a": 1 + }, + "points": [ + "point-382", + "point-472", + "point-487" + ] + }, + { + "id": "poly-98", + "color": { + "h": 255.31914893617022, + "s": 100, + "l": 18.43137254901961, + "a": 1 + }, + "points": [ + "point-382", + "point-487", + "point-392" + ] + }, + { + "id": "poly-99", + "color": { + "h": 249.75, + "s": 100, + "l": 15.686274509803921, + "a": 1 + }, + "points": [ + "point-392", + "point-487", + "point-497" + ] + }, + { + "id": "poly-100", + "color": { + "h": 246.57534246575347, + "s": 100, + "l": 14.313725490196077, + "a": 1 + }, + "points": [ + "point-392", + "point-497", + "point-397" + ] + }, + { + "id": "poly-101", + "color": { + "h": 240, + "s": 100, + "l": 10.588235294117647, + "a": 1 + }, + "points": [ + "point-397", + "point-497", + "point-507" + ] + }, + { + "id": "poly-102", + "color": { + "h": 240, + "s": 100, + "l": 9.215686274509805, + "a": 1 + }, + "points": [ + "point-397", + "point-507", + "point-407" + ] + }, + { + "id": "poly-103", + "color": { + "h": 240, + "s": 100, + "l": 6.862745098039216, + "a": 1 + }, + "points": [ + "point-407", + "point-507", + "point-517" + ] + }, + { + "id": "poly-104", + "color": { + "h": 240, + "s": 100, + "l": 5.686274509803922, + "a": 1 + }, + "points": [ + "point-407", + "point-517", + "point-417" + ] + }, + { + "id": "poly-105", + "color": { + "h": 240, + "s": 100, + "l": 1.5686274509803921, + "a": 1 + }, + "points": [ + "point-417", + "point-517", + "point-527" + ] + }, + { + "id": "poly-106", + "color": { + "h": 0, + "s": 0, + "l": 0, + "a": 1 + }, + "points": [ + "point-417", + "point-527", + "point-532" + ] + }, + { + "id": "poly-107", + "color": { + "h": 0, + "s": 0, + "l": 0, + "a": 1 + }, + "points": [ + "point-417", + "point-532", + "point-432" + ] + }, + { + "id": "poly-108", + "color": { + "h": 0, + "s": 0, + "l": 0, + "a": 1 + }, + "points": [ + "point-432", + "point-532", + "point-542" + ] + }, + { + "id": "poly-109", + "color": { + "h": 0, + "s": 0, + "l": 0, + "a": 1 + }, + "points": [ + "point-432", + "point-542", + "point-442" + ] + }, + { + "id": "poly-110", + "color": { + "h": 0, + "s": 0, + "l": 0, + "a": 1 + }, + "points": [ + "point-442", + "point-542", + "point-452" + ] + }, + { + "id": "poly-111", + "color": { + "h": 0, + "s": 0, + "l": 0, + "a": 1 + }, + "points": [ + "point-452", + "point-542", + "point-557" + ] + }, + { + "id": "poly-112", + "color": { + "h": 0, + "s": 0, + "l": 0, + "a": 1 + }, + "points": [ + "point-452", + "point-557", + "point-457" + ] + }, + { + "id": "poly-113", + "color": { + "h": 0, + "s": 0, + "l": 0, + "a": 1 + }, + "points": [ + "point-457", + "point-557", + "point-357" + ] + }, + { + "id": "poly-114", + "color": { + "h": 259.44444444444446, + "s": 100, + "l": 21.176470588235293, + "a": 1 + }, + "points": [ + "point-1", + "point-571", + "point-472" + ] + }, + { + "id": "poly-115", + "color": { + "h": 257.2277227722772, + "s": 100, + "l": 19.80392156862745, + "a": 1 + }, + "points": [ + "point-472", + "point-571", + "point-577" + ] + }, + { + "id": "poly-116", + "color": { + "h": 257.2277227722772, + "s": 100, + "l": 19.80392156862745, + "a": 1 + }, + "points": [ + "point-472", + "point-577", + "point-487" + ] + }, + { + "id": "poly-117", + "color": { + "h": 252.41379310344828, + "s": 100, + "l": 17.058823529411764, + "a": 1 + }, + "points": [ + "point-487", + "point-577", + "point-587" + ] + }, + { + "id": "poly-118", + "color": { + "h": 246.57534246575347, + "s": 100, + "l": 14.313725490196077, + "a": 1 + }, + "points": [ + "point-487", + "point-587", + "point-592" + ] + }, + { + "id": "poly-119", + "color": { + "h": 246.57534246575347, + "s": 100, + "l": 14.313725490196077, + "a": 1 + }, + "points": [ + "point-487", + "point-592", + "point-497" + ] + }, + { + "id": "poly-120", + "color": { + "h": 240, + "s": 100, + "l": 9.215686274509805, + "a": 1 + }, + "points": [ + "point-497", + "point-592", + "point-602" + ] + }, + { + "id": "poly-121", + "color": { + "h": 240, + "s": 100, + "l": 9.215686274509805, + "a": 1 + }, + "points": [ + "point-497", + "point-602", + "point-507" + ] + }, + { + "id": "poly-122", + "color": { + "h": 240, + "s": 100, + "l": 5.686274509803922, + "a": 1 + }, + "points": [ + "point-507", + "point-602", + "point-612" + ] + }, + { + "id": "poly-123", + "color": { + "h": 240, + "s": 100, + "l": 5.686274509803922, + "a": 1 + }, + "points": [ + "point-507", + "point-612", + "point-517" + ] + }, + { + "id": "poly-124", + "color": { + "h": 240, + "s": 100, + "l": 1.5686274509803921, + "a": 1 + }, + "points": [ + "point-517", + "point-612", + "point-527" + ] + }, + { + "id": "poly-125", + "color": { + "h": 0, + "s": 0, + "l": 0, + "a": 1 + }, + "points": [ + "point-527", + "point-612", + "point-627" + ] + }, + { + "id": "poly-126", + "color": { + "h": 0, + "s": 0, + "l": 0, + "a": 1 + }, + "points": [ + "point-527", + "point-627", + "point-632" + ] + }, + { + "id": "poly-127", + "color": { + "h": 0, + "s": 0, + "l": 0, + "a": 1 + }, + "points": [ + "point-527", + "point-632", + "point-532" + ] + }, + { + "id": "poly-128", + "color": { + "h": 0, + "s": 0, + "l": 0, + "a": 1 + }, + "points": [ + "point-532", + "point-632", + "point-542" + ] + }, + { + "id": "poly-129", + "color": { + "h": 0, + "s": 0, + "l": 0, + "a": 1 + }, + "points": [ + "point-542", + "point-632", + "point-647" + ] + }, + { + "id": "poly-130", + "color": { + "h": 0, + "s": 0, + "l": 0, + "a": 1 + }, + "points": [ + "point-542", + "point-647", + "point-652" + ] + }, + { + "id": "poly-131", + "color": { + "h": 0, + "s": 0, + "l": 0, + "a": 1 + }, + "points": [ + "point-542", + "point-652", + "point-557" + ] + }, + { + "id": "poly-132", + "color": { + "h": 0, + "s": 0, + "l": 0, + "a": 1 + }, + "points": [ + "point-557", + "point-652", + "point-357" + ] + }, + { + "id": "poly-133", + "color": { + "h": 0, + "s": 0, + "l": 0, + "a": 1 + }, + "points": [ + "point-357", + "point-652", + "point-667" + ] + }, + { + "id": "poly-134", + "color": { + "h": 240, + "s": 100, + "l": 6.862745098039216, + "a": 1 + }, + "points": [ + "point-571", + "point-647", + "point-587" + ] + }, + { + "id": "poly-135", + "color": { + "h": 252.41379310344828, + "s": 100, + "l": 17.058823529411764, + "a": 1 + }, + "points": [ + "point-571", + "point-587", + "point-577" + ] + }, + { + "id": "poly-136", + "color": { + "h": 240, + "s": 100, + "l": 2.549019607843137, + "a": 1 + }, + "points": [ + "point-587", + "point-647", + "point-602" + ] + }, + { + "id": "poly-137", + "color": { + "h": 240, + "s": 100, + "l": 9.215686274509805, + "a": 1 + }, + "points": [ + "point-587", + "point-602", + "point-592" + ] + }, + { + "id": "poly-138", + "color": { + "h": 0, + "s": 0, + "l": 0, + "a": 1 + }, + "points": [ + "point-602", + "point-647", + "point-632" + ] + }, + { + "id": "poly-139", + "color": { + "h": 240, + "s": 100, + "l": 0.5882352941176471, + "a": 1 + }, + "points": [ + "point-602", + "point-632", + "point-612" + ] + }, + { + "id": "poly-140", + "color": { + "h": 0, + "s": 0, + "l": 0, + "a": 1 + }, + "points": [ + "point-612", + "point-632", + "point-627" + ] + }, + { + "id": "poly-141", + "color": { + "h": 0, + "s": 0, + "l": 0, + "a": 1 + }, + "points": [ + "point-647", + "point-667", + "point-652" ] } ]