瀏覽代碼

Added modtime check for 10x faster snapshot speed on large file systems

TC pushbot 5 4 年之前
父節點
當前提交
7dbe3674f2
共有 4 個文件被更改,包括 1450 次插入5332 次删除
  1. 57 35
      mod/disk/hybridBackup/versionBackup.go
  2. 1393 1669
      web/img/public/auth_bg.svg
  3. 0 2029
      web/img/public/auth_bg_2.svg
  4. 0 1599
      web/img/public/mesh-1430107.svg

+ 57 - 35
mod/disk/hybridBackup/versionBackup.go

@@ -44,13 +44,21 @@ func executeVersionBackup(backupConfig *BackupTask) (string, error) {
 	backupConfig.PanicStopped = false
 
 	todayFolderName := time.Now().Format("2006-01-02")
+	lastSnapshotTime := int64(0)
 	previousSnapshotExists := true
 	previousSnapshotName, err := getPreviousSnapshotName(backupConfig, todayFolderName)
 	if err != nil {
 		previousSnapshotExists = false
 	}
+
 	snapshotLocation := filepath.Join(backupConfig.DiskPath, "/version/", todayFolderName)
-	previousSnapshotLocation := filepath.Join(backupConfig.DiskPath, "/version/", previousSnapshotName)
+	previousSnapshotLocation := ""
+	var previousSnapshotMap *LinkFileMap
+	if previousSnapshotExists {
+		previousSnapshotLocation = filepath.Join(backupConfig.DiskPath, "/version/", previousSnapshotName)
+		previousSnapshotMap, _ = readLinkFile(previousSnapshotLocation)
+		lastSnapshotTime = lastModTime(previousSnapshotLocation)
+	}
 
 	//Create today folder if not exist
 	if !fileExists(snapshotLocation) {
@@ -58,7 +66,6 @@ func executeVersionBackup(backupConfig *BackupTask) (string, error) {
 	}
 
 	//Read the previous snapshot datalink into a LinkFileMap and use binary search for higher performance
-	previousSnapshotMap, _ := readLinkFile(previousSnapshotLocation)
 
 	/*
 		Run a three pass compare logic between
@@ -93,33 +100,41 @@ func executeVersionBackup(backupConfig *BackupTask) (string, error) {
 		fileBackupLocation := filepath.Join(backupConfig.DiskPath, "/version/", todayFolderName, relPath)
 		yesterdayBackupLocation := filepath.Join(previousSnapshotLocation, relPath)
 
-		//Check if the file exists
+		//Check if the file exists in previous snapshot folder
 		if !fileExists(yesterdayBackupLocation) {
-			//This file not in last snapshot location.
-			//Check if it is in previous snapshot map
+			//Not exists in snapshot folder. Search the link file
+			//fmt.Println("File not in last snapshot", yesterdayBackupLocation, previousSnapshotLocation, relPath)
+
 			fileFoundInSnapshotLinkFile, nameOfSnapshot := previousSnapshotMap.fileExists(relPath)
 			if fileFoundInSnapshotLinkFile {
 				//File found in the snapshot link file. Compare the one in snapshot
 				linkedSnapshotLocation := filepath.Join(backupConfig.DiskPath, "/version/", nameOfSnapshot)
 				linkedSnapshotOriginalFile := filepath.Join(linkedSnapshotLocation, relPath)
 				if fileExists(linkedSnapshotOriginalFile) {
-					//Linked file exists. Compare hash
-					fileHashMatch, err := fileHashIdentical(fileAbs, linkedSnapshotOriginalFile)
-					if err != nil {
-						return nil
-					}
-
-					if fileHashMatch {
-						//append this record to this snapshot linkdata file
-						linkedFileList[relPath] = nameOfSnapshot
-					} else {
-						//File hash mismatch. Do file copy to renew data
-						err = copyFileToBackupLocation(backupConfig, filename, fileBackupLocation)
+					//Linked file exists. Check for changes
+					if lastModTime(fileAbs) > lastModTime(linkedSnapshotLocation) {
+						//This has changed recently. Match their hash to see if it is identical
+						fileHashMatch, err := fileHashIdentical(fileAbs, linkedSnapshotOriginalFile)
 						if err != nil {
-							return err
+							return nil
 						}
-						copiedFileList = append(copiedFileList, fileBackupLocation)
+
+						if fileHashMatch {
+							//append this record to this snapshot linkdata file
+							linkedFileList[relPath] = nameOfSnapshot
+						} else {
+							//File hash mismatch. Do file copy to renew data
+							err = copyFileToBackupLocation(backupConfig, filename, fileBackupLocation)
+							if err != nil {
+								return err
+							}
+							copiedFileList = append(copiedFileList, fileBackupLocation)
+						}
+					} else {
+						//It hasn't been changed since last snapshot
+						linkedFileList[relPath] = nameOfSnapshot
 					}
+
 				} else {
 					//Invalid snapshot linkage. Assume new and do copy
 					log.Println("[HybridBackup] Link lost. Cloning source file to snapshot.")
@@ -142,29 +157,36 @@ func executeVersionBackup(backupConfig *BackupTask) (string, error) {
 
 		} else if fileExists(yesterdayBackupLocation) {
 			//The file exists in the last snapshot
-			//Check if their hash is the same. If no, update it
-			fileHashMatch, err := fileHashIdentical(fileAbs, yesterdayBackupLocation)
-			if err != nil {
-				return nil
-			}
-
-			if !fileHashMatch {
-				//Hash mismatch. Overwrite the file
-				if !fileExists(filepath.Dir(fileBackupLocation)) {
-					os.MkdirAll(filepath.Dir(fileBackupLocation), 0755)
+			if lastModTime(fileAbs) > lastSnapshotTime {
+				//Check if their hash is the same. If no, update it
+				fileHashMatch, err := fileHashIdentical(fileAbs, yesterdayBackupLocation)
+				if err != nil {
+					return nil
 				}
 
-				err = BufferedLargeFileCopy(filename, fileBackupLocation, 4096)
-				if err != nil {
-					log.Println("[HybridBackup] Copy Failed for file "+filepath.Base(fileAbs), err.Error(), " Skipping.")
+				if !fileHashMatch {
+					//Hash mismatch. Overwrite the file
+					if !fileExists(filepath.Dir(fileBackupLocation)) {
+						os.MkdirAll(filepath.Dir(fileBackupLocation), 0755)
+					}
+
+					err = BufferedLargeFileCopy(filename, fileBackupLocation, 4096)
+					if err != nil {
+						log.Println("[HybridBackup] Copy Failed for file "+filepath.Base(fileAbs), err.Error(), " Skipping.")
+					} else {
+						//No problem. Add this filepath into the list
+						copiedFileList = append(copiedFileList, fileBackupLocation)
+					}
 				} else {
-					//No problem. Add this filepath into the list
-					copiedFileList = append(copiedFileList, fileBackupLocation)
+					//Create a link file for this relative path
+					linkedFileList[relPath] = previousSnapshotName
 				}
+
 			} else {
-				//Create a link file for this relative path
+				//Not modified
 				linkedFileList[relPath] = previousSnapshotName
 			}
+
 		} else {
 			//Default case
 			lastModTime := lastModTime(fileAbs)

+ 1393 - 1669
web/img/public/auth_bg.svg

@@ -1,1670 +1,1394 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE svg  PUBLIC '-//W3C//DTD SVG 1.1//EN'  'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg width="677.33mm" height="381mm" clip-rule="evenodd" fill-rule="evenodd" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="geometricPrecision" version="1.1" viewBox="0 0 67733 38100" xml:space="preserve" xmlns="http://www.w3.org/2000/svg">
- <defs>
-  <style type="text/css">
-    .fil167 {fill:url(#kh);fill-rule:nonzero}
-    .fil76 {fill:url(#ki);fill-rule:nonzero}
-    .fil11 {fill:url(#ot);fill-rule:nonzero}
-    .fil189 {fill:url(#sh);fill-rule:nonzero}
-    .fil188 {fill:url(#ss);fill-rule:nonzero}
-    .fil18 {fill:url(#td);fill-rule:nonzero}
-    .fil14 {fill:url(#tp);fill-rule:nonzero}
-    .fil91 {fill:url(#ua);fill-rule:nonzero}
-    .fil257 {fill:url(#jv);fill-rule:nonzero}
-    .fil245 {fill:url(#kg);fill-rule:nonzero}
-    .fil139 {fill:url(#kj);fill-rule:nonzero}
-    .fil262 {fill:url(#ku);fill-rule:nonzero}
-    .fil263 {fill:url(#lg);fill-rule:nonzero}
-    .fil79 {fill:url(#lr);fill-rule:nonzero}
-    .fil168 {fill:url(#md);fill-rule:nonzero}
-    .fil249 {fill:url(#mo);fill-rule:nonzero}
-    .fil36 {fill:url(#mz);fill-rule:nonzero}
-    .fil63 {fill:url(#nl);fill-rule:nonzero}
-    .fil89 {fill:url(#nw);fill-rule:nonzero}
-    .fil242 {fill:url(#oi);fill-rule:nonzero}
-    .fil141 {fill:url(#ou);fill-rule:nonzero}
-    .fil62 {fill:url(#pg);fill-rule:nonzero}
-    .fil88 {fill:url(#pr);fill-rule:nonzero}
-    .fil240 {fill:url(#qc);fill-rule:nonzero}
-    .fil247 {fill:url(#qo);fill-rule:nonzero}
-    .fil140 {fill:url(#qz);fill-rule:nonzero}
-    .fil147 {fill:url(#rl);fill-rule:nonzero}
-    .fil205 {fill:url(#rw);fill-rule:nonzero}
-    .fil67 {fill:url(#se);fill-rule:nonzero}
-    .fil124 {fill:url(#sg);fill-rule:nonzero}
-    .fil264 {fill:url(#si);fill-rule:nonzero}
-    .fil178 {fill:url(#sj);fill-rule:nonzero}
-    .fil5 {fill:url(#sk);fill-rule:nonzero}
-    .fil142 {fill:url(#sl);fill-rule:nonzero}
-    .fil183 {fill:url(#sm);fill-rule:nonzero}
-    .fil181 {fill:url(#sn);fill-rule:nonzero}
-    .fil1 {fill:url(#so);fill-rule:nonzero}
-    .fil112 {fill:url(#sp);fill-rule:nonzero}
-    .fil111 {fill:url(#sq);fill-rule:nonzero}
-    .fil43 {fill:url(#sr);fill-rule:nonzero}
-    .fil155 {fill:url(#st);fill-rule:nonzero}
-    .fil216 {fill:url(#su);fill-rule:nonzero}
-    .fil180 {fill:url(#sv);fill-rule:nonzero}
-    .fil187 {fill:url(#sw);fill-rule:nonzero}
-    .fil9 {fill:url(#sx);fill-rule:nonzero}
-    .fil118 {fill:url(#sy);fill-rule:nonzero}
-    .fil119 {fill:url(#sz);fill-rule:nonzero}
-    .fil52 {fill:url(#ta);fill-rule:nonzero}
-    .fil221 {fill:url(#tb);fill-rule:nonzero}
-    .fil177 {fill:url(#tc);fill-rule:nonzero}
-    .fil276 {fill:url(#te);fill-rule:nonzero}
-    .fil94 {fill:url(#tf);fill-rule:nonzero}
-    .fil16 {fill:url(#th);fill-rule:nonzero}
-    .fil95 {fill:url(#ti);fill-rule:nonzero}
-    .fil203 {fill:url(#tj);fill-rule:nonzero}
-    .fil248 {fill:url(#tk);fill-rule:nonzero}
-    .fil185 {fill:url(#tl);fill-rule:nonzero}
-    .fil54 {fill:url(#tm);fill-rule:nonzero}
-    .fil265 {fill:url(#tn);fill-rule:nonzero}
-    .fil93 {fill:url(#to);fill-rule:nonzero}
-    .fil250 {fill:url(#tq);fill-rule:nonzero}
-    .fil41 {fill:url(#tr);fill-rule:nonzero}
-    .fil44 {fill:url(#ts);fill-rule:nonzero}
-    .fil83 {fill:url(#tt);fill-rule:nonzero}
-    .fil82 {fill:url(#tu);fill-rule:nonzero}
-    .fil223 {fill:url(#tv);fill-rule:nonzero}
-    .fil191 {fill:url(#tw);fill-rule:nonzero}
-    .fil27 {fill:url(#tx);fill-rule:nonzero}
-    .fil134 {fill:url(#ty);fill-rule:nonzero}
-    .fil34 {fill:url(#tz);fill-rule:nonzero}
-    .fil7 {fill:url(#ub);fill-rule:nonzero}
-    .fil193 {fill:url(#uc);fill-rule:nonzero}
-    .fil184 {fill:url(#ud);fill-rule:nonzero}
-    .fil137 {fill:url(#ue);fill-rule:nonzero}
-    .fil56 {fill:url(#uf);fill-rule:nonzero}
-    .fil116 {fill:url(#ug);fill-rule:nonzero}
-    .fil29 {fill:url(#jr);fill-rule:nonzero}
-    .fil201 {fill:url(#js);fill-rule:nonzero}
-    .fil239 {fill:url(#jt);fill-rule:nonzero}
-    .fil74 {fill:url(#ju);fill-rule:nonzero}
-    .fil130 {fill:url(#jw);fill-rule:nonzero}
-    .fil179 {fill:url(#jx);fill-rule:nonzero}
-    .fil170 {fill:url(#jy);fill-rule:nonzero}
-    .fil98 {fill:url(#jz);fill-rule:nonzero}
-    .fil251 {fill:url(#ka);fill-rule:nonzero}
-    .fil207 {fill:url(#kb);fill-rule:nonzero}
-    .fil243 {fill:url(#kc);fill-rule:nonzero}
-    .fil159 {fill:url(#kd);fill-rule:nonzero}
-    .fil153 {fill:url(#ke);fill-rule:nonzero}
-    .fil0 {fill:url(#kf);fill-rule:nonzero}
-    .fil136 {fill:url(#ky);fill-rule:nonzero}
-    .fil274 {fill:url(#lz);fill-rule:nonzero}
-    .fil266 {fill:url(#na);fill-rule:nonzero}
-    .fil253 {fill:url(#ob);fill-rule:nonzero}
-    .fil200 {fill:url(#pc);fill-rule:nonzero}
-    .fil106 {fill:url(#qd);fill-rule:nonzero}
-    .fil198 {fill:url(#re);fill-rule:nonzero}
-    .fil42 {fill:url(#sf);fill-rule:nonzero}
-    .fil4 {fill:url(#tg);fill-rule:nonzero}
-    .fil152 {fill:url(#uh);fill-rule:nonzero}
-    .fil219 {fill:url(#kk);fill-rule:nonzero}
-    .fil47 {fill:url(#kl);fill-rule:nonzero}
-    .fil64 {fill:url(#km);fill-rule:nonzero}
-    .fil48 {fill:url(#kn);fill-rule:nonzero}
-    .fil30 {fill:url(#ko);fill-rule:nonzero}
-    .fil49 {fill:url(#kp);fill-rule:nonzero}
-    .fil32 {fill:url(#kq);fill-rule:nonzero}
-    .fil55 {fill:url(#kr);fill-rule:nonzero}
-    .fil3 {fill:url(#ks);fill-rule:nonzero}
-    .fil26 {fill:url(#kt);fill-rule:nonzero}
-    .fil258 {fill:url(#kv);fill-rule:nonzero}
-    .fil127 {fill:url(#kw);fill-rule:nonzero}
-    .fil164 {fill:url(#kx);fill-rule:nonzero}
-    .fil163 {fill:url(#kz);fill-rule:nonzero}
-    .fil40 {fill:url(#la);fill-rule:nonzero}
-    .fil57 {fill:url(#lb);fill-rule:nonzero}
-    .fil202 {fill:url(#lc);fill-rule:nonzero}
-    .fil28 {fill:url(#ld);fill-rule:nonzero}
-    .fil261 {fill:url(#le);fill-rule:nonzero}
-    .fil120 {fill:url(#lf);fill-rule:nonzero}
-    .fil143 {fill:url(#lh);fill-rule:nonzero}
-    .fil161 {fill:url(#li);fill-rule:nonzero}
-    .fil226 {fill:url(#lj);fill-rule:nonzero}
-    .fil125 {fill:url(#lk);fill-rule:nonzero}
-    .fil270 {fill:url(#ll);fill-rule:nonzero}
-    .fil173 {fill:url(#lm);fill-rule:nonzero}
-    .fil53 {fill:url(#ln);fill-rule:nonzero}
-    .fil195 {fill:url(#lo);fill-rule:nonzero}
-    .fil80 {fill:url(#lp);fill-rule:nonzero}
-    .fil236 {fill:url(#lq);fill-rule:nonzero}
-    .fil268 {fill:url(#ls);fill-rule:nonzero}
-    .fil66 {fill:url(#lt);fill-rule:nonzero}
-    .fil65 {fill:url(#lu);fill-rule:nonzero}
-    .fil215 {fill:url(#lv);fill-rule:nonzero}
-    .fil256 {fill:url(#lw);fill-rule:nonzero}
-    .fil227 {fill:url(#lx);fill-rule:nonzero}
-    .fil174 {fill:url(#ly);fill-rule:nonzero}
-    .fil146 {fill:url(#ma);fill-rule:nonzero}
-    .fil121 {fill:url(#mb);fill-rule:nonzero}
-    .fil230 {fill:url(#mc);fill-rule:nonzero}
-    .fil78 {fill:url(#me);fill-rule:nonzero}
-    .fil235 {fill:url(#mf);fill-rule:nonzero}
-    .fil105 {fill:url(#mg);fill-rule:nonzero}
-    .fil21 {fill:url(#mh);fill-rule:nonzero}
-    .fil131 {fill:url(#mi);fill-rule:nonzero}
-    .fil206 {fill:url(#mj);fill-rule:nonzero}
-    .fil214 {fill:url(#mk);fill-rule:nonzero}
-    .fil20 {fill:url(#ml);fill-rule:nonzero}
-    .fil110 {fill:url(#mm);fill-rule:nonzero}
-    .fil271 {fill:url(#mn);fill-rule:nonzero}
-    .fil126 {fill:url(#mp);fill-rule:nonzero}
-    .fil35 {fill:url(#mq);fill-rule:nonzero}
-    .fil96 {fill:url(#mr);fill-rule:nonzero}
-    .fil69 {fill:url(#ms);fill-rule:nonzero}
-    .fil87 {fill:url(#mt);fill-rule:nonzero}
-    .fil145 {fill:url(#mu);fill-rule:nonzero}
-    .fil175 {fill:url(#mv);fill-rule:nonzero}
-    .fil210 {fill:url(#mw);fill-rule:nonzero}
-    .fil212 {fill:url(#mx);fill-rule:nonzero}
-    .fil197 {fill:url(#my);fill-rule:nonzero}
-    .fil208 {fill:url(#nb);fill-rule:nonzero}
-    .fil225 {fill:url(#nc);fill-rule:nonzero}
-    .fil190 {fill:url(#nd);fill-rule:nonzero}
-    .fil71 {fill:url(#ne);fill-rule:nonzero}
-    .fil58 {fill:url(#nf);fill-rule:nonzero}
-    .fil60 {fill:url(#ng);fill-rule:nonzero}
-    .fil90 {fill:url(#nh);fill-rule:nonzero}
-    .fil267 {fill:url(#ni);fill-rule:nonzero}
-    .fil217 {fill:url(#nj);fill-rule:nonzero}
-    .fil244 {fill:url(#nk);fill-rule:nonzero}
-    .fil222 {fill:url(#nm);fill-rule:nonzero}
-    .fil218 {fill:url(#nn);fill-rule:nonzero}
-    .fil17 {fill:url(#no);fill-rule:nonzero}
-    .fil149 {fill:url(#np);fill-rule:nonzero}
-    .fil45 {fill:url(#nq);fill-rule:nonzero}
-    .fil81 {fill:url(#nr);fill-rule:nonzero}
-    .fil171 {fill:url(#ns);fill-rule:nonzero}
-    .fil8 {fill:url(#nt);fill-rule:nonzero}
-    .fil103 {fill:url(#nu);fill-rule:nonzero}
-    .fil135 {fill:url(#nv);fill-rule:nonzero}
-    .fil209 {fill:url(#nx);fill-rule:nonzero}
-    .fil13 {fill:url(#ny);fill-rule:nonzero}
-    .fil182 {fill:url(#nz);fill-rule:nonzero}
-    .fil12 {fill:url(#oa);fill-rule:nonzero}
-    .fil213 {fill:url(#oc);fill-rule:nonzero}
-    .fil122 {fill:url(#od);fill-rule:nonzero}
-    .fil192 {fill:url(#oe);fill-rule:nonzero}
-    .fil97 {fill:url(#of);fill-rule:nonzero}
-    .fil25 {fill:url(#og);fill-rule:nonzero}
-    .fil24 {fill:url(#oh);fill-rule:nonzero}
-    .fil92 {fill:url(#oj);fill-rule:nonzero}
-    .fil51 {fill:url(#ok);fill-rule:nonzero}
-    .fil33 {fill:url(#ol);fill-rule:nonzero}
-    .fil166 {fill:url(#om);fill-rule:nonzero}
-    .fil238 {fill:url(#on);fill-rule:nonzero}
-    .fil154 {fill:url(#oo);fill-rule:nonzero}
-    .fil22 {fill:url(#op);fill-rule:nonzero}
-    .fil108 {fill:url(#oq);fill-rule:nonzero}
-    .fil109 {fill:url(#or);fill-rule:nonzero}
-    .fil6 {fill:url(#os);fill-rule:nonzero}
-    .fil241 {fill:url(#ov);fill-rule:nonzero}
-    .fil101 {fill:url(#ow);fill-rule:nonzero}
-    .fil100 {fill:url(#ox);fill-rule:nonzero}
-    .fil138 {fill:url(#oy);fill-rule:nonzero}
-    .fil169 {fill:url(#oz);fill-rule:nonzero}
-    .fil23 {fill:url(#pa);fill-rule:nonzero}
-    .fil123 {fill:url(#pb);fill-rule:nonzero}
-    .fil254 {fill:url(#pd);fill-rule:nonzero}
-    .fil85 {fill:url(#pe);fill-rule:nonzero}
-    .fil157 {fill:url(#pf);fill-rule:nonzero}
-    .fil186 {fill:url(#ph);fill-rule:nonzero}
-    .fil46 {fill:url(#pi);fill-rule:nonzero}
-    .fil273 {fill:url(#pj);fill-rule:nonzero}
-    .fil150 {fill:url(#pk);fill-rule:nonzero}
-    .fil220 {fill:url(#pl);fill-rule:nonzero}
-    .fil160 {fill:url(#pm);fill-rule:nonzero}
-    .fil117 {fill:url(#pn);fill-rule:nonzero}
-    .fil37 {fill:url(#po);fill-rule:nonzero}
-    .fil39 {fill:url(#pp);fill-rule:nonzero}
-    .fil199 {fill:url(#pq);fill-rule:nonzero}
-    .fil165 {fill:url(#ps);fill-rule:nonzero}
-    .fil156 {fill:url(#pt);fill-rule:nonzero}
-    .fil158 {fill:url(#pu);fill-rule:nonzero}
-    .fil61 {fill:url(#pv);fill-rule:nonzero}
-    .fil38 {fill:url(#pw);fill-rule:nonzero}
-    .fil31 {fill:url(#px);fill-rule:nonzero}
-    .fil204 {fill:url(#py);fill-rule:nonzero}
-    .fil246 {fill:url(#pz);fill-rule:nonzero}
-    .fil133 {fill:url(#qa);fill-rule:nonzero}
-    .fil68 {fill:url(#qb);fill-rule:nonzero}
-    .fil10 {fill:url(#qe);fill-rule:nonzero}
-    .fil113 {fill:url(#qf);fill-rule:nonzero}
-    .fil50 {fill:url(#qg);fill-rule:nonzero}
-    .fil115 {fill:url(#qh);fill-rule:nonzero}
-    .fil114 {fill:url(#qi);fill-rule:nonzero}
-    .fil86 {fill:url(#qj);fill-rule:nonzero}
-    .fil2 {fill:url(#qk);fill-rule:nonzero}
-    .fil77 {fill:url(#ql);fill-rule:nonzero}
-    .fil162 {fill:url(#qm);fill-rule:nonzero}
-    .fil73 {fill:url(#qn);fill-rule:nonzero}
-    .fil72 {fill:url(#qp);fill-rule:nonzero}
-    .fil231 {fill:url(#qq);fill-rule:nonzero}
-    .fil151 {fill:url(#qr);fill-rule:nonzero}
-    .fil107 {fill:url(#qs);fill-rule:nonzero}
-    .fil232 {fill:url(#qt);fill-rule:nonzero}
-    .fil229 {fill:url(#qu);fill-rule:nonzero}
-    .fil234 {fill:url(#qv);fill-rule:nonzero}
-    .fil128 {fill:url(#qw);fill-rule:nonzero}
-    .fil148 {fill:url(#qx);fill-rule:nonzero}
-    .fil19 {fill:url(#qy);fill-rule:nonzero}
-    .fil144 {fill:url(#ra);fill-rule:nonzero}
-    .fil104 {fill:url(#rb);fill-rule:nonzero}
-    .fil59 {fill:url(#rc);fill-rule:nonzero}
-    .fil269 {fill:url(#rd);fill-rule:nonzero}
-    .fil194 {fill:url(#rf);fill-rule:nonzero}
-    .fil70 {fill:url(#rg);fill-rule:nonzero}
-    .fil211 {fill:url(#rh);fill-rule:nonzero}
-    .fil275 {fill:url(#ri);fill-rule:nonzero}
-    .fil102 {fill:url(#rj);fill-rule:nonzero}
-    .fil172 {fill:url(#rk);fill-rule:nonzero}
-    .fil233 {fill:url(#rm);fill-rule:nonzero}
-    .fil99 {fill:url(#rn);fill-rule:nonzero}
-    .fil84 {fill:url(#ro);fill-rule:nonzero}
-    .fil15 {fill:url(#rp);fill-rule:nonzero}
-    .fil252 {fill:url(#rq);fill-rule:nonzero}
-    .fil129 {fill:url(#rr);fill-rule:nonzero}
-    .fil132 {fill:url(#rs);fill-rule:nonzero}
-    .fil255 {fill:url(#rt);fill-rule:nonzero}
-    .fil237 {fill:url(#ru);fill-rule:nonzero}
-    .fil260 {fill:url(#rv);fill-rule:nonzero}
-    .fil75 {fill:url(#rx);fill-rule:nonzero}
-    .fil224 {fill:url(#ry);fill-rule:nonzero}
-    .fil228 {fill:url(#rz);fill-rule:nonzero}
-    .fil176 {fill:url(#sa);fill-rule:nonzero}
-    .fil272 {fill:url(#sb);fill-rule:nonzero}
-    .fil196 {fill:url(#sc);fill-rule:nonzero}
-    .fil259 {fill:url(#sd);fill-rule:nonzero}
-  </style>
-  <linearGradient id="kh" x1="50850" x2="55451" y1="24314" y2="31866" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#8E4B75" offset="0"/>
-   <stop stop-color="#623169" offset="1"/>
-  </linearGradient>
-  <linearGradient id="ki" x1="2004.3" x2="6554.2" y1="24438" y2="30305" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#CA796D" offset="0"/>
-   <stop stop-color="#C4796D" offset="1"/>
-  </linearGradient>
-  <linearGradient id="ot" x1="14137" x2="20483" y1="15179" y2="19290" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#D8AA90" offset="0"/>
-   <stop stop-color="#CDA093" offset="1"/>
-  </linearGradient>
-  <linearGradient id="sh" x1="2670" x2="8522.6" y1="8782.9" y2="17224" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#A57C93" offset="0"/>
-   <stop stop-color="#CA9389" offset="1"/>
-  </linearGradient>
-  <linearGradient id="ss" x1="2670" x2="8522.6" y1="17560" y2="22137" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#DB977E" offset="0"/>
-   <stop stop-color="#D49985" offset="1"/>
-  </linearGradient>
-  <linearGradient id="td" x1="56112" x2="61284" y1="19496" y2="25588" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#9C6487" offset="0"/>
-   <stop stop-color="#8A547C" offset="1"/>
-  </linearGradient>
-  <linearGradient id="tp" x1="56220" x2="61177" y1="14614" y2="21810" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#9E6B8C" offset="0"/>
-   <stop stop-color="#8E668C" offset="1"/>
-  </linearGradient>
-  <linearGradient id="ua" x1="54488" x2="59836" y1="8274" y2="15458" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#7C6EA3" offset="0"/>
-   <stop stop-color="#90759C" offset="1"/>
-  </linearGradient>
-  <linearGradient id="jv" x1="20244" x2="25911" y1="19968" y2="27072" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#DB9A80" offset="0"/>
-   <stop stop-color="#D48A79" offset="1"/>
-  </linearGradient>
-  <linearGradient id="kg" x1="6753.8" x2="13379" y1="22043" y2="25795" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#DFA182" offset="0"/>
-   <stop stop-color="#E2A582" offset="1"/>
-  </linearGradient>
-  <linearGradient id="kj" x1="61594" x2="66658" y1="9291.7" y2="16835" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#75679C" offset="0"/>
-   <stop stop-color="#756297" offset="1"/>
-  </linearGradient>
-  <linearGradient id="ku" x1="65279" x2="67822" y1="36182" y2="37225" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#341C59" offset="0"/>
-   <stop stop-color="#341C59" offset="1"/>
-  </linearGradient>
-  <linearGradient id="lg" x1="65343" x2="67758" y1="33907" y2="36252" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#3A1F5D" offset="0"/>
-   <stop stop-color="#462867" offset="1"/>
-  </linearGradient>
-  <linearGradient id="lr" x1="36488" x2="42394" y1="19369" y2="26314" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#BA5E77" offset="0"/>
-   <stop stop-color="#C46D7E" offset="1"/>
-  </linearGradient>
-  <linearGradient id="md" x1="50594" x2="56226" y1="23860" y2="29766" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#955279" offset="0"/>
-   <stop stop-color="#794272" offset="1"/>
-  </linearGradient>
-  <linearGradient id="mo" x1="61425" x2="64632" y1="22160" y2="25758" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#85527E" offset="0"/>
-   <stop stop-color="#7C497C" offset="1"/>
-  </linearGradient>
-  <linearGradient id="mz" x1="50077" x2="55944" y1="17438" y2="23735" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#AC6783" offset="0"/>
-   <stop stop-color="#AC728C" offset="1"/>
-  </linearGradient>
-  <linearGradient id="nl" x1="59476" x2="65224" y1="31089" y2="36146" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#4B2867" offset="0"/>
-   <stop stop-color="#3F215D" offset="1"/>
-  </linearGradient>
-  <linearGradient id="nw" x1="50317" x2="55705" y1="15654" y2="19174" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#AC7991" offset="0"/>
-   <stop stop-color="#A37593" offset="1"/>
-  </linearGradient>
-  <linearGradient id="oi" x1="4636.5" x2="8192.5" y1="24841" y2="31378" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#B36466" offset="0"/>
-   <stop stop-color="#BD726B" offset="1"/>
-  </linearGradient>
-  <linearGradient id="ou" x1="64548" x2="67874" y1="17305" y2="24924" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#7E5080" offset="0"/>
-   <stop stop-color="#7E5685" offset="1"/>
-  </linearGradient>
-  <linearGradient id="pg" x1="59536" x2="65164" y1="33210" y2="37937" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#2F1854" offset="0"/>
-   <stop stop-color="#3A1F5B" offset="1"/>
-  </linearGradient>
-  <linearGradient id="pr" x1="45007" x2="47204" y1="-227.11" y2="990.21" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#524B9C" offset="0"/>
-   <stop stop-color="#524B9C" offset="1"/>
-  </linearGradient>
-  <linearGradient id="qc" x1="4199.4" x2="8709.4" y1="17494" y2="24478" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#DF9C7C" offset="0"/>
-   <stop stop-color="#DB9E80" offset="1"/>
-  </linearGradient>
-  <linearGradient id="qo" x1="55980" x2="62733" y1="25951" y2="30828" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#64346E" offset="0"/>
-   <stop stop-color="#643672" offset="1"/>
-  </linearGradient>
-  <linearGradient id="qz" x1="61392" x2="66940" y1="17254" y2="23680" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#875782" offset="0"/>
-   <stop stop-color="#825985" offset="1"/>
-  </linearGradient>
-  <linearGradient id="rl" x1="23428" x2="30669" y1="29389" y2="34454" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#954D67" offset="0"/>
-   <stop stop-color="#773A60" offset="1"/>
-  </linearGradient>
-  <linearGradient id="rw" x1="49608" x2="51505" y1="32638" y2="37830" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#46235B" offset="0"/>
-   <stop stop-color="#3B1F57" offset="1"/>
-  </linearGradient>
-  <linearGradient id="se" x1="49510" x2="51603" y1="24144" y2="32075" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#5D2D66" offset="0"/>
-   <stop stop-color="#753D6E" offset="1"/>
-  </linearGradient>
-  <linearGradient id="sg" x1="18462" x2="19368" y1="29.17" y2="1971.2" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#6466AC" offset="0"/>
-   <stop stop-color="#6969AC" offset="1"/>
-  </linearGradient>
-  <linearGradient id="si" x1="61048" x2="65329" y1="36218" y2="38121" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#2A1650" offset="0"/>
-   <stop stop-color="#2D1854" offset="1"/>
-  </linearGradient>
-  <linearGradient id="sj" x1="57155" x2="62915" y1="8381.8" y2="9962.2" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#6D66A3" offset="0"/>
-   <stop stop-color="#6B629E" offset="1"/>
-  </linearGradient>
-  <linearGradient id="sk" x1="56893" x2="63177" y1="3123.1" y2="8755.3" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#6962A3" offset="0"/>
-   <stop stop-color="#5E599E" offset="1"/>
-  </linearGradient>
-  <linearGradient id="sl" x1="66401" x2="68297" y1="18670" y2="21396" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#7C5283" offset="0"/>
-   <stop stop-color="#85608E" offset="1"/>
-  </linearGradient>
-  <linearGradient id="sm" x1="66863" x2="67835" y1="16786" y2="17438" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#836490" offset="0"/>
-   <stop stop-color="#836493" offset="1"/>
-  </linearGradient>
-  <linearGradient id="sn" x1="62854" x2="68212" y1="9312.6" y2="16814" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#6E609A" offset="0"/>
-   <stop stop-color="#7E6493" offset="1"/>
-  </linearGradient>
-  <linearGradient id="so" x1="63275" x2="67791" y1="2393" y2="8849.7" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#595297" offset="0"/>
-   <stop stop-color="#49428E" offset="1"/>
-  </linearGradient>
-  <linearGradient id="sp" x1="1.98" x2="3040" y1="23294" y2="25103" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#D67572" offset="0"/>
-   <stop stop-color="#D68272" offset="1"/>
-  </linearGradient>
-  <linearGradient id="sq" x1="-480.51" x2="3522.5" y1="19241" y2="22502" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#D87975" offset="0"/>
-   <stop stop-color="#DB8A7C" offset="1"/>
-  </linearGradient>
-  <linearGradient id="sr" x1="10684" x2="13200" y1="35490" y2="38251" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#6E2F5B" offset="0"/>
-   <stop stop-color="#6E2D5B" offset="1"/>
-  </linearGradient>
-  <linearGradient id="st" x1="22776" x2="24253" y1="-56.83" y2="620.39" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#6264AC" offset="0"/>
-   <stop stop-color="#6266AC" offset="1"/>
-  </linearGradient>
-  <linearGradient id="su" x1="1349.4" x2="8844.6" y1="35307" y2="38433" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#572A5E" offset="0"/>
-   <stop stop-color="#642D5B" offset="1"/>
-  </linearGradient>
-  <linearGradient id="sv" x1="1645.1" x2="6075.2" y1="31462" y2="35653" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#75365D" offset="0"/>
-   <stop stop-color="#90445D" offset="1"/>
-  </linearGradient>
-  <linearGradient id="sw" x1="2620.5" x2="4062.1" y1="17803" y2="21893" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#DD937B" offset="0"/>
-   <stop stop-color="#D8937E" offset="1"/>
-  </linearGradient>
-  <linearGradient id="sx" x1="8709.4" x2="14137" y1="14021" y2="19290" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#D3A18C" offset="0"/>
-   <stop stop-color="#CFA190" offset="1"/>
-  </linearGradient>
-  <linearGradient id="sy" x1="8709.4" x2="12461" y1="92.19" y2="3325" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#6B5EA3" offset="0"/>
-   <stop stop-color="#7062A3" offset="1"/>
-  </linearGradient>
-  <linearGradient id="sz" x1="8934.5" x2="12236" y1="3099.9" y2="8578.9" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#8972A1" offset="0"/>
-   <stop stop-color="#7566A3" offset="1"/>
-  </linearGradient>
-  <linearGradient id="ta" x1="8872.2" x2="13974" y1="17630" y2="21907" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#DAA88C" offset="0"/>
-   <stop stop-color="#E2AF8C" offset="1"/>
-  </linearGradient>
-  <linearGradient id="tb" x1="9052.5" x2="11905" y1="36541" y2="38197" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#6B2D59" offset="0"/>
-   <stop stop-color="#662A59" offset="1"/>
-  </linearGradient>
-  <linearGradient id="tc" x1="57064" x2="61490" y1="8446.4" y2="10975" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#7069A3" offset="0"/>
-   <stop stop-color="#7267A0" offset="1"/>
-  </linearGradient>
-  <linearGradient id="te" x1="51622" x2="52834" y1="-305.93" y2="989.19" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#4D4999" offset="0"/>
-   <stop stop-color="#494293" offset="1"/>
-  </linearGradient>
-  <linearGradient id="tf" x1="-276.91" x2="1922" y1="36005" y2="37736" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#502A64" offset="0"/>
-   <stop stop-color="#592B5E" offset="1"/>
-  </linearGradient>
-  <linearGradient id="th" x1="-210.92" x2="1856" y1="33812" y2="36802" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#592D64" offset="0"/>
-   <stop stop-color="#743460" offset="1"/>
-  </linearGradient>
-  <linearGradient id="ti" x1="42394" x2="46545" y1="18012" y2="22482" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#C16E80" offset="0"/>
-   <stop stop-color="#BF7787" offset="1"/>
-  </linearGradient>
-  <linearGradient id="tj" x1="54380" x2="56909" y1="3321.8" y2="7957.9" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#6662A3" offset="0"/>
-   <stop stop-color="#57549E" offset="1"/>
-  </linearGradient>
-  <linearGradient id="tk" x1="56387" x2="61368" y1="22197" y2="25722" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#834B79" offset="0"/>
-   <stop stop-color="#824D7C" offset="1"/>
-  </linearGradient>
-  <linearGradient id="tl" x1="447.79" x2="6314.7" y1="8513.5" y2="17414" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#A07995" offset="0"/>
-   <stop stop-color="#AA7E90" offset="1"/>
-  </linearGradient>
-  <linearGradient id="tm" x1="506.45" x2="6256.1" y1="3673" y2="10400" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#79649E" offset="0"/>
-   <stop stop-color="#8E6E9A" offset="1"/>
-  </linearGradient>
-  <linearGradient id="tn" x1="65208" x2="67664" y1="36476" y2="37863" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#311A56" offset="0"/>
-   <stop stop-color="#2D1854" offset="1"/>
-  </linearGradient>
-  <linearGradient id="to" x1="-244.85" x2="2249.2" y1="26527" y2="29386" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#A55067" offset="0"/>
-   <stop stop-color="#C6696E" offset="1"/>
-  </linearGradient>
-  <linearGradient id="tq" x1="61472" x2="64665" y1="23680" y2="30984" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#603670" offset="0"/>
-   <stop stop-color="#754479" offset="1"/>
-  </linearGradient>
-  <linearGradient id="tr" x1="8390.1" x2="13379" y1="31742" y2="36651" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#90465E" offset="0"/>
-   <stop stop-color="#79345B" offset="1"/>
-  </linearGradient>
-  <linearGradient id="ts" x1="12896" x2="18512" y1="35565" y2="38175" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#662A5B" offset="0"/>
-   <stop stop-color="#6B2D5D" offset="1"/>
-  </linearGradient>
-  <linearGradient id="tt" x1="-32.24" x2="4870.3" y1="30428" y2="31709" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#954864" offset="0"/>
-   <stop stop-color="#A05060" offset="1"/>
-  </linearGradient>
-  <linearGradient id="tu" x1="-220.66" x2="5058.7" y1="31792" y2="35323" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#893F62" offset="0"/>
-   <stop stop-color="#823D5D" offset="1"/>
-  </linearGradient>
-  <linearGradient id="tv" x1="27969" x2="30958" y1="27025" y2="30512" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#A7576B" offset="0"/>
-   <stop stop-color="#A3546B" offset="1"/>
-  </linearGradient>
-  <linearGradient id="tw" x1="4838" x2="6075.2" y1="31462" y2="32700" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#974B5D" offset="0"/>
-   <stop stop-color="#91465D" offset="1"/>
-  </linearGradient>
-  <linearGradient id="tx" x1="9233.8" x2="9949" y1="-216.04" y2="260.74" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#6659A1" offset="0"/>
-   <stop stop-color="#6256A1" offset="1"/>
-  </linearGradient>
-  <linearGradient id="ty" x1="46026" x2="48940" y1="11706" y2="14859" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#A17797" offset="0"/>
-   <stop stop-color="#9A779A" offset="1"/>
-  </linearGradient>
-  <linearGradient id="tz" x1="12629" x2="16484" y1="2850.9" y2="5714.9" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#756BA8" offset="0"/>
-   <stop stop-color="#7C72AA" offset="1"/>
-  </linearGradient>
-  <linearGradient id="ub" x1="57082" x2="63787" y1="2486.9" y2="8872.7" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#5D549C" offset="0"/>
-   <stop stop-color="#504B97" offset="1"/>
-  </linearGradient>
-  <linearGradient id="uc" x1="5955.5" x2="8390.1" y1="31742" y2="32700" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#93465D" offset="0"/>
-   <stop stop-color="#974B5E" offset="1"/>
-  </linearGradient>
-  <linearGradient id="ud" x1="569.9" x2="2361.1" y1="10960" y2="18160" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#AF7E91" offset="0"/>
-   <stop stop-color="#CD8985" offset="1"/>
-  </linearGradient>
-  <linearGradient id="ue" x1="59978" x2="66798" y1="11270" y2="17132" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#856E99" offset="0"/>
-   <stop stop-color="#7E6797" offset="1"/>
-  </linearGradient>
-  <linearGradient id="uf" x1="-10.01" x2="457.79" y1="10348" y2="11383" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#C17E8A" offset="0"/>
-   <stop stop-color="#9E7999" offset="1"/>
-  </linearGradient>
-  <linearGradient id="ug" x1="6375" x2="12281" y1="3381.3" y2="8896.2" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#896E9A" offset="0"/>
-   <stop stop-color="#856D9E" offset="1"/>
-  </linearGradient>
-  <linearGradient id="jr" x1="6375" x2="12281" y1="8568.5" y2="13966" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#AF8797" offset="0"/>
-   <stop stop-color="#97779C" offset="1"/>
-  </linearGradient>
-  <linearGradient id="js" x1="51814" x2="56762" y1="3125.4" y2="8274" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#6762A7" offset="0"/>
-   <stop stop-color="#625EA3" offset="1"/>
-  </linearGradient>
-  <linearGradient id="jt" x1="4276.1" x2="6677.1" y1="22349" y2="24412" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#DF9779" offset="0"/>
-   <stop stop-color="#DD9777" offset="1"/>
-  </linearGradient>
-  <linearGradient id="ju" x1="35333" x2="41050" y1="37271" y2="38106" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#361C54" offset="0"/>
-   <stop stop-color="#311850" offset="1"/>
-  </linearGradient>
-  <linearGradient id="jw" x1="36534" x2="39794" y1="123.55" y2="4471" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#665EA5" offset="0"/>
-   <stop stop-color="#6059A1" offset="1"/>
-  </linearGradient>
-  <linearGradient id="jx" x1="61312" x2="63308" y1="8872.7" y2="11148" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#70669E" offset="0"/>
-   <stop stop-color="#6B629E" offset="1"/>
-  </linearGradient>
-  <linearGradient id="jy" x1="54567" x2="59357" y1="29826" y2="36611" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#3B1D59" offset="0"/>
-   <stop stop-color="#502A64" offset="1"/>
-  </linearGradient>
-  <linearGradient id="jz" x1="46545" x2="50018" y1="14859" y2="19329" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#AC7B93" offset="0"/>
-   <stop stop-color="#B5798E" offset="1"/>
-  </linearGradient>
-  <linearGradient id="ka" x1="13516" x2="20106" y1="19445" y2="26916" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#E6B18C" offset="0"/>
-   <stop stop-color="#DBA387" offset="1"/>
-  </linearGradient>
-  <linearGradient id="kb" x1="51393" x2="54557" y1="36316" y2="38383" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#2D1650" offset="0"/>
-   <stop stop-color="#26154B" offset="1"/>
-  </linearGradient>
-  <linearGradient id="kc" x1="6910.6" x2="11825" y1="24696" y2="31524" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#B66B69" offset="0"/>
-   <stop stop-color="#D89379" offset="1"/>
-  </linearGradient>
-  <linearGradient id="kd" x1="48022" x2="51814" y1="6278.4" y2="9591" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#776BA5" offset="0"/>
-   <stop stop-color="#756BA8" offset="1"/>
-  </linearGradient>
-  <linearGradient id="ke" x1="43552" x2="50536" y1="23799" y2="32420" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#693367" offset="0"/>
-   <stop stop-color="#904972" offset="1"/>
-  </linearGradient>
-  <linearGradient id="kf" x1="56944" x2="61130" y1="8515.1" y2="14060" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#836E9E" offset="0"/>
-   <stop stop-color="#7569A3" offset="1"/>
-  </linearGradient>
-  <linearGradient id="ky" x1="48940" x2="54488" y1="11706" y2="17374" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#A87995" offset="0"/>
-   <stop stop-color="#9A799E" offset="1"/>
-  </linearGradient>
-  <linearGradient id="lz" x1="46435" x2="48377" y1="-70.51" y2="833.61" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#4D499A" offset="0"/>
-   <stop stop-color="#4D4697" offset="1"/>
-  </linearGradient>
-  <linearGradient id="na" x1="66107" x2="67372" y1="37539" y2="38372" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#2A1652" offset="0"/>
-   <stop stop-color="#2A1652" offset="1"/>
-  </linearGradient>
-  <linearGradient id="ob" x1="14535" x2="23678" y1="19601" y2="26761" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#E1AC8A" offset="0"/>
-   <stop stop-color="#DA9A82" offset="1"/>
-  </linearGradient>
-  <linearGradient id="pc" x1="50667" x2="54158" y1="-31.96" y2="3109.9" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#504B9C" offset="0"/>
-   <stop stop-color="#504D9A" offset="1"/>
-  </linearGradient>
-  <linearGradient id="qd" x1="33414" x2="38084" y1="19369" y2="26314" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#BD6277" offset="0"/>
-   <stop stop-color="#CD777E" offset="1"/>
-  </linearGradient>
-  <linearGradient id="re" x1="49299" x2="54208" y1="730.77" y2="5121" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#5E59A3" offset="0"/>
-   <stop stop-color="#56529E" offset="1"/>
-  </linearGradient>
-  <linearGradient id="sf" x1="8390.1" x2="15454" y1="27431" y2="35653" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#A55664" offset="0"/>
-   <stop stop-color="#A75E6B" offset="1"/>
-  </linearGradient>
-  <linearGradient id="tg" x1="67245" x2="68025" y1="404.49" y2="1216.8" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#413685" offset="0"/>
-   <stop stop-color="#3D3180" offset="1"/>
-  </linearGradient>
-  <linearGradient id="uh" x1="42639" x2="50292" y1="22656" y2="28096" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#B5607B" offset="0"/>
-   <stop stop-color="#9C5275" offset="1"/>
-  </linearGradient>
-  <linearGradient id="kk" x1="6279.2" x2="8784.8" y1="32127" y2="36864" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#8A415B" offset="0"/>
-   <stop stop-color="#833D5B" offset="1"/>
-  </linearGradient>
-  <linearGradient id="kl" x1="63101" x2="67606" y1="32054" y2="35109" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#4D2A69" offset="0"/>
-   <stop stop-color="#462666" offset="1"/>
-  </linearGradient>
-  <linearGradient id="km" x1="62835" x2="67871" y1="23760" y2="30904" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#603670" offset="0"/>
-   <stop stop-color="#75467B" offset="1"/>
-  </linearGradient>
-  <linearGradient id="kn" x1="62488" x2="68219" y1="26127" y2="30360" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#593170" offset="0"/>
-   <stop stop-color="#643B77" offset="1"/>
-  </linearGradient>
-  <linearGradient id="ko" x1="715.46" x2="8122.4" y1="-103.01" y2="3659.9" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#6B5BA1" offset="0"/>
-   <stop stop-color="#67579E" offset="1"/>
-  </linearGradient>
-  <linearGradient id="kp" x1="10944" x2="14257" y1="8952.5" y2="14021" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#B58C97" offset="0"/>
-   <stop stop-color="#A5859C" offset="1"/>
-  </linearGradient>
-  <linearGradient id="kq" x1="-.4" x2="727.56" y1="18638" y2="19529" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#D87E7E" offset="0"/>
-   <stop stop-color="#D67C7B" offset="1"/>
-  </linearGradient>
-  <linearGradient id="kr" x1="-683.87" x2="1411" y1="12534" y2="16586" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#CD8285" offset="0"/>
-   <stop stop-color="#BC808A" offset="1"/>
-  </linearGradient>
-  <linearGradient id="ks" x1="64696" x2="66849" y1="-141.98" y2="2581.4" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#443B89" offset="0"/>
-   <stop stop-color="#3F3683" offset="1"/>
-  </linearGradient>
-  <linearGradient id="kt" x1="6696.3" x2="10150" y1="-106.86" y2="1987.5" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#6959A0" offset="0"/>
-   <stop stop-color="#6459A0" offset="1"/>
-  </linearGradient>
-  <linearGradient id="kv" x1="118.46" x2="2764" y1="-363.39" y2="628.69" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#6259A5" offset="0"/>
-   <stop stop-color="#6056A1" offset="1"/>
-  </linearGradient>
-  <linearGradient id="kw" x1="40274" x2="45552" y1="-359.69" y2="4954.2" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#56509E" offset="0"/>
-   <stop stop-color="#6057A1" offset="1"/>
-  </linearGradient>
-  <linearGradient id="kx" x1="-139.97" x2="827.23" y1="3693.2" y2="5217.3" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#8972A1" offset="0"/>
-   <stop stop-color="#7769A7" offset="1"/>
-  </linearGradient>
-  <linearGradient id="kz" x1="-9.49" x2="696.75" y1="3445.6" y2="3959.2" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#6E67AA" offset="0"/>
-   <stop stop-color="#7267A8" offset="1"/>
-  </linearGradient>
-  <linearGradient id="la" x1="-155.41" x2="842.67" y1="2112.7" y2="3176.5" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#6B64A8" offset="0"/>
-   <stop stop-color="#695DA5" offset="1"/>
-  </linearGradient>
-  <linearGradient id="lb" x1="-805.5" x2="1492.8" y1="3899.4" y2="10174" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#8C729E" offset="0"/>
-   <stop stop-color="#856B9E" offset="1"/>
-  </linearGradient>
-  <linearGradient id="lc" x1="54135" x2="57038" y1="-28.76" y2="3106.7" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#4F4999" offset="0"/>
-   <stop stop-color="#54509C" offset="1"/>
-  </linearGradient>
-  <linearGradient id="ld" x1="6592.5" x2="10667" y1="9052.3" y2="16955" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#C49590" offset="0"/>
-   <stop stop-color="#AA8395" offset="1"/>
-  </linearGradient>
-  <linearGradient id="le" x1="32197" x2="36148" y1="1666.7" y2="4145.2" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#6B69AA" offset="0"/>
-   <stop stop-color="#6764A8" offset="1"/>
-  </linearGradient>
-  <linearGradient id="lf" x1="32022" x2="36324" y1="3851.8" y2="8545.4" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#706DAC" offset="0"/>
-   <stop stop-color="#756BA7" offset="1"/>
-  </linearGradient>
-  <linearGradient id="lh" x1="19111" x2="23092" y1="32742" y2="38164" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#833F60" offset="0"/>
-   <stop stop-color="#753660" offset="1"/>
-  </linearGradient>
-  <linearGradient id="li" x1="51443" x2="56654" y1="6344.7" y2="9524.8" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#6E67A8" offset="0"/>
-   <stop stop-color="#756DA8" offset="1"/>
-  </linearGradient>
-  <linearGradient id="lj" x1="30961" x2="33873" y1="30665" y2="34535" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#642D5D" offset="0"/>
-   <stop stop-color="#773862" offset="1"/>
-  </linearGradient>
-  <linearGradient id="lk" x1="36547" x2="39780" y1="4582.2" y2="9970.2" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#6E62A3" offset="0"/>
-   <stop stop-color="#77649E" offset="1"/>
-  </linearGradient>
-  <linearGradient id="ll" x1="28457" x2="30472" y1="-133.85" y2="537.75" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#5E62AC" offset="0"/>
-   <stop stop-color="#6064AC" offset="1"/>
-  </linearGradient>
-  <linearGradient id="lm" x1="30421" x2="34612" y1="13981" y2="18212" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#CA8787" offset="0"/>
-   <stop stop-color="#BF828C" offset="1"/>
-  </linearGradient>
-  <linearGradient id="ln" x1="36727" x2="42794" y1="12066" y2="18012" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#A17291" offset="0"/>
-   <stop stop-color="#B6778C" offset="1"/>
-  </linearGradient>
-  <linearGradient id="lo" x1="28619" x2="34117" y1="35024" y2="38118" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#462359" offset="0"/>
-   <stop stop-color="#482157" offset="1"/>
-  </linearGradient>
-  <linearGradient id="lp" x1="38084" x2="42794" y1="18012" y2="22482" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#C87582" offset="0"/>
-   <stop stop-color="#C17082" offset="1"/>
-  </linearGradient>
-  <linearGradient id="lq" x1="30100" x2="36290" y1="23236" y2="26838" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#BC6772" offset="0"/>
-   <stop stop-color="#C16975" offset="1"/>
-  </linearGradient>
-  <linearGradient id="ls" x1="24142" x2="25976" y1="-113.12" y2="1754.3" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#666BAF" offset="0"/>
-   <stop stop-color="#6469AE" offset="1"/>
-  </linearGradient>
-  <linearGradient id="lt" x1="30210" x2="33586" y1="8673.1" y2="13702" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#907BA5" offset="0"/>
-   <stop stop-color="#9A7B9E" offset="1"/>
-  </linearGradient>
-  <linearGradient id="lu" x1="30134" x2="33661" y1="3947.6" y2="8449.6" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#8377A8" offset="0"/>
-   <stop stop-color="#7B72A8" offset="1"/>
-  </linearGradient>
-  <linearGradient id="lv" x1="34469" x2="35632" y1="36466" y2="38033" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#3D1F56" offset="0"/>
-   <stop stop-color="#3F1F56" offset="1"/>
-  </linearGradient>
-  <linearGradient id="lw" x1="20244" x2="25911" y1="25356" y2="32819" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#A35B69" offset="0"/>
-   <stop stop-color="#CA8075" offset="1"/>
-  </linearGradient>
-  <linearGradient id="lx" x1="31020" x2="37006" y1="30066" y2="32500" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#743464" offset="0"/>
-   <stop stop-color="#823D66" offset="1"/>
-  </linearGradient>
-  <linearGradient id="ly" x1="30421" x2="34612" y1="17134" y2="20686" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#CF8583" offset="0"/>
-   <stop stop-color="#CD8083" offset="1"/>
-  </linearGradient>
-  <linearGradient id="ma" x1="23533" x2="30564" y1="32558" y2="38350" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#54285B" offset="0"/>
-   <stop stop-color="#6B335D" offset="1"/>
-  </linearGradient>
-  <linearGradient id="mb" x1="33903" x2="37955" y1="4462.5" y2="10090" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#8370A3" offset="0"/>
-   <stop stop-color="#7C69A0" offset="1"/>
-  </linearGradient>
-  <linearGradient id="mc" x1="27047" x2="30244" y1="13169" y2="17946" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#C18E90" offset="0"/>
-   <stop stop-color="#BF898E" offset="1"/>
-  </linearGradient>
-  <linearGradient id="me" x1="37030" x2="42490" y1="15464" y2="19164" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#BC7989" offset="0"/>
-   <stop stop-color="#C37785" offset="1"/>
-  </linearGradient>
-  <linearGradient id="mf" x1="25911" x2="30381" y1="23121" y2="26952" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#CF7E77" offset="0"/>
-   <stop stop-color="#C87475" offset="1"/>
-  </linearGradient>
-  <linearGradient id="mg" x1="23502" x2="29956" y1="6139.6" y2="12085" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#877EAA" offset="0"/>
-   <stop stop-color="#9782A3" offset="1"/>
-  </linearGradient>
-  <linearGradient id="mh" x1="23437" x2="30022" y1="1688.7" y2="8393.7" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#7070AF" offset="0"/>
-   <stop stop-color="#8079AC" offset="1"/>
-  </linearGradient>
-  <linearGradient id="mi" x1="38810" x2="40992" y1="-93.47" y2="4688" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#6057A1" offset="0"/>
-   <stop stop-color="#5652A0" offset="1"/>
-  </linearGradient>
-  <linearGradient id="mj" x1="50235" x2="54489" y1="32323" y2="38145" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#41215B" offset="0"/>
-   <stop stop-color="#2D1850" offset="1"/>
-  </linearGradient>
-  <linearGradient id="mk" x1="34206" x2="35895" y1="35067" y2="37197" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#4B2359" offset="0"/>
-   <stop stop-color="#421F56" offset="1"/>
-  </linearGradient>
-  <linearGradient id="ml" x1="17059" x2="23030" y1="2289.7" y2="5837" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#7772AC" offset="0"/>
-   <stop stop-color="#7574AE" offset="1"/>
-  </linearGradient>
-  <linearGradient id="mm" x1="48022" x2="51814" y1="5121" y2="8952.5" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#7267A5" offset="0"/>
-   <stop stop-color="#6962A7" offset="1"/>
-  </linearGradient>
-  <linearGradient id="mn" x1="30434" x2="31367" y1="-51.57" y2="455.47" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#5D62AA" offset="0"/>
-   <stop stop-color="#5D60AA" offset="1"/>
-  </linearGradient>
-  <linearGradient id="mp" x1="38292" x2="42027" y1="5013.2" y2="11694" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#85699A" offset="0"/>
-   <stop stop-color="#7E669A" offset="1"/>
-  </linearGradient>
-  <linearGradient id="mq" x1="15568" x2="22844" y1="3777.6" y2="5905.7" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#7975AC" offset="0"/>
-   <stop stop-color="#8077AC" offset="1"/>
-  </linearGradient>
-  <linearGradient id="mr" x1="42802" x2="50129" y1="19553" y2="23576" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#BC6B7E" offset="0"/>
-   <stop stop-color="#B56B82" offset="1"/>
-  </linearGradient>
-  <linearGradient id="ms" x1="42348" x2="45913" y1="9730" y2="14082" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#937097" offset="0"/>
-   <stop stop-color="#91709A" offset="1"/>
-  </linearGradient>
-  <linearGradient id="mt" x1="46038" x2="49127" y1="3947.6" y2="8689" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#7266A3" offset="0"/>
-   <stop stop-color="#645BA5" offset="1"/>
-  </linearGradient>
-  <linearGradient id="mu" x1="23197" x2="27907" y1="25356" y2="32819" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#BF7270" offset="0"/>
-   <stop stop-color="#A05467" offset="1"/>
-  </linearGradient>
-  <linearGradient id="mv" x1="32704" x2="36559" y1="14107" y2="17008" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#B88090" offset="0"/>
-   <stop stop-color="#BD7E8A" offset="1"/>
-  </linearGradient>
-  <linearGradient id="mw" x1="33933" x2="37006" y1="30066" y2="34216" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#692F62" offset="0"/>
-   <stop stop-color="#692F62" offset="1"/>
-  </linearGradient>
-  <linearGradient id="mx" x1="32137" x2="34292" y1="35046" y2="36340" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#52265B" offset="0"/>
-   <stop stop-color="#4D2359" offset="1"/>
-  </linearGradient>
-  <linearGradient id="my" x1="32018" x2="34412" y1="32500" y2="35054" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#622D60" offset="0"/>
-   <stop stop-color="#54265B" offset="1"/>
-  </linearGradient>
-  <linearGradient id="nb" x1="36841" x2="43199" y1="26501" y2="29878" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#A14D70" offset="0"/>
-   <stop stop-color="#893F6B" offset="1"/>
-  </linearGradient>
-  <linearGradient id="nc" x1="29902" x2="36488" y1="26314" y2="30584" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#AF5D6E" offset="0"/>
-   <stop stop-color="#A04F6B" offset="1"/>
-  </linearGradient>
-  <linearGradient id="nd" x1="25911" x2="29902" y1="25356" y2="29227" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#C67774" offset="0"/>
-   <stop stop-color="#B3646E" offset="1"/>
-  </linearGradient>
-  <linearGradient id="ne" x1="34004" x2="35619" y1="32599" y2="34876" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#622D5E" offset="0"/>
-   <stop stop-color="#54265B" offset="1"/>
-  </linearGradient>
-  <linearGradient id="nf" x1="2004.3" x2="6554.2" y1="22283" y2="26314" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#D38370" offset="0"/>
-   <stop stop-color="#DB9377" offset="1"/>
-  </linearGradient>
-  <linearGradient id="ng" x1="24075" x2="30421" y1="15019" y2="19968" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#D69985" offset="0"/>
-   <stop stop-color="#CA8E89" offset="1"/>
-  </linearGradient>
-  <linearGradient id="nh" x1="54488" x2="59836" y1="14301" y2="19369" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#9E7091" offset="0"/>
-   <stop stop-color="#97759A" offset="1"/>
-  </linearGradient>
-  <linearGradient id="ni" x1="24179" x2="24961" y1="-221.25" y2="784.81" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#6469AE" offset="0"/>
-   <stop stop-color="#6064AC" offset="1"/>
-  </linearGradient>
-  <linearGradient id="nj" x1="5112" x2="10985" y1="37236" y2="38101" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#59285D" offset="0"/>
-   <stop stop-color="#622A59" offset="1"/>
-  </linearGradient>
-  <linearGradient id="nk" x1="6753.8" x2="13379" y1="17494" y2="24478" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#DBA587" offset="0"/>
-   <stop stop-color="#E2A583" offset="1"/>
-  </linearGradient>
-  <linearGradient id="nm" x1="31020" x2="37006" y1="26314" y2="30584" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#A14D70" offset="0"/>
-   <stop stop-color="#894169" offset="1"/>
-  </linearGradient>
-  <linearGradient id="nn" x1="2012.3" x2="8621.6" y1="32927" y2="37022" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#6E315B" offset="0"/>
-   <stop stop-color="#793659" offset="1"/>
-  </linearGradient>
-  <linearGradient id="no" x1="50594" x2="56226" y1="19433" y2="25652" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#A35D7E" offset="0"/>
-   <stop stop-color="#975B80" offset="1"/>
-  </linearGradient>
-  <linearGradient id="np" x1="54305" x2="58619" y1="-246.39" y2="3204.6" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#504B97" offset="0"/>
-   <stop stop-color="#494290" offset="1"/>
-  </linearGradient>
-  <linearGradient id="nq" x1="13379" x2="19006" y1="27431" y2="35653" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#BA7272" offset="0"/>
-   <stop stop-color="#8E4460" offset="1"/>
-  </linearGradient>
-  <linearGradient id="nr" x1="4755" x2="8074" y1="30420" y2="31627" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#A55662" offset="0"/>
-   <stop stop-color="#9E5060" offset="1"/>
-  </linearGradient>
-  <linearGradient id="ns" x1="56124" x2="62590" y1="29988" y2="32897" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#4D2866" offset="0"/>
-   <stop stop-color="#592F6B" offset="1"/>
-  </linearGradient>
-  <linearGradient id="nt" x1="47403" x2="50517" y1="862.47" y2="4989.3" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#5D59A3" offset="0"/>
-   <stop stop-color="#544F9E" offset="1"/>
-  </linearGradient>
-  <linearGradient id="nu" x1="15694" x2="23796" y1="12145" y2="16376" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#C39995" offset="0"/>
-   <stop stop-color="#BD9597" offset="1"/>
-  </linearGradient>
-  <linearGradient id="nv" x1="46984" x2="49858" y1="11990" y2="17090" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#A57B95" offset="0"/>
-   <stop stop-color="#A07997" offset="1"/>
-  </linearGradient>
-  <linearGradient id="nx" x1="37006" x2="43552" y1="28270" y2="32700" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#672F64" offset="0"/>
-   <stop stop-color="#7E3B69" offset="1"/>
-  </linearGradient>
-  <linearGradient id="ny" x1="63149" x2="67917" y1="8068.3" y2="11617" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#64599A" offset="0"/>
-   <stop stop-color="#625695" offset="1"/>
-  </linearGradient>
-  <linearGradient id="nz" x1="63286" x2="67780" y1="9182.5" y2="13547" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#6B5E9A" offset="0"/>
-   <stop stop-color="#776297" offset="1"/>
-  </linearGradient>
-  <linearGradient id="oa" x1="62567" x2="68499" y1="3523.3" y2="7859.1" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#5B5297" offset="0"/>
-   <stop stop-color="#4D448E" offset="1"/>
-  </linearGradient>
-  <linearGradient id="oc" x1="32324" x2="34205" y1="35223" y2="37919" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#4D2459" offset="0"/>
-   <stop stop-color="#421F56" offset="1"/>
-  </linearGradient>
-  <linearGradient id="od" x1="14591" x2="14803" y1="-53.67" y2="18.55" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#625BA5" offset="0"/>
-   <stop stop-color="#6762A8" offset="1"/>
-  </linearGradient>
-  <linearGradient id="oe" x1="4944.6" x2="8283.5" y1="31492" y2="32430" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#9C4D60" offset="0"/>
-   <stop stop-color="#9A4D5E" offset="1"/>
-  </linearGradient>
-  <linearGradient id="of" x1="42794" x2="46825" y1="14859" y2="19329" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#BC7989" offset="0"/>
-   <stop stop-color="#B3798E" offset="1"/>
-  </linearGradient>
-  <linearGradient id="og" x1="10366" x2="14516" y1="120.92" y2="2617.8" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#7064A5" offset="0"/>
-   <stop stop-color="#6960A5" offset="1"/>
-  </linearGradient>
-  <linearGradient id="oh" x1="11989" x2="12893" y1="-233.48" y2="278.18" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#645BA3" offset="0"/>
-   <stop stop-color="#675EA3" offset="1"/>
-  </linearGradient>
-  <linearGradient id="oj" x2="2004.3" y1="25694" y2="26314" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#D16E72" offset="0"/>
-   <stop stop-color="#CD6E70" offset="1"/>
-  </linearGradient>
-  <linearGradient id="ok" x1="12341" x2="14976" y1="5839.4" y2="12026" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#977CA1" offset="0"/>
-   <stop stop-color="#9980A3" offset="1"/>
-  </linearGradient>
-  <linearGradient id="ol" x1="12447" x2="14870" y1="2975.4" y2="8703.4" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#8C75A3" offset="0"/>
-   <stop stop-color="#7E6EA7" offset="1"/>
-  </linearGradient>
-  <linearGradient id="om" x1="12156" x2="15281" y1="22313" y2="27162" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#E4AA89" offset="0"/>
-   <stop stop-color="#DA9A82" offset="1"/>
-  </linearGradient>
-  <linearGradient id="on" x1="30442" x2="36426" y1="20743" y2="26258" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#CF777C" offset="0"/>
-   <stop stop-color="#C46B77" offset="1"/>
-  </linearGradient>
-  <linearGradient id="oo" x1="19750" x2="23451" y1="-566.64" y2="2567" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#6467AC" offset="0"/>
-   <stop stop-color="#696BAF" offset="1"/>
-  </linearGradient>
-  <linearGradient id="op" x1="12545" x2="16568" y1="84.22" y2="3532.5" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#7267A7" offset="0"/>
-   <stop stop-color="#7069A8" offset="1"/>
-  </linearGradient>
-  <linearGradient id="oq" x1="32536" x2="38084" y1="10270" y2="15258" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#AC7E93" offset="0"/>
-   <stop stop-color="#A37593" offset="1"/>
-  </linearGradient>
-  <linearGradient id="or" x1="32536" x2="38084" y1="8593.3" y2="13981" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#A57C97" offset="0"/>
-   <stop stop-color="#8E729E" offset="1"/>
-  </linearGradient>
-  <linearGradient id="os" x1="57368" x2="63501" y1="-492.28" y2="3450.5" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#463F8E" offset="0"/>
-   <stop stop-color="#4D4693" offset="1"/>
-  </linearGradient>
-  <linearGradient id="ov" x1="4438.9" x2="6753.8" y1="24438" y2="30305" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#BC6E69" offset="0"/>
-   <stop stop-color="#D89075" offset="1"/>
-  </linearGradient>
-  <linearGradient id="ow" x1="14543" x2="23510" y1="12120" y2="15084" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#B38E9A" offset="0"/>
-   <stop stop-color="#B8939A" offset="1"/>
-  </linearGradient>
-  <linearGradient id="ox" x1="14829" x2="23224" y1="6217.8" y2="11767" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#A789A0" offset="0"/>
-   <stop stop-color="#9A82A3" offset="1"/>
-  </linearGradient>
-  <linearGradient id="oy" x1="59907" x2="66869" y1="14379" y2="22045" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#8C6B93" offset="0"/>
-   <stop stop-color="#896089" offset="1"/>
-  </linearGradient>
-  <linearGradient id="oz" x1="51694" x2="55765" y1="29826" y2="36611" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#4B2660" offset="0"/>
-   <stop stop-color="#49245E" offset="1"/>
-  </linearGradient>
-  <linearGradient id="pa" x1="14888" x2="19294" y1="156.05" y2="3460.7" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#726EAC" offset="0"/>
-   <stop stop-color="#6D69AC" offset="1"/>
-  </linearGradient>
-  <linearGradient id="pb" x1="15340" x2="18841" y1="-312.71" y2="2313" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#6966A8" offset="0"/>
-   <stop stop-color="#6969AC" offset="1"/>
-  </linearGradient>
-  <linearGradient id="pd" x1="15550" x2="20148" y1="27199" y2="33291" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#C88279" offset="0"/>
-   <stop stop-color="#B36B70" offset="1"/>
-  </linearGradient>
-  <linearGradient id="pe" x1="45323" x2="47967" y1="3802.4" y2="9472.9" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#7767A1" offset="0"/>
-   <stop stop-color="#6E62A3" offset="1"/>
-  </linearGradient>
-  <linearGradient id="pf" x1="23437" x2="26071" y1="611.06" y2="6078.9" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#7575AF" offset="0"/>
-   <stop stop-color="#696DAF" offset="1"/>
-  </linearGradient>
-  <linearGradient id="ph" x1="889.2" x2="2880" y1="17740" y2="21756" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#D88C80" offset="0"/>
-   <stop stop-color="#D89080" offset="1"/>
-  </linearGradient>
-  <linearGradient id="pi" x1="13479" x2="19345" y1="33299" y2="38207" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#823D60" offset="0"/>
-   <stop stop-color="#702F5D" offset="1"/>
-  </linearGradient>
-  <linearGradient id="pj" x1="34493" x2="38166" y1="-457.45" y2="1939" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#6060A8" offset="0"/>
-   <stop stop-color="#5959A5" offset="1"/>
-  </linearGradient>
-  <linearGradient id="pk" x1="36629" x2="43411" y1="22598" y2="28154" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#AC5474" offset="0"/>
-   <stop stop-color="#A55475" offset="1"/>
-  </linearGradient>
-  <linearGradient id="pl" x1="8538.2" x2="10357" y1="32127" y2="36864" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#8C425D" offset="0"/>
-   <stop stop-color="#702F59" offset="1"/>
-  </linearGradient>
-  <linearGradient id="pm" x1="48995" x2="54432" y1="9649.7" y2="15399" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#8E77A1" offset="0"/>
-   <stop stop-color="#8E77A1" offset="1"/>
-  </linearGradient>
-  <linearGradient id="pn" x1="8150.6" x2="10186" y1="92.2" y2="3325" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#6B5DA1" offset="0"/>
-   <stop stop-color="#6D5DA1" offset="1"/>
-  </linearGradient>
-  <linearGradient id="po" x1="14634" x2="23578" y1="16556" y2="19788" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#DDAC8C" offset="0"/>
-   <stop stop-color="#D6A189" offset="1"/>
-  </linearGradient>
-  <linearGradient id="pp" x1="-89.43" x2="3967.3" y1="57.95" y2="3498.9" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#695BA3" offset="0"/>
-   <stop stop-color="#6259A3" offset="1"/>
-  </linearGradient>
-  <linearGradient id="pq" x1="49299" x2="54208" y1="3125.4" y2="6278.4" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#625EA5" offset="0"/>
-   <stop stop-color="#605DA3" offset="1"/>
-  </linearGradient>
-  <linearGradient id="ps" x1="8390.1" x2="15454" y1="25795" y2="31742" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#B5696B" offset="0"/>
-   <stop stop-color="#D38E7C" offset="1"/>
-  </linearGradient>
-  <linearGradient id="pt" x1="19485" x2="23956" y1="611.06" y2="6078.9" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#7070AF" offset="0"/>
-   <stop stop-color="#7272AF" offset="1"/>
-  </linearGradient>
-  <linearGradient id="pu" x1="48088" x2="51268" y1="9007.6" y2="11651" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#7E6EA5" offset="0"/>
-   <stop stop-color="#8572A5" offset="1"/>
-  </linearGradient>
-  <linearGradient id="pv" x1="54761" x2="60839" y1="33210" y2="37937" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#331A54" offset="0"/>
-   <stop stop-color="#361C56" offset="1"/>
-  </linearGradient>
-  <linearGradient id="pw" x1="55149" x2="60451" y1="36024" y2="38675" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#2D1650" offset="0"/>
-   <stop stop-color="#26154D" offset="1"/>
-  </linearGradient>
-  <linearGradient id="px" x1="4496.1" x2="7928.5" y1="-.31" y2="1880.9" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#62569E" offset="0"/>
-   <stop stop-color="#6457A0" offset="1"/>
-  </linearGradient>
-  <linearGradient id="py" x1="46060" x2="49961" y1="32416" y2="38092" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#2A164D" offset="0"/>
-   <stop stop-color="#361C54" offset="1"/>
-  </linearGradient>
-  <linearGradient id="pz" x1="55765" x2="61472" y1="25715" y2="29826" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#6D3A70" offset="0"/>
-   <stop stop-color="#7B4477" offset="1"/>
-  </linearGradient>
-  <linearGradient id="qa" x1="45452" x2="48756" y1="9090.2" y2="11569" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#806BA1" offset="0"/>
-   <stop stop-color="#8370A3" offset="1"/>
-  </linearGradient>
-  <linearGradient id="qb" x1="42386" x2="45875" y1="12303" y2="17774" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#A07293" offset="0"/>
-   <stop stop-color="#AF7790" offset="1"/>
-  </linearGradient>
-  <linearGradient id="qe" x1="11039" x2="15599" y1="14127" y2="19184" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#C69993" offset="0"/>
-   <stop stop-color="#D1A391" offset="1"/>
-  </linearGradient>
-  <linearGradient id="qf" x1="2004.3" x2="4199.4" y1="22083" y2="26314" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#D48270" offset="0"/>
-   <stop stop-color="#DD9077" offset="1"/>
-  </linearGradient>
-  <linearGradient id="qg" x1="11134" x2="15504" y1="12152" y2="15052" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#BC9395" offset="0"/>
-   <stop stop-color="#BA9397" offset="1"/>
-  </linearGradient>
-  <linearGradient id="qh" x1="687.25" x2="8709.4" y1="1928.1" y2="3604.4" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#6E5BA1" offset="0"/>
-   <stop stop-color="#6E5BA0" offset="1"/>
-  </linearGradient>
-  <linearGradient id="qi" x1="927.91" x2="8468.7" y1="3480.7" y2="8357.8" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#725EA0" offset="0"/>
-   <stop stop-color="#7C649C" offset="1"/>
-  </linearGradient>
-  <linearGradient id="qj" x1="45970" x2="49196" y1="939.91" y2="4991.7" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#5750A0" offset="0"/>
-   <stop stop-color="#6059A5" offset="1"/>
-  </linearGradient>
-  <linearGradient id="qk" x1="61024" x2="65319" y1="-223.25" y2="2662.6" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#423A87" offset="0"/>
-   <stop stop-color="#413885" offset="1"/>
-  </linearGradient>
-  <linearGradient id="ql" x1="-242.65" x2="4681.6" y1="26567" y2="31290" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#9E4F66" offset="0"/>
-   <stop stop-color="#B66267" offset="1"/>
-  </linearGradient>
-  <linearGradient id="qm" x1="51334" x2="56762" y1="8274" y2="15458" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#9077A1" offset="0"/>
-   <stop stop-color="#7B70A7" offset="1"/>
-  </linearGradient>
-  <linearGradient id="qn" x1="34521" x2="35860" y1="34431" y2="37074" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#4D2357" offset="0"/>
-   <stop stop-color="#482157" offset="1"/>
-  </linearGradient>
-  <linearGradient id="qp" x1="36054" x2="45002" y1="32565" y2="38222" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#492159" offset="0"/>
-   <stop stop-color="#341A52" offset="1"/>
-  </linearGradient>
-  <linearGradient id="qq" x1="28552" x2="32370" y1="8617.2" y2="13758" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#977EA3" offset="0"/>
-   <stop stop-color="#AC8399" offset="1"/>
-  </linearGradient>
-  <linearGradient id="qr" x1="41373" x2="49084" y1="28447" y2="32522" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#5E2B62" offset="0"/>
-   <stop stop-color="#693166" offset="1"/>
-  </linearGradient>
-  <linearGradient id="qs" x1="36727" x2="42235" y1="10270" y2="15258" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#AA7790" offset="0"/>
-   <stop stop-color="#957095" offset="1"/>
-  </linearGradient>
-  <linearGradient id="qt" x1="28510" x2="32412" y1="13063" y2="18053" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#C68989" offset="0"/>
-   <stop stop-color="#B58593" offset="1"/>
-  </linearGradient>
-  <linearGradient id="qu" x1="23796" x2="30022" y1="8393.7" y2="12904" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#A8879E" offset="0"/>
-   <stop stop-color="#9E82A0" offset="1"/>
-  </linearGradient>
-  <linearGradient id="qv" x1="24329" x2="30167" y1="18408" y2="22925" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#DB9782" offset="0"/>
-   <stop stop-color="#D4877E" offset="1"/>
-  </linearGradient>
-  <linearGradient id="qw" x1="40172" x2="45056" y1="4939" y2="11769" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#876999" offset="0"/>
-   <stop stop-color="#7562A0" offset="1"/>
-  </linearGradient>
-  <linearGradient id="qx" x1="26366" x2="31682" y1="619.01" y2="3636.3" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#676BAE" offset="0"/>
-   <stop stop-color="#6769AC" offset="1"/>
-  </linearGradient>
-  <linearGradient id="qy" x1="26189" x2="31860" y1="1822.8" y2="8259.6" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#7E77AA" offset="0"/>
-   <stop stop-color="#6E6EAE" offset="1"/>
-  </linearGradient>
-  <linearGradient id="ra" x1="19838" x2="26609" y1="32735" y2="38172" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#5E2A5D" offset="0"/>
-   <stop stop-color="#66315D" offset="1"/>
-  </linearGradient>
-  <linearGradient id="rb" x1="20483" x2="26869" y1="12145" y2="16376" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#C69791" offset="0"/>
-   <stop stop-color="#B88E95" offset="1"/>
-  </linearGradient>
-  <linearGradient id="rc" x1="20483" x2="26869" y1="15019" y2="19968" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#CF9C8E" offset="0"/>
-   <stop stop-color="#CF978A" offset="1"/>
-  </linearGradient>
-  <linearGradient id="rd" x1="26180" x2="30392" y1="-260.68" y2="1901.8" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#6669AE" offset="0"/>
-   <stop stop-color="#6267AC" offset="1"/>
-  </linearGradient>
-  <linearGradient id="rf" x1="28285" x2="31952" y1="34549" y2="38154" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#4D2459" offset="0"/>
-   <stop stop-color="#562659" offset="1"/>
-  </linearGradient>
-  <linearGradient id="rg" x1="42794" x2="46825" y1="14221" y2="18012" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#B6798C" offset="0"/>
-   <stop stop-color="#A87993" offset="1"/>
-  </linearGradient>
-  <linearGradient id="rh" x1="35689" x2="41037" y1="30066" y2="34216" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#5B285D" offset="0"/>
-   <stop stop-color="#692F62" offset="1"/>
-  </linearGradient>
-  <linearGradient id="ri" x1="47951" x2="50278" y1="-539.54" y2="1302.6" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#50499A" offset="0"/>
-   <stop stop-color="#4B4697" offset="1"/>
-  </linearGradient>
-  <linearGradient id="rj" x1="15416" x2="23355" y1="6154.7" y2="11830" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#897BAA" offset="0"/>
-   <stop stop-color="#9382A8" offset="1"/>
-  </linearGradient>
-  <linearGradient id="rk" x1="34681" x2="38015" y1="15341" y2="19287" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#BC7B89" offset="0"/>
-   <stop stop-color="#C67C85" offset="1"/>
-  </linearGradient>
-  <linearGradient id="rm" x1="24201" x2="30255" y1="20076" y2="25248" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#DB957E" offset="0"/>
-   <stop stop-color="#D48577" offset="1"/>
-  </linearGradient>
-  <linearGradient id="rn" x1="46785" x2="50297" y1="17759" y2="23414" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#B3758A" offset="0"/>
-   <stop stop-color="#B36D83" offset="1"/>
-  </linearGradient>
-  <linearGradient id="ro" x1="42598" x2="47228" y1="-136.75" y2="3773.5" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#544D9E" offset="0"/>
-   <stop stop-color="#5750A0" offset="1"/>
-  </linearGradient>
-  <linearGradient id="rp" x1="41291" x2="49165" y1="32254" y2="38254" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#4B2359" offset="0"/>
-   <stop stop-color="#3B1D56" offset="1"/>
-  </linearGradient>
-  <linearGradient id="rq" x1="13654" x2="19969" y1="22259" y2="27216" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#E2AA89" offset="0"/>
-   <stop stop-color="#D49380" offset="1"/>
-  </linearGradient>
-  <linearGradient id="rr" x1="39960" x2="45867" y1="3684.2" y2="9591" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#7562A1" offset="0"/>
-   <stop stop-color="#6459A1" offset="1"/>
-  </linearGradient>
-  <linearGradient id="rs" x1="45378" x2="48830" y1="9730" y2="14082" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#876E9E" offset="0"/>
-   <stop stop-color="#95759C" offset="1"/>
-  </linearGradient>
-  <linearGradient id="rt" x1="19048" x2="23155" y1="27136" y2="33355" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#995066" offset="0"/>
-   <stop stop-color="#AA626D" offset="1"/>
-  </linearGradient>
-  <linearGradient id="ru" x1="30533" x2="33263" y1="18457" y2="22876" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#D18780" offset="0"/>
-   <stop stop-color="#D3807C" offset="1"/>
-  </linearGradient>
-  <linearGradient id="rv" x1="30581" x2="34412" y1="518.45" y2="3736.9" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#6267AC" offset="0"/>
-   <stop stop-color="#6767AA" offset="1"/>
-  </linearGradient>
-  <linearGradient id="rx" x1="35689" x2="41037" y1="32700" y2="37289" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#4F2359" offset="0"/>
-   <stop stop-color="#492359" offset="1"/>
-  </linearGradient>
-  <linearGradient id="ry" x1="28156" x2="30771" y1="29658" y2="34184" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#934B66" offset="0"/>
-   <stop stop-color="#773860" offset="1"/>
-  </linearGradient>
-  <linearGradient id="rz" x1="24071" x2="28110" y1="12318" y2="14847" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#B18C9A" offset="0"/>
-   <stop stop-color="#B68A95" offset="1"/>
-  </linearGradient>
-  <linearGradient id="sa" x1="33414" x2="38084" y1="17134" y2="20686" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#CF7C80" offset="0"/>
-   <stop stop-color="#C87C85" offset="1"/>
-  </linearGradient>
-  <linearGradient id="sb" x1="31157" x2="33836" y1="-290.84" y2="1772.3" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#6064AC" offset="0"/>
-   <stop stop-color="#5D60A8" offset="1"/>
-  </linearGradient>
-  <linearGradient id="sc" x1="30900" x2="33933" y1="32500" y2="35054" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#5D2A5B" offset="0"/>
-   <stop stop-color="#602B5D" offset="1"/>
-  </linearGradient>
-  <linearGradient id="sd" x1="34503" x2="38619" y1="-58.05" y2="4293.4" gradientUnits="userSpaceOnUse">
-   <stop stop-color="#6460A7" offset="0"/>
-   <stop stop-color="#5D5DA5" offset="1"/>
-  </linearGradient>
- </defs>
-   <polygon class="fil0" points="61312 11148 56762 8274 59836 14301"/>
-   <polygon class="fil1" points="63308 8873 67758 2510 67758 2370 63787 2487"/>
-   <polygon class="fil2" points="65437 -48 60906 -48 63787 2487"/>
-   <polygon class="fil3" points="67758 2370 67758 1669 67513 -48 65437 -48 63787 2487"/>
-   <polygon class="fil4" points="67758 -48 67513 -48 67758 1669"/>
-   <polygon class="fil5" points="63308 8873 57082 3006 56762 8274"/>
-   <polygon class="fil6" points="63787 2487 60906 -48 58778 -48 57082 3006"/>
-   <polygon class="fil7" points="63787 2487 57082 3006 63308 8873"/>
-   <polygon class="fil8" points="50616 731 47304 811 49299 5121"/>
-   <polygon class="fil9" points="8709 17493 14137 19289 10944 14021"/>
-   <polygon class="fil10" points="10944 14021 14137 19289 15694 15179"/>
-   <polygon class="fil11" points="15694 15179 14137 19289 20483 16376"/>
-   <polygon class="fil12" points="67758 7855 67758 2510 63308 8873"/>
-   <polygon class="fil13" points="67758 11831 67758 7855 63308 8873"/>
-   <polygon class="fil14" points="61392 22123 59836 14301 56004 19369"/>
-   <polygon class="fil15" points="41037 32700 45087 38088 46054 38088 49419 32420"/>
-   <polygon class="fil16" points="0 33666 0 36948 1645 35653"/>
-   <polygon class="fil17" points="56004 19369 50536 23799 56284 25715"/>
-   <polygon class="fil18" points="56284 25715 61392 22123 56004 19369"/>
-   <polygon class="fil19" points="31978 3804 26071 1689 30022 8394"/>
-   <polygon class="fil20" points="23437 6079 19485 2048 16652 3604"/>
-   <polygon class="fil21" points="30022 8394 26071 1689 23437 6079"/>
-   <polygon class="fil22" points="16652 3604 14696 12 12461 2726"/>
-   <polygon class="fil23" points="19485 2048 14696 12 16652 3604"/>
-   <polygon class="fil24" points="14696 12 14589 -48 10190 -48 10186 92"/>
-   <polygon class="fil25" points="14696 12 10186 92 12461 2726"/>
-   <polygon class="fil26" points="10186 92 8992 -48 6660 -48 8151 1928"/>
-   <polygon class="fil27" points="10190 -48 8992 -48 10186 92"/>
-   <polygon class="fil28" points="10944 14021 6315 8513 8709 17493"/>
-   <polygon class="fil29" points="12341 8952 6315 8513 10944 14021"/>
-   <polygon class="fil30" points="8151 1928 4274 -48 3878 -48 687 3604"/>
-   <polygon class="fil31" points="6660 -48 4274 -48 8151 1928"/>
-   <polygon class="fil32" points="0 18637 0 19530 727 18651"/>
-   <polygon class="fil33" points="14975 5839 12461 2726 12341 8952"/>
-   <polygon class="fil34" points="16652 3604 12461 2726 14975 5839"/>
-   <polygon class="fil35" points="23437 6079 16652 3604 14975 5839"/>
-   <polygon class="fil36" points="50017 17374 50536 23799 56004 19369"/>
-   <polygon class="fil37" points="14137 19289 24075 19968 20483 16376"/>
-   <polygon class="fil38" points="54750 38088 61033 38088 54567 36611"/>
-   <polygon class="fil39" points="3878 -48 2882 -48 0 313 0 1685 687 3604"/>
-   <polygon class="fil40" points="0 1685 0 3433 687 3604"/>
-   <polygon class="fil41" points="10505 36651 13379 35653 8390 31742"/>
-   <polygon class="fil42" points="8390 31742 13379 35653 15454 27431"/>
-   <polygon class="fil43" points="10505 36651 11969 38088 12855 38088 13379 35653"/>
-   <polygon class="fil44" points="12855 38088 18553 38088 13379 35653"/>
-   <polygon class="fil45" points="13379 35653 19006 33418 15454 27431"/>
-   <polygon class="fil46" points="13379 35653 18553 38088 19444 38088 19006 33418"/>
-   <polygon class="fil47" points="65343 36252 67758 33907 67758 30911 62949 30983"/>
-   <polygon class="fil48" points="67758 30911 67758 25503 62949 30983"/>
-   <polygon class="fil49" points="12341 8952 10944 14021 14257 12026"/>
-   <polygon class="fil50" points="14257 12026 10944 14021 15694 15179"/>
-   <polygon class="fil51" points="14975 5839 12341 8952 14257 12026"/>
-   <polygon class="fil52" points="13379 22043 14137 19289 8709 17493"/>
-   <polygon class="fil53" points="42794 18012 42235 12066 36727 15258"/>
-   <polygon class="fil54" points="687 3604 448 10469 6315 8513"/>
-   <polygon class="fil55" points="448 10469 0 11387 0 18637 727 18651"/>
-   <polygon class="fil56" points="0 10343 0 11387 448 10469"/>
-   <polygon class="fil57" points="687 3604 0 5306 0 10343 448 10469"/>
-   <polygon class="fil58" points="4199 22283 2004 26314 6554 24438"/>
-   <polygon class="fil59" points="20483 16376 24075 19968 26869 15019"/>
-   <polygon class="fil60" points="26869 15019 24075 19968 30421 18212"/>
-   <polygon class="fil61" points="54567 36611 61033 38088 59357 33059"/>
-   <polygon class="fil62" points="59357 33059 61033 38088 65343 36252"/>
-   <polygon class="fil63" points="59357 33059 65343 36252 62949 30983"/>
-   <polygon class="fil64" points="62949 30983 67758 25503 67758 24974 64665 23680"/>
-   <polygon class="fil65" points="31978 3804 30022 8394 33774 8593"/>
-   <polygon class="fil66" points="33774 8593 30022 8394 32536 13981"/>
-   <polygon class="fil67" points="49419 32420 51694 32380 50536 23799"/>
-   <polygon class="fil68" points="46026 14221 42235 12066 42794 18012"/>
-   <polygon class="fil69" points="45268 9591 42235 12066 46026 14221"/>
-   <polygon class="fil70" points="46026 14221 42794 18012 46825 14859"/>
-   <polygon class="fil71" points="34412 34975 35689 34216 33933 32500"/>
-   <polygon class="fil72" points="35969 37289 41052 38088 45087 38088 41037 32700"/>
-   <polygon class="fil73" points="34412 34975 35969 37289 35689 34216"/>
-   <polygon class="fil74" points="35330 38088 41052 38088 35969 37289"/>
-   <polygon class="fil75" points="35969 37289 41037 32700 35689 34216"/>
-   <polygon class="fil76" points="2004 26314 4439 30305 6554 24438"/>
-   <polygon class="fil77" points="2004 26314 0 29600 0 31543 4439 30305"/>
-   <polygon class="fil78" points="42794 18012 36727 15258 38084 19369"/>
-   <polygon class="fil79" points="36488 26314 42394 22482 38084 19369"/>
-   <polygon class="fil80" points="38084 19369 42394 22482 42794 18012"/>
-   <polygon class="fil81" points="4439 30305 4838 31462 8390 31742"/>
-   <polygon class="fil82" points="4838 31462 0 31832 0 33666 1645 35653"/>
-   <polygon class="fil83" points="4439 30305 0 31543 0 31832 4838 31462"/>
-   <polygon class="fil84" points="47304 811 44907 -48 42523 -48 45867 3684"/>
-   <polygon class="fil85" points="48022 8952 45867 3684 45268 9591"/>
-   <polygon class="fil86" points="47304 811 45867 3684 49299 5121"/>
-   <polygon class="fil87" points="49299 5121 45867 3684 48022 8952"/>
-   <polygon class="fil88" points="46425 -48 44907 -48 47304 811"/>
-   <polygon class="fil89" points="50017 17374 56004 19369 54488 15458"/>
-   <polygon class="fil90" points="56004 19369 59836 14301 54488 15458"/>
-   <polygon class="fil91" points="59836 14301 56762 8274 54488 15458"/>
-   <polygon class="fil92" points="0 25694 0 26314 2004 26314"/>
-   <polygon class="fil93" points="0 26314 0 29600 2004 26314"/>
-   <polygon class="fil94" points="0 36948 0 38088 1205 38088 1645 35653"/>
-   <polygon class="fil95" points="42394 22482 46545 19329 42794 18012"/>
-   <polygon class="fil96" points="42394 22482 50536 23799 46545 19329"/>
-   <polygon class="fil97" points="42794 18012 46545 19329 46825 14859"/>
-   <polygon class="fil98" points="46545 19329 50017 17374 46825 14859"/>
-   <polygon class="fil99" points="46545 19329 50536 23799 50017 17374"/>
-   <polygon class="fil100" points="23796 12145 14975 5839 14257 12026"/>
-   <polygon class="fil101" points="15694 15179 23796 12145 14257 12026"/>
-   <polygon class="fil102" points="23796 12145 23437 6079 14975 5839"/>
-   <polygon class="fil103" points="20483 16376 23796 12145 15694 15179"/>
-   <polygon class="fil104" points="26869 15019 23796 12145 20483 16376"/>
-   <polygon class="fil105" points="30022 8394 23437 6079 23796 12145"/>
-   <polygon class="fil106" points="33414 20686 36488 26314 38084 19369"/>
-   <polygon class="fil107" points="42235 12066 38084 10270 36727 15258"/>
-   <polygon class="fil108" points="36727 15258 38084 10270 32536 13981"/>
-   <polygon class="fil109" points="38084 10270 33774 8593 32536 13981"/>
-   <polygon class="fil110" points="49299 5121 48022 8952 51813 6278"/>
-   <polygon class="fil111" points="727 18651 0 19530 0 23092 3042 22083"/>
-   <polygon class="fil112" points="3042 22083 0 23092 0 25694 2004 26314"/>
-   <polygon class="fil113" points="3042 22083 2004 26314 4199 22283"/>
-   <polygon class="fil114" points="8709 3325 687 3604 6315 8513"/>
-   <polygon class="fil115" points="8151 1928 687 3604 8709 3325"/>
-   <polygon class="fil116" points="8709 3325 6315 8513 12341 8952"/>
-   <polygon class="fil117" points="10186 92 8151 1928 8709 3325"/>
-   <polygon class="fil118" points="12461 2726 10186 92 8709 3325"/>
-   <polygon class="fil119" points="12461 2726 8709 3325 12341 8952"/>
-   <polygon class="fil120" points="33774 8593 36368 4283 31978 3804"/>
-   <polygon class="fil121" points="38084 10270 36368 4283 33774 8593"/>
-   <polygon class="fil122" points="14805 -48 14589 -48 14696 12"/>
-   <polygon class="fil123" points="19485 2048 18345 -48 14805 -48 14696 12"/>
-   <polygon class="fil124" points="19246 -48 18345 -48 19485 2048"/>
-   <polygon class="fil125" points="39960 4642 36368 4283 38084 10270"/>
-   <polygon class="fil126" points="42235 12066 39960 4642 38084 10270"/>
-   <polygon class="fil127" points="45867 3684 42523 -48 41093 -48 39960 4642"/>
-   <polygon class="fil128" points="45268 9591 39960 4642 42235 12066"/>
-   <polygon class="fil129" points="45867 3684 39960 4642 45268 9591"/>
-   <polygon class="fil130" points="39960 4642 38709 -48 38631 -48 36368 4283"/>
-   <polygon class="fil131" points="41093 -48 38709 -48 39960 4642"/>
-   <polygon class="fil132" points="48940 11706 45268 9591 46026 14221"/>
-   <polygon class="fil133" points="48022 8952 45268 9591 48940 11706"/>
-   <polygon class="fil134" points="48940 11706 46026 14221 46825 14859"/>
-   <polygon class="fil135" points="46825 14859 50017 17374 48940 11706"/>
-   <polygon class="fil136" points="48940 11706 50017 17374 54488 15458"/>
-   <polygon class="fil137" points="59836 14301 66940 17254 61312 11148"/>
-   <polygon class="fil138" points="61392 22123 66940 17254 59836 14301"/>
-   <polygon class="fil139" points="66940 17254 63308 8873 61312 11148"/>
-   <polygon class="fil140" points="64665 23680 66940 17254 61392 22123"/>
-   <polygon class="fil141" points="64665 23680 67758 24974 67758 22812 66940 17254"/>
-   <polygon class="fil142" points="67758 22812 67758 17553 66940 17254"/>
-   <polygon class="fil143" points="19006 33418 19444 38088 19771 38088 23197 32819"/>
-   <polygon class="fil144" points="19771 38088 26676 38088 23197 32819"/>
-   <polygon class="fil145" points="25911 25356 23197 32819 27907 29227"/>
-   <polygon class="fil146" points="23197 32819 26676 38088 28220 38088 30900 34615"/>
-   <polygon class="fil147" points="23197 32819 30900 34615 27907 29227"/>
-   <polygon class="fil148" points="30501 451 26071 1689 31978 3804"/>
-   <polygon class="fil149" points="58778 -48 54146 -48 57082 3006"/>
-   <polygon class="fil150" points="36488 26314 43552 28269 42394 22482"/>
-   <polygon class="fil151" points="41037 32700 49419 32420 43552 28269"/>
-   <polygon class="fil152" points="43552 28269 50536 23799 42394 22482"/>
-   <polygon class="fil153" points="43552 28269 49419 32420 50536 23799"/>
-   <polygon class="fil154" points="23955 611 22772 -48 19246 -48 19485 2048"/>
-   <polygon class="fil155" points="24257 -48 22772 -48 23955 611"/>
-   <polygon class="fil156" points="23955 611 19485 2048 23437 6079"/>
-   <polygon class="fil157" points="26071 1689 23955 611 23437 6079"/>
-   <polygon class="fil158" points="51335 9591 48022 8952 48940 11706"/>
-   <polygon class="fil159" points="51813 6278 48022 8952 51335 9591"/>
-   <polygon class="fil160" points="51335 9591 48940 11706 54488 15458"/>
-   <polygon class="fil161" points="56762 8274 51813 6278 51335 9591"/>
-   <polygon class="fil162" points="54488 15458 56762 8274 51335 9591"/>
-   <polygon class="fil163" points="0 3433 0 3972 687 3604"/>
-   <polygon class="fil164" points="0 3972 0 5306 687 3604"/>
-   <polygon class="fil165" points="8390 31742 15454 27431 11982 25795"/>
-   <polygon class="fil166" points="11982 25795 15454 27431 13379 22043"/>
-   <polygon class="fil167" points="50536 23799 51694 32380 55765 29826"/>
-   <polygon class="fil168" points="50536 23799 55765 29826 56284 25715"/>
-   <polygon class="fil169" points="51694 32380 54567 36611 55765 29826"/>
-   <polygon class="fil170" points="54567 36611 59357 33059 55765 29826"/>
-   <polygon class="fil171" points="55765 29826 59357 33059 62949 30983"/>
-   <polygon class="fil172" points="38084 19369 36727 15258 34612 17134"/>
-   <polygon class="fil173" points="34612 17134 32536 13981 30421 18212"/>
-   <polygon class="fil174" points="30421 18212 33414 20686 34612 17134"/>
-   <polygon class="fil175" points="36727 15258 32536 13981 34612 17134"/>
-   <polygon class="fil176" points="33414 20686 38084 19369 34612 17134"/>
-   <polygon class="fil177" points="61791 10070 56762 8274 61312 11148"/>
-   <polygon class="fil178" points="61791 10070 63308 8873 56762 8274"/>
-   <polygon class="fil179" points="61312 11148 63308 8873 61791 10070"/>
-   <polygon class="fil180" points="4838 31462 1645 35653 6075 32700"/>
-   <polygon class="fil181" points="66940 17254 67758 16672 67758 13857 63308 8873"/>
-   <polygon class="fil182" points="67758 13857 67758 11831 63308 8873"/>
-   <polygon class="fil183" points="67758 17553 67758 16672 66940 17254"/>
-   <polygon class="fil184" points="448 10469 727 18651 2483 17414"/>
-   <polygon class="fil185" points="6315 8513 448 10469 2483 17414"/>
-   <polygon class="fil186" points="727 18651 3042 22083 2483 17414"/>
-   <polygon class="fil187" points="2483 17414 3042 22083 4199 22283"/>
-   <polygon class="fil188" points="2483 17414 4199 22283 8709 17493"/>
-   <polygon class="fil189" points="6315 8513 2483 17414 8709 17493"/>
-   <polygon class="fil190" points="25911 25356 27907 29227 29902 26952"/>
-   <polygon class="fil191" points="5956 32460 4838 31462 6075 32700"/>
-   <polygon class="fil192" points="8390 31742 4838 31462 5956 32460"/>
-   <polygon class="fil193" points="6075 32700 8390 31742 5956 32460"/>
-   <polygon class="fil194" points="30900 34615 28220 38088 28601 38088 32018 35054"/>
-   <polygon class="fil195" points="28601 38088 34134 38088 32018 35054"/>
-   <polygon class="fil196" points="30900 34615 32018 35054 33933 32500"/>
-   <polygon class="fil197" points="33933 32500 32018 35054 34412 34975"/>
-   <polygon class="fil198" points="54208 3125 50616 731 49299 5121"/>
-   <polygon class="fil199" points="51813 6278 54208 3125 49299 5121"/>
-   <polygon class="fil200" points="54208 3125 54091 -48 53840 -48 50616 731"/>
-   <polygon class="fil201" points="56762 8274 54208 3125 51813 6278"/>
-   <polygon class="fil202" points="57082 3006 54146 -48 54091 -48 54208 3125"/>
-   <polygon class="fil203" points="57082 3006 54208 3125 56762 8274"/>
-   <polygon class="fil204" points="46054 38088 49967 38088 49419 32420"/>
-   <polygon class="fil205" points="49419 32420 49967 38088 50157 38088 51694 32380"/>
-   <polygon class="fil206" points="51694 32380 50157 38088 51200 38088 54567 36611"/>
-   <polygon class="fil207" points="51200 38088 54750 38088 54567 36611"/>
-   <polygon class="fil208" points="37006 30066 43552 28269 36488 26314"/>
-   <polygon class="fil209" points="37006 30066 41037 32700 43552 28269"/>
-   <polygon class="fil210" points="35689 34216 37006 30066 33933 32500"/>
-   <polygon class="fil211" points="35689 34216 41037 32700 37006 30066"/>
-   <polygon class="fil212" points="32018 35054 34133 36411 34412 34975"/>
-   <polygon class="fil213" points="32018 35054 34134 38088 34511 38088 34133 36411"/>
-   <polygon class="fil214" points="34133 36411 35969 37289 34412 34975"/>
-   <polygon class="fil215" points="34133 36411 34511 38088 35330 38088 35969 37289"/>
-   <polygon class="fil216" points="1645 35653 1205 38088 5110 38088 8989 37250"/>
-   <polygon class="fil217" points="5110 38088 10987 38088 8989 37250"/>
-   <polygon class="fil218" points="1645 35653 8989 37250 6075 32700"/>
-   <polygon class="fil219" points="6075 32700 8989 37250 8390 31742"/>
-   <polygon class="fil220" points="8989 37250 10505 36651 8390 31742"/>
-   <polygon class="fil221" points="8989 37250 10987 38088 11969 38088 10505 36651"/>
-   <polygon class="fil222" points="31020 30584 37006 30066 36488 26314"/>
-   <polygon class="fil223" points="27907 29227 31020 30584 29902 26952"/>
-   <polygon class="fil224" points="27907 29227 30900 34615 31020 30584"/>
-   <polygon class="fil225" points="29902 26952 31020 30584 36488 26314"/>
-   <polygon class="fil226" points="31020 30584 30900 34615 33933 32500"/>
-   <polygon class="fil227" points="33933 32500 37006 30066 31020 30584"/>
-   <polygon class="fil228" points="28386 12904 23796 12145 26869 15019"/>
-   <polygon class="fil229" points="28386 12904 30022 8394 23796 12145"/>
-   <polygon class="fil230" points="30421 18212 28386 12904 26869 15019"/>
-   <polygon class="fil231" points="32536 13981 30022 8394 28386 12904"/>
-   <polygon class="fil232" points="32536 13981 28386 12904 30421 18212"/>
-   <polygon class="fil233" points="24075 19968 25911 25356 30381 23121"/>
-   <polygon class="fil234" points="24075 19968 30381 23121 30421 18212"/>
-   <polygon class="fil235" points="30381 23121 25911 25356 29902 26952"/>
-   <polygon class="fil236" points="29902 26952 36488 26314 30381 23121"/>
-   <polygon class="fil237" points="30421 18212 30381 23121 33414 20686"/>
-   <polygon class="fil238" points="30381 23121 36488 26314 33414 20686"/>
-   <polygon class="fil239" points="6554 24438 6754 24478 4199 22283"/>
-   <polygon class="fil240" points="4199 22283 6754 24478 8709 17493"/>
-   <polygon class="fil241" points="6554 24438 4439 30305 6754 24478"/>
-   <polygon class="fil242" points="6754 24478 4439 30305 8390 31742"/>
-   <polygon class="fil243" points="6754 24478 8390 31742 11982 25795"/>
-   <polygon class="fil244" points="8709 17493 6754 24478 13379 22043"/>
-   <polygon class="fil245" points="13379 22043 6754 24478 11982 25795"/>
-   <polygon class="fil246" points="56284 25715 55765 29826 61472 25795"/>
-   <polygon class="fil247" points="55765 29826 62949 30983 61472 25795"/>
-   <polygon class="fil248" points="61472 25795 61392 22123 56284 25715"/>
-   <polygon class="fil249" points="61472 25795 64665 23680 61392 22123"/>
-   <polygon class="fil250" points="62949 30983 64665 23680 61472 25795"/>
-   <polygon class="fil251" points="13379 22043 20244 27072 14137 19289"/>
-   <polygon class="fil252" points="15454 27431 20244 27072 13379 22043"/>
-   <polygon class="fil253" points="14137 19289 20244 27072 24075 19968"/>
-   <polygon class="fil254" points="15454 27431 19006 33418 20244 27072"/>
-   <polygon class="fil255" points="19006 33418 23197 32819 20244 27072"/>
-   <polygon class="fil256" points="20244 27072 23197 32819 25911 25356"/>
-   <polygon class="fil257" points="20244 27072 25911 25356 24075 19968"/>
-   <polygon class="fil258" points="0 -48 0 313 2882 -48"/>
-   <polygon class="fil259" points="36368 4283 38631 -48 38433 -48 34492 1529"/>
-   <polygon class="fil260" points="34492 1529 30501 451 31978 3804"/>
-   <polygon class="fil261" points="36368 4283 34492 1529 31978 3804"/>
-   <polygon class="fil262" points="67758 37383 67758 36025 65343 36252"/>
-   <polygon class="fil263" points="67758 36025 67758 33907 65343 36252"/>
-   <polygon class="fil264" points="61033 38088 65114 38088 65343 36252"/>
-   <polygon class="fil265" points="67758 37383 65343 36252 65114 38088 65721 38088 67758 37824"/>
-   <polygon class="fil266" points="67758 37824 65721 38088 67758 38088"/>
-   <polygon class="fil267" points="25185 -48 24257 -48 23955 611"/>
-   <polygon class="fil268" points="26071 1689 26162 -48 25185 -48 23955 611"/>
-   <polygon class="fil269" points="30501 451 28429 -48 26162 -48 26071 1689"/>
-   <polygon class="fil270" points="30432 -48 28429 -48 30501 451"/>
-   <polygon class="fil271" points="31369 -48 30432 -48 30501 451"/>
-   <polygon class="fil272" points="34492 1529 34226 -48 31369 -48 30501 451"/>
-   <polygon class="fil273" points="38433 -48 34226 -48 34492 1529"/>
-   <polygon class="fil274" points="48387 -48 46425 -48 47304 811"/>
-   <polygon class="fil275" points="50616 731 50926 -48 48387 -48 47304 811"/>
-   <polygon class="fil276" points="53840 -48 50926 -48 50616 731"/>
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg version="1.1"
+	 id="圖層_1" text-rendering="geometricPrecision" shape-rendering="geometricPrecision" image-rendering="optimizeQuality"
+	 xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="1919.99px"
+	 height="1080px" viewBox="0 0 1919.99 1080" enable-background="new 0 0 1919.99 1080" xml:space="preserve">
+<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="35039.4258" y1="-2595.5664" x2="39225.3867" y2="-8140.4146" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#836E9E"/>
+	<stop  offset="1" style="stop-color:#7569A3"/>
+</linearGradient>
+<polygon fill="url(#SVGID_1_)" points="1737.978,316.006 1609.002,234.539 1696.139,405.383 "/>
+<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="41082.3047" y1="3309.082" x2="45598.3047" y2="-3147.6187" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#595297"/>
+	<stop  offset="1" style="stop-color:#49428E"/>
+</linearGradient>
+<polygon fill="url(#SVGID_2_)" points="1794.558,251.518 1920.699,71.149 1920.699,67.181 1808.136,70.498 "/>
+<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="39279.3242" y1="6592.4727" x2="43574.3242" y2="3706.6223" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#423A87"/>
+	<stop  offset="1" style="stop-color:#413885"/>
+</linearGradient>
+<polygon fill="url(#SVGID_3_)" points="1854.907,-1.361 1726.469,-1.361 1808.136,70.498 "/>
+<linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="42428.0625" y1="5784.5908" x2="44581.0625" y2="3061.2112" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#443B89"/>
+	<stop  offset="1" style="stop-color:#3F3683"/>
+</linearGradient>
+<polygon fill="url(#SVGID_4_)" points="1920.699,67.181 1920.699,47.31 1913.754,-1.361 1854.907,-1.361 1808.136,70.498 "/>
+<linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="45116.4375" y1="5359.1523" x2="45896.4219" y2="4546.8604" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#413685"/>
+	<stop  offset="1" style="stop-color:#3D3180"/>
+</linearGradient>
+<polygon fill="url(#SVGID_5_)" points="1920.699,-1.361 1913.754,-1.361 1920.699,47.31 "/>
+<linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="33462.3594" y1="1197.7363" x2="39746.3359" y2="-4434.4424" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#6962A3"/>
+	<stop  offset="1" style="stop-color:#5E599E"/>
+</linearGradient>
+<polygon fill="url(#SVGID_6_)" points="1794.558,251.518 1618.072,85.209 1609.002,234.539 "/>
+<linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="34754.1211" y1="5539.2383" x2="40887.1563" y2="1596.4365" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#463F8E"/>
+	<stop  offset="1" style="stop-color:#4D4693"/>
+</linearGradient>
+<polygon fill="url(#SVGID_7_)" points="1808.136,70.498 1726.469,-1.361 1666.148,-1.361 1618.072,85.209 "/>
+<linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="36354.2891" y1="4753.3457" x2="43059.2656" y2="-1632.4307" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#5D549C"/>
+	<stop  offset="1" style="stop-color:#504B97"/>
+</linearGradient>
+<polygon fill="url(#SVGID_8_)" points="1808.136,70.498 1618.072,85.209 1794.558,251.518 "/>
+<linearGradient id="SVGID_9_" gradientUnits="userSpaceOnUse" x1="25845.918" y1="5319.2344" x2="28959.918" y2="1192.4038" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#5D59A3"/>
+	<stop  offset="1" style="stop-color:#544F9E"/>
+</linearGradient>
+<polygon fill="url(#SVGID_9_)" points="1434.784,20.721 1340.9,22.989 1397.452,145.162 "/>
+<linearGradient id="SVGID_10_" gradientUnits="userSpaceOnUse" x1="-13808.8525" y1="-8654.2988" x2="-8381.2813" y2="-13923.2715" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#D3A18C"/>
+	<stop  offset="1" style="stop-color:#CFA190"/>
+</linearGradient>
+<polygon fill="url(#SVGID_10_)" points="246.869,495.864 400.733,546.774 310.224,397.445 "/>
+<linearGradient id="SVGID_11_" gradientUnits="userSpaceOnUse" x1="-10560.793" y1="-7890.3291" x2="-6000.8164" y2="-12947.3027" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#C69993"/>
+	<stop  offset="1" style="stop-color:#D1A391"/>
+</linearGradient>
+<polygon fill="url(#SVGID_11_)" points="310.224,397.445 400.733,546.774 444.869,430.271 "/>
+<linearGradient id="SVGID_12_" gradientUnits="userSpaceOnUse" x1="-8328.5127" y1="-9898.0801" x2="-1982.5127" y2="-14009.0801" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#D8AA90"/>
+	<stop  offset="1" style="stop-color:#CDA093"/>
+</linearGradient>
+<polygon fill="url(#SVGID_12_)" points="444.869,430.271 400.733,546.774 580.62,464.201 "/>
+<linearGradient id="SVGID_13_" gradientUnits="userSpaceOnUse" x1="40374.2148" y1="2178.6582" x2="46306.2148" y2="-2157.1421" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#5B5297"/>
+	<stop  offset="1" style="stop-color:#4D448E"/>
+</linearGradient>
+<polygon fill="url(#SVGID_13_)" points="1920.699,222.662 1920.699,71.149 1794.558,251.518 "/>
+<linearGradient id="SVGID_14_" gradientUnits="userSpaceOnUse" x1="41664.582" y1="-1414.6152" x2="46432.582" y2="-4963.3154" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#64599A"/>
+	<stop  offset="1" style="stop-color:#625695"/>
+</linearGradient>
+<polygon fill="url(#SVGID_14_)" points="1920.699,335.367 1920.699,222.662 1794.558,251.518 "/>
+<linearGradient id="SVGID_15_" gradientUnits="userSpaceOnUse" x1="34142.6953" y1="-8832.4258" x2="39099.6758" y2="-16028.3955" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#9E6B8C"/>
+	<stop  offset="1" style="stop-color:#8E668C"/>
+</linearGradient>
+<polygon fill="url(#SVGID_15_)" points="1740.246,627.108 1696.139,405.383 1587.515,549.043 "/>
+<linearGradient id="SVGID_16_" gradientUnits="userSpaceOnUse" x1="19842.2266" y1="-25575.6406" x2="27716.2266" y2="-31575.6406" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#4B2359"/>
+	<stop  offset="1" style="stop-color:#3B1D56"/>
+</linearGradient>
+<polygon fill="url(#SVGID_16_)" points="1163.254,926.929 1278.057,1079.66 1305.468,1079.66 1400.854,918.992 "/>
+<linearGradient id="SVGID_17_" gradientUnits="userSpaceOnUse" x1="-22868.4023" y1="-28430.9883" x2="-20801.5059" y2="-31420.9531" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#592D64"/>
+	<stop  offset="1" style="stop-color:#743460"/>
+</linearGradient>
+<polygon fill="url(#SVGID_17_)" points="0,954.312 0,1047.345 46.63,1010.637 "/>
+<linearGradient id="SVGID_18_" gradientUnits="userSpaceOnUse" x1="28801.3203" y1="-13368.6182" x2="34433.3203" y2="-19587.6172" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#A35D7E"/>
+	<stop  offset="1" style="stop-color:#975B80"/>
+</linearGradient>
+<polygon fill="url(#SVGID_18_)" points="1587.515,549.043 1432.517,674.617 1595.452,728.929 "/>
+<linearGradient id="SVGID_19_" gradientUnits="userSpaceOnUse" x1="33321.3789" y1="-14301.582" x2="38493.3516" y2="-20393.5488" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#9C6487"/>
+	<stop  offset="1" style="stop-color:#8A547C"/>
+</linearGradient>
+<polygon fill="url(#SVGID_19_)" points="1595.452,728.929 1740.246,627.108 1587.515,549.043 "/>
+<linearGradient id="SVGID_20_" gradientUnits="userSpaceOnUse" x1="4583.877" y1="4396.9668" x2="10254.8535" y2="-2039.8071" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#7E77AA"/>
+	<stop  offset="1" style="stop-color:#6E6EAE"/>
+</linearGradient>
+<polygon fill="url(#SVGID_20_)" points="906.463,107.83 739.021,47.877 851.018,237.94 "/>
+<linearGradient id="SVGID_21_" gradientUnits="userSpaceOnUse" x1="-5105.7979" y1="3459.3184" x2="865.229" y2="-87.9973" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#7772AC"/>
+	<stop  offset="1" style="stop-color:#7574AE"/>
+</linearGradient>
+<polygon fill="url(#SVGID_21_)" points="664.355,172.318 552.331,58.054 472.025,102.161 "/>
+<linearGradient id="SVGID_22_" gradientUnits="userSpaceOnUse" x1="817.251" y1="3594.0098" x2="7402.25" y2="-3110.9907" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#7070AF"/>
+	<stop  offset="1" style="stop-color:#8079AC"/>
+</linearGradient>
+<polygon fill="url(#SVGID_22_)" points="851.018,237.94 739.021,47.877 664.355,172.318 "/>
+<linearGradient id="SVGID_23_" gradientUnits="userSpaceOnUse" x1="-9844.7422" y1="5387.9307" x2="-5821.7427" y2="1939.6504" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#7267A7"/>
+	<stop  offset="1" style="stop-color:#7069A8"/>
+</linearGradient>
+<polygon fill="url(#SVGID_23_)" points="472.025,102.161 416.579,0.34 353.226,77.272 "/>
+<linearGradient id="SVGID_24_" gradientUnits="userSpaceOnUse" x1="-7441.1924" y1="5364.04" x2="-3035.1655" y2="2059.3699" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#726EAC"/>
+	<stop  offset="1" style="stop-color:#6D69AC"/>
+</linearGradient>
+<polygon fill="url(#SVGID_24_)" points="552.331,58.054 416.579,0.34 472.025,102.161 "/>
+<linearGradient id="SVGID_25_" gradientUnits="userSpaceOnUse" x1="-10216.3193" y1="5913.1406" x2="-9312.3193" y2="5401.4805" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#645BA3"/>
+	<stop  offset="1" style="stop-color:#675EA3"/>
+</linearGradient>
+<polygon fill="url(#SVGID_25_)" points="416.579,0.34 413.547,-1.361 288.851,-1.361 288.737,2.608 "/>
+<linearGradient id="SVGID_26_" gradientUnits="userSpaceOnUse" x1="-11524.1689" y1="6083.9922" x2="-7374.1353" y2="3587.0916" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#7064A5"/>
+	<stop  offset="1" style="stop-color:#6960A5"/>
+</linearGradient>
+<polygon fill="url(#SVGID_26_)" points="416.579,0.34 288.737,2.608 353.226,77.272 "/>
+<linearGradient id="SVGID_27_" gradientUnits="userSpaceOnUse" x1="-15327.2715" y1="6088.791" x2="-11873.6055" y2="3994.4519" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#6959A0"/>
+	<stop  offset="1" style="stop-color:#6459A0"/>
+</linearGradient>
+<polygon fill="url(#SVGID_27_)" points="288.737,2.608 254.891,-1.361 188.788,-1.361 231.052,54.652 "/>
+<linearGradient id="SVGID_28_" gradientUnits="userSpaceOnUse" x1="-12926.4648" y1="5966.7031" x2="-12211.2852" y2="5489.937" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#6659A1"/>
+	<stop  offset="1" style="stop-color:#6256A1"/>
+</linearGradient>
+<polygon fill="url(#SVGID_28_)" points="288.851,-1.361 254.891,-1.361 288.737,2.608 "/>
+<linearGradient id="SVGID_29_" gradientUnits="userSpaceOnUse" x1="-15776.1709" y1="-3440.9316" x2="-11701.6709" y2="-11343.6318" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#C49590"/>
+	<stop  offset="1" style="stop-color:#AA8395"/>
+</linearGradient>
+<polygon fill="url(#SVGID_29_)" points="310.224,397.445 179.008,241.313 246.869,495.864 "/>
+<linearGradient id="SVGID_30_" gradientUnits="userSpaceOnUse" x1="-14873.4834" y1="-1833.25" x2="-8967.4834" y2="-7230.75" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#AF8797"/>
+	<stop  offset="1" style="stop-color:#97779C"/>
+</linearGradient>
+<polygon fill="url(#SVGID_30_)" points="349.823,253.757 179.008,241.313 310.224,397.445 "/>
+<linearGradient id="SVGID_31_" gradientUnits="userSpaceOnUse" x1="-21874.6719" y1="5022.7705" x2="-14467.7324" y2="1259.8606" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#6B5BA1"/>
+	<stop  offset="1" style="stop-color:#67579E"/>
+</linearGradient>
+<polygon fill="url(#SVGID_31_)" points="231.052,54.652 121.153,-1.361 109.928,-1.361 19.474,102.161 "/>
+<linearGradient id="SVGID_32_" gradientUnits="userSpaceOnUse" x1="-17452.1484" y1="6148.3301" x2="-14019.749" y2="4267.1201" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#62569E"/>
+	<stop  offset="1" style="stop-color:#6457A0"/>
+</linearGradient>
+<polygon fill="url(#SVGID_32_)" points="188.788,-1.361 121.153,-1.361 231.052,54.652 "/>
+<linearGradient id="SVGID_33_" gradientUnits="userSpaceOnUse" x1="-22196.8281" y1="-12938.3379" x2="-21468.9004" y2="-13829.2979" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#D87E7E"/>
+	<stop  offset="1" style="stop-color:#D67C7B"/>
+</linearGradient>
+<polygon fill="url(#SVGID_33_)" points="0,528.293 0,553.606 20.608,528.689 "/>
+<linearGradient id="SVGID_34_" gradientUnits="userSpaceOnUse" x1="-10304.4053" y1="2490.3604" x2="-7881.4063" y2="-3237.6406" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#8C75A3"/>
+	<stop  offset="1" style="stop-color:#7E6EA7"/>
+</linearGradient>
+<polygon fill="url(#SVGID_34_)" points="424.488,165.515 353.226,77.272 349.823,253.757 "/>
+<linearGradient id="SVGID_35_" gradientUnits="userSpaceOnUse" x1="-9326.5615" y1="3170.3809" x2="-5471.5303" y2="306.3577" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#756BA8"/>
+	<stop  offset="1" style="stop-color:#7C72AA"/>
+</linearGradient>
+<polygon fill="url(#SVGID_35_)" points="472.025,102.161 353.226,77.272 424.488,165.515 "/>
+<linearGradient id="SVGID_36_" gradientUnits="userSpaceOnUse" x1="-6859.6133" y1="1121.1533" x2="416.3589" y2="-1006.9387" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#7975AC"/>
+	<stop  offset="1" style="stop-color:#8077AC"/>
+</linearGradient>
+<polygon fill="url(#SVGID_36_)" points="664.355,172.318 472.025,102.161 424.488,165.515 "/>
+<linearGradient id="SVGID_37_" gradientUnits="userSpaceOnUse" x1="27525.7617" y1="-12069.9609" x2="33392.7617" y2="-18366.9609" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#AC6783"/>
+	<stop  offset="1" style="stop-color:#AC728C"/>
+</linearGradient>
+<polygon fill="url(#SVGID_37_)" points="1417.805,492.491 1432.517,674.617 1587.515,549.043 "/>
+<linearGradient id="SVGID_38_" gradientUnits="userSpaceOnUse" x1="-7657.5576" y1="-11127.6309" x2="1286.4131" y2="-14359.6201" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#DDAC8C"/>
+	<stop  offset="1" style="stop-color:#D6A189"/>
+</linearGradient>
+<polygon fill="url(#SVGID_38_)" points="400.733,546.774 682.441,566.022 580.62,464.201 "/>
+<linearGradient id="SVGID_39_" gradientUnits="userSpaceOnUse" x1="32679.2891" y1="-30876.082" x2="37981.2383" y2="-33527.0547" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#2D1650"/>
+	<stop  offset="1" style="stop-color:#26154D"/>
+</linearGradient>
+<polygon fill="url(#SVGID_39_)" points="1551.969,1079.66 1730.069,1079.66 1546.781,1037.792 "/>
+<linearGradient id="SVGID_40_" gradientUnits="userSpaceOnUse" x1="-22138.1016" y1="5813.8984" x2="-18081.418" y2="2372.9878" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#695BA3"/>
+	<stop  offset="1" style="stop-color:#6259A3"/>
+</linearGradient>
+<polygon fill="url(#SVGID_40_)" points="109.928,-1.361 81.694,-1.361 0,8.873 0,47.764 19.474,102.161 "/>
+<linearGradient id="SVGID_41_" gradientUnits="userSpaceOnUse" x1="-22488.1016" y1="3458.042" x2="-21490.0059" y2="2394.2241" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#6B64A8"/>
+	<stop  offset="1" style="stop-color:#695DA5"/>
+</linearGradient>
+<polygon fill="url(#SVGID_41_)" points="0,47.764 0,97.313 19.474,102.161 "/>
+<linearGradient id="SVGID_42_" gradientUnits="userSpaceOnUse" x1="-14260.0283" y1="-26504.7109" x2="-9271.127" y2="-31413.7109" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#90465E"/>
+	<stop  offset="1" style="stop-color:#79345B"/>
+</linearGradient>
+<polygon fill="url(#SVGID_42_)" points="297.779,1038.926 379.247,1010.637 237.827,899.773 "/>
+<linearGradient id="SVGID_43_" gradientUnits="userSpaceOnUse" x1="-12835.9658" y1="-20898.4707" x2="-5772.1011" y2="-29120.4297" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#A55664"/>
+	<stop  offset="1" style="stop-color:#A75E6B"/>
+</linearGradient>
+<polygon fill="url(#SVGID_43_)" points="237.827,899.773 379.247,1010.637 438.066,777.571 "/>
+<linearGradient id="SVGID_44_" gradientUnits="userSpaceOnUse" x1="-11150.9521" y1="-29461.875" x2="-8634.9521" y2="-32222.875" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#6E2F5B"/>
+	<stop  offset="1" style="stop-color:#6E2D5B"/>
+</linearGradient>
+<polygon fill="url(#SVGID_44_)" points="297.779,1038.926 339.278,1079.66 364.394,1079.66 379.247,1010.637 "/>
+<linearGradient id="SVGID_45_" gradientUnits="userSpaceOnUse" x1="-9756.335" y1="-30852.0586" x2="-4140.3657" y2="-33462.043" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#662A5B"/>
+	<stop  offset="1" style="stop-color:#6B2D5D"/>
+</linearGradient>
+<polygon fill="url(#SVGID_45_)" points="364.394,1079.66 525.912,1079.66 379.247,1010.637 "/>
+<linearGradient id="SVGID_46_" gradientUnits="userSpaceOnUse" x1="-10023.1123" y1="-22556.6445" x2="-4396.1636" y2="-30778.5703" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#BA7272"/>
+	<stop  offset="1" style="stop-color:#8E4460"/>
+</linearGradient>
+<polygon fill="url(#SVGID_46_)" points="379.247,1010.637 538.753,947.282 438.066,777.571 "/>
+<linearGradient id="SVGID_47_" gradientUnits="userSpaceOnUse" x1="-8204.8027" y1="-26988.7383" x2="-2338.8027" y2="-31896.7383" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#823D60"/>
+	<stop  offset="1" style="stop-color:#702F5D"/>
+</linearGradient>
+<polygon fill="url(#SVGID_47_)" points="379.247,1010.637 525.912,1079.66 551.169,1079.66 538.753,947.282 "/>
+<linearGradient id="SVGID_48_" gradientUnits="userSpaceOnUse" x1="41285.4258" y1="-25795.8457" x2="45790.3984" y2="-28850.8281" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#4D2A69"/>
+	<stop  offset="1" style="stop-color:#462666"/>
+</linearGradient>
+<polygon fill="url(#SVGID_48_)" points="1852.242,1027.615 1920.699,961.144 1920.699,876.218 1784.381,878.258 "/>
+<linearGradient id="SVGID_49_" gradientUnits="userSpaceOnUse" x1="40295.5859" y1="-20424.5469" x2="46026.5859" y2="-24657.5469" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#593170"/>
+	<stop  offset="1" style="stop-color:#643B77"/>
+</linearGradient>
+<polygon fill="url(#SVGID_49_)" points="1920.699,876.218 1920.699,722.92 1784.381,878.258 "/>
+<linearGradient id="SVGID_50_" gradientUnits="userSpaceOnUse" x1="-11919.7422" y1="-3689.0293" x2="-8606.7422" y2="-8757.5293" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#B58C97"/>
+	<stop  offset="1" style="stop-color:#A5859C"/>
+</linearGradient>
+<polygon fill="url(#SVGID_50_)" points="349.823,253.757 310.224,397.445 404.136,340.895 "/>
+<linearGradient id="SVGID_51_" gradientUnits="userSpaceOnUse" x1="-11011.7832" y1="-6379.2393" x2="-6641.7832" y2="-9279.2393" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#BC9395"/>
+	<stop  offset="1" style="stop-color:#BA9397"/>
+</linearGradient>
+<polygon fill="url(#SVGID_51_)" points="404.136,340.895 310.224,397.445 444.869,430.271 "/>
+<linearGradient id="SVGID_52_" gradientUnits="userSpaceOnUse" x1="-9297.8799" y1="98.604" x2="-6662.8799" y2="-6087.9956" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#977CA1"/>
+	<stop  offset="1" style="stop-color:#9980A3"/>
+</linearGradient>
+<polygon fill="url(#SVGID_52_)" points="424.488,165.515 349.823,253.757 404.136,340.895 "/>
+<linearGradient id="SVGID_53_" gradientUnits="userSpaceOnUse" x1="-12798.5908" y1="-11305.4121" x2="-7696.8159" y2="-15582.3916" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#DAA88C"/>
+	<stop  offset="1" style="stop-color:#E2AF8C"/>
+</linearGradient>
+<polygon fill="url(#SVGID_53_)" points="379.247,624.841 400.733,546.774 246.869,495.864 "/>
+<linearGradient id="SVGID_54_" gradientUnits="userSpaceOnUse" x1="15085.8271" y1="-5801.2275" x2="21152.7969" y2="-11747.1982" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#A17291"/>
+	<stop  offset="1" style="stop-color:#B6778C"/>
+</linearGradient>
+<polygon fill="url(#SVGID_54_)" points="1213.059,510.576 1197.213,342.028 1041.08,432.51 "/>
+<linearGradient id="SVGID_55_" gradientUnits="userSpaceOnUse" x1="-22898.3359" y1="993.085" x2="-17148.7109" y2="-5733.8872" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#79649E"/>
+	<stop  offset="1" style="stop-color:#8E6E9A"/>
+</linearGradient>
+<polygon fill="url(#SVGID_55_)" points="19.474,102.161 12.699,296.759 179.008,241.313 "/>
+<linearGradient id="SVGID_56_" gradientUnits="userSpaceOnUse" x1="-22983.7813" y1="-6887.3335" x2="-20888.9121" y2="-10939.334" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#CD8285"/>
+	<stop  offset="1" style="stop-color:#BC808A"/>
+</linearGradient>
+<polygon fill="url(#SVGID_56_)" points="12.699,296.759 0,322.781 0,528.293 20.608,528.689 "/>
+<linearGradient id="SVGID_57_" gradientUnits="userSpaceOnUse" x1="-22226.1953" y1="-4656.0205" x2="-21758.3945" y2="-5691.0205" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#C17E8A"/>
+	<stop  offset="1" style="stop-color:#9E7999"/>
+</linearGradient>
+<polygon fill="url(#SVGID_57_)" points="0,293.188 0,322.781 12.699,296.759 "/>
+<linearGradient id="SVGID_58_" gradientUnits="userSpaceOnUse" x1="-22977.8555" y1="1810.1641" x2="-20679.5566" y2="-4464.436" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#8C729E"/>
+	<stop  offset="1" style="stop-color:#856B9E"/>
+</linearGradient>
+<polygon fill="url(#SVGID_58_)" points="19.474,102.161 0,150.406 0,293.188 12.699,296.759 "/>
+<linearGradient id="SVGID_59_" gradientUnits="userSpaceOnUse" x1="-20706.25" y1="-17165.4453" x2="-16156.3496" y2="-21196.4453" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#D38370"/>
+	<stop  offset="1" style="stop-color:#DB9377"/>
+</linearGradient>
+<polygon fill="url(#SVGID_59_)" points="119.027,631.645 56.806,745.908 185.783,692.73 "/>
+<linearGradient id="SVGID_60_" gradientUnits="userSpaceOnUse" x1="-1035.7593" y1="-8447.2568" x2="5350.2798" y2="-13396.2871" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#CF9C8E"/>
+	<stop  offset="1" style="stop-color:#CF978A"/>
+</linearGradient>
+<polygon fill="url(#SVGID_60_)" points="580.62,464.201 682.441,566.022 761.641,425.735 "/>
+<linearGradient id="SVGID_61_" gradientUnits="userSpaceOnUse" x1="1210.6787" y1="-10178.0996" x2="7556.7202" y2="-15127.1328" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#D69985"/>
+	<stop  offset="1" style="stop-color:#CA8E89"/>
+</linearGradient>
+<polygon fill="url(#SVGID_61_)" points="761.641,425.735 682.441,566.022 862.327,516.246 "/>
+<linearGradient id="SVGID_62_" gradientUnits="userSpaceOnUse" x1="32610.4375" y1="-27453.8105" x2="38688.375" y2="-32180.7617" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#331A54"/>
+	<stop  offset="1" style="stop-color:#361C56"/>
+</linearGradient>
+<polygon fill="url(#SVGID_62_)" points="1546.781,1037.792 1730.069,1079.66 1682.561,937.105 "/>
+<linearGradient id="SVGID_63_" gradientUnits="userSpaceOnUse" x1="36903.7383" y1="-28031.2773" x2="42531.7383" y2="-32758.2773" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#2F1854"/>
+	<stop  offset="1" style="stop-color:#3A1F5B"/>
+</linearGradient>
+<polygon fill="url(#SVGID_63_)" points="1682.561,937.105 1730.069,1079.66 1852.242,1027.615 "/>
+<linearGradient id="SVGID_64_" gradientUnits="userSpaceOnUse" x1="37552.8867" y1="-25080.5781" x2="43300.8594" y2="-30137.5547" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#4B2867"/>
+	<stop  offset="1" style="stop-color:#3F215D"/>
+</linearGradient>
+<polygon fill="url(#SVGID_64_)" points="1682.561,937.105 1852.242,1027.615 1784.381,878.258 "/>
+<linearGradient id="SVGID_65_" gradientUnits="userSpaceOnUse" x1="40338.2461" y1="-18272.2441" x2="45374.2461" y2="-25416.2441" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#603670"/>
+	<stop  offset="1" style="stop-color:#75467B"/>
+</linearGradient>
+<polygon fill="url(#SVGID_65_)" points="1784.381,878.258 1920.699,722.92 1920.699,707.925 1833.023,671.244 "/>
+<linearGradient id="SVGID_66_" gradientUnits="userSpaceOnUse" x1="7433.5537" y1="1356.709" x2="10960.5537" y2="-3145.2905" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#8377A8"/>
+	<stop  offset="1" style="stop-color:#7B72A8"/>
+</linearGradient>
+<polygon fill="url(#SVGID_66_)" points="906.463,107.83 851.018,237.94 957.373,243.581 "/>
+<linearGradient id="SVGID_67_" gradientUnits="userSpaceOnUse" x1="8837.8223" y1="-2420.1582" x2="12213.8398" y2="-7449.0845" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#907BA5"/>
+	<stop  offset="1" style="stop-color:#9A7B9E"/>
+</linearGradient>
+<polygon fill="url(#SVGID_67_)" points="957.373,243.581 851.018,237.94 922.28,396.312 "/>
+<linearGradient id="SVGID_68_" gradientUnits="userSpaceOnUse" x1="26776.0586" y1="-18584.7148" x2="28869.0586" y2="-26515.7148" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#5D2D66"/>
+	<stop  offset="1" style="stop-color:#753D6E"/>
+</linearGradient>
+<polygon fill="url(#SVGID_68_)" points="1400.854,918.992 1465.342,917.858 1432.517,674.617 "/>
+<linearGradient id="SVGID_69_" gradientUnits="userSpaceOnUse" x1="19903.3164" y1="-6785.7754" x2="23392.3359" y2="-12256.8066" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#A07293"/>
+	<stop  offset="1" style="stop-color:#AF7790"/>
+</linearGradient>
+<polygon fill="url(#SVGID_69_)" points="1304.674,403.115 1197.213,342.028 1213.059,510.576 "/>
+<linearGradient id="SVGID_70_" gradientUnits="userSpaceOnUse" x1="20456.7578" y1="-3780.9639" x2="24021.7578" y2="-8132.9639" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#937097"/>
+	<stop  offset="1" style="stop-color:#91709A"/>
+</linearGradient>
+<polygon fill="url(#SVGID_70_)" points="1283.188,271.871 1197.213,342.028 1304.674,403.115 "/>
+<linearGradient id="SVGID_71_" gradientUnits="userSpaceOnUse" x1="20442.1563" y1="-8688.1426" x2="24473.1563" y2="-12479.1426" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#B6798C"/>
+	<stop  offset="1" style="stop-color:#A87993"/>
+</linearGradient>
+<polygon fill="url(#SVGID_71_)" points="1304.674,403.115 1213.059,510.576 1327.323,421.2 "/>
+<linearGradient id="SVGID_72_" gradientUnits="userSpaceOnUse" x1="11565.5068" y1="-27071.2676" x2="13180.5068" y2="-29348.2676" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#622D5E"/>
+	<stop  offset="1" style="stop-color:#54265B"/>
+</linearGradient>
+<polygon fill="url(#SVGID_72_)" points="975.458,991.417 1011.656,969.902 961.88,921.26 "/>
+<linearGradient id="SVGID_73_" gradientUnits="userSpaceOnUse" x1="13463.3701" y1="-27492.4609" x2="22411.3711" y2="-33149.4609" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#492159"/>
+	<stop  offset="1" style="stop-color:#341A52"/>
+</linearGradient>
+<polygon fill="url(#SVGID_73_)" points="1019.594,1057.011 1163.679,1079.66 1278.057,1079.66 1163.254,926.929 "/>
+<linearGradient id="SVGID_74_" gradientUnits="userSpaceOnUse" x1="12683.3682" y1="-28548.9668" x2="14022.3828" y2="-31191.9961" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#4D2357"/>
+	<stop  offset="1" style="stop-color:#482157"/>
+</linearGradient>
+<polygon fill="url(#SVGID_74_)" points="975.458,991.417 1019.594,1057.011 1011.656,969.902 "/>
+<linearGradient id="SVGID_75_" gradientUnits="userSpaceOnUse" x1="13087.2588" y1="-31932.3711" x2="18804.291" y2="-32767.375" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#361C54"/>
+	<stop  offset="1" style="stop-color:#311850"/>
+</linearGradient>
+<polygon fill="url(#SVGID_75_)" points="1001.48,1079.66 1163.679,1079.66 1019.594,1057.011 "/>
+<linearGradient id="SVGID_76_" gradientUnits="userSpaceOnUse" x1="13555.7314" y1="-26928.6738" x2="18903.7305" y2="-31517.6738" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#4F2359"/>
+	<stop  offset="1" style="stop-color:#492359"/>
+</linearGradient>
+<polygon fill="url(#SVGID_76_)" points="1019.594,1057.011 1163.254,926.929 1011.656,969.902 "/>
+<linearGradient id="SVGID_77_" gradientUnits="userSpaceOnUse" x1="-19428.2266" y1="-18146.4102" x2="-14878.3574" y2="-24013.3711" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#CA796D"/>
+	<stop  offset="1" style="stop-color:#C4796D"/>
+</linearGradient>
+<polygon fill="url(#SVGID_77_)" points="56.806,745.908 125.83,859.039 185.783,692.73 "/>
+<linearGradient id="SVGID_78_" gradientUnits="userSpaceOnUse" x1="-23018.6758" y1="-21473.0371" x2="-18094.3926" y2="-26196.0703" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#9E4F66"/>
+	<stop  offset="1" style="stop-color:#B66267"/>
+</linearGradient>
+<polygon fill="url(#SVGID_78_)" points="56.806,745.908 0,839.055 0,894.132 125.83,859.039 "/>
+<linearGradient id="SVGID_79_" gradientUnits="userSpaceOnUse" x1="14411.8135" y1="-10389.8447" x2="19871.7871" y2="-14089.8271" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#BC7989"/>
+	<stop  offset="1" style="stop-color:#C37785"/>
+</linearGradient>
+<polygon fill="url(#SVGID_79_)" points="1213.059,510.576 1041.08,432.51 1079.547,549.043 "/>
+<linearGradient id="SVGID_80_" gradientUnits="userSpaceOnUse" x1="13527.2178" y1="-14320.0664" x2="19433.2168" y2="-21265.0664" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#BA5E77"/>
+	<stop  offset="1" style="stop-color:#C46D7E"/>
+</linearGradient>
+<polygon fill="url(#SVGID_80_)" points="1034.306,745.908 1201.72,637.285 1079.547,549.043 "/>
+<linearGradient id="SVGID_81_" gradientUnits="userSpaceOnUse" x1="16668.5391" y1="-11490.9355" x2="21378.5391" y2="-15960.9355" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#C87582"/>
+	<stop  offset="1" style="stop-color:#C17082"/>
+</linearGradient>
+<polygon fill="url(#SVGID_81_)" points="1079.547,549.043 1201.72,637.285 1213.059,510.576 "/>
+<linearGradient id="SVGID_82_" gradientUnits="userSpaceOnUse" x1="-17600.1133" y1="-25164.623" x2="-14281.0889" y2="-26371.6328" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#A55662"/>
+	<stop  offset="1" style="stop-color:#9E5060"/>
+</linearGradient>
+<polygon fill="url(#SVGID_82_)" points="125.83,859.039 137.14,891.836 237.827,899.773 "/>
+<linearGradient id="SVGID_83_" gradientUnits="userSpaceOnUse" x1="-22159.0898" y1="-25709.8027" x2="-16879.7285" y2="-29240.8027" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#893F62"/>
+	<stop  offset="1" style="stop-color:#823D5D"/>
+</linearGradient>
+<polygon fill="url(#SVGID_83_)" points="137.14,891.836 0,902.324 0,954.312 46.63,1010.637 "/>
+<linearGradient id="SVGID_84_" gradientUnits="userSpaceOnUse" x1="-22237.6641" y1="-24774.6641" x2="-17335.125" y2="-26055.6641" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#954864"/>
+	<stop  offset="1" style="stop-color:#A05060"/>
+</linearGradient>
+<polygon fill="url(#SVGID_84_)" points="125.83,859.039 0,894.132 0,902.324 137.14,891.836 "/>
+<linearGradient id="SVGID_85_" gradientUnits="userSpaceOnUse" x1="20890.0742" y1="6412.8809" x2="25520.1328" y2="2502.5818" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#544D9E"/>
+	<stop  offset="1" style="stop-color:#5750A0"/>
+</linearGradient>
+<polygon fill="url(#SVGID_85_)" points="1340.9,22.989 1272.954,-1.361 1205.376,-1.361 1300.167,104.428 "/>
+<linearGradient id="SVGID_86_" gradientUnits="userSpaceOnUse" x1="22245.3242" y1="1487.0967" x2="24889.3398" y2="-4183.4346" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#7767A1"/>
+	<stop  offset="1" style="stop-color:#6E62A3"/>
+</linearGradient>
+<polygon fill="url(#SVGID_86_)" points="1361.254,253.757 1300.167,104.428 1283.188,271.871 "/>
+<linearGradient id="SVGID_87_" gradientUnits="userSpaceOnUse" x1="23516.875" y1="4554.875" x2="26742.918" y2="503.0298" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#5750A0"/>
+	<stop  offset="1" style="stop-color:#6059A5"/>
+</linearGradient>
+<polygon fill="url(#SVGID_87_)" points="1340.9,22.989 1300.167,104.428 1397.452,145.162 "/>
+<linearGradient id="SVGID_88_" gradientUnits="userSpaceOnUse" x1="24273.6719" y1="2033.5957" x2="27362.6719" y2="-2707.8042" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#7266A3"/>
+	<stop  offset="1" style="stop-color:#645BA5"/>
+</linearGradient>
+<polygon fill="url(#SVGID_88_)" points="1397.452,145.162 1300.167,104.428 1361.254,253.757 "/>
+<linearGradient id="SVGID_89_" gradientUnits="userSpaceOnUse" x1="22892.6367" y1="6071.9072" x2="25090.7676" y2="4853.9609" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#524B9C"/>
+	<stop  offset="1" style="stop-color:#524B9C"/>
+</linearGradient>
+<polygon fill="url(#SVGID_89_)" points="1315.984,-1.361 1272.954,-1.361 1340.9,22.989 "/>
+<linearGradient id="SVGID_90_" gradientUnits="userSpaceOnUse" x1="28354.4414" y1="-9599.7139" x2="33742.4141" y2="-13119.6963" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#AC7991"/>
+	<stop  offset="1" style="stop-color:#A37593"/>
+</linearGradient>
+<polygon fill="url(#SVGID_90_)" points="1417.805,492.491 1587.515,549.043 1544.542,438.18 "/>
+<linearGradient id="SVGID_91_" gradientUnits="userSpaceOnUse" x1="32653.9805" y1="-8220.3887" x2="38002.0234" y2="-13288.4307" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#9E7091"/>
+	<stop  offset="1" style="stop-color:#97759A"/>
+</linearGradient>
+<polygon fill="url(#SVGID_91_)" points="1587.515,549.043 1696.139,405.383 1544.542,438.18 "/>
+<linearGradient id="SVGID_92_" gradientUnits="userSpaceOnUse" x1="31306.4102" y1="-3308.0654" x2="36654.4102" y2="-10492.0664" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#7C6EA3"/>
+	<stop  offset="1" style="stop-color:#90759C"/>
+</linearGradient>
+<polygon fill="url(#SVGID_92_)" points="1696.139,405.383 1609.002,234.539 1544.542,438.18 "/>
+<linearGradient id="SVGID_93_" gradientUnits="userSpaceOnUse" x1="-22280.1602" y1="-20274.7539" x2="-20276.1328" y2="-20894.6699" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#D16E72"/>
+	<stop  offset="1" style="stop-color:#CD6E70"/>
+</linearGradient>
+<polygon fill="url(#SVGID_93_)" points="0,728.334 0,745.908 56.806,745.908 "/>
+<linearGradient id="SVGID_94_" gradientUnits="userSpaceOnUse" x1="-22437.5313" y1="-20825.502" x2="-19943.5117" y2="-23684.4648" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#A55067"/>
+	<stop  offset="1" style="stop-color:#C6696E"/>
+</linearGradient>
+<polygon fill="url(#SVGID_94_)" points="0,745.908 0,839.055 56.806,745.908 "/>
+<linearGradient id="SVGID_95_" gradientUnits="userSpaceOnUse" x1="-22469.5977" y1="-30302.8828" x2="-20270.6465" y2="-32033.916" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#502A64"/>
+	<stop  offset="1" style="stop-color:#592B5E"/>
+</linearGradient>
+<polygon fill="url(#SVGID_95_)" points="0,1047.345 0,1079.66 34.157,1079.66 46.63,1010.637 "/>
+<linearGradient id="SVGID_96_" gradientUnits="userSpaceOnUse" x1="19873.0195" y1="-12614.7783" x2="24024.0195" y2="-17084.7773" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#C16E80"/>
+	<stop  offset="1" style="stop-color:#BF7787"/>
+</linearGradient>
+<polygon fill="url(#SVGID_96_)" points="1201.72,637.285 1319.386,547.908 1213.059,510.576 "/>
+<linearGradient id="SVGID_97_" gradientUnits="userSpaceOnUse" x1="20425.0469" y1="-14186.5889" x2="27752.0469" y2="-18209.5879" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#BC6B7E"/>
+	<stop  offset="1" style="stop-color:#B56B82"/>
+</linearGradient>
+<polygon fill="url(#SVGID_97_)" points="1201.72,637.285 1432.517,674.617 1319.386,547.908 "/>
+<linearGradient id="SVGID_98_" gradientUnits="userSpaceOnUse" x1="20928.875" y1="-8861.5166" x2="24959.875" y2="-13331.5166" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#BC7989"/>
+	<stop  offset="1" style="stop-color:#B3798E"/>
+</linearGradient>
+<polygon fill="url(#SVGID_98_)" points="1213.059,510.576 1319.386,547.908 1327.323,421.2 "/>
+<linearGradient id="SVGID_99_" gradientUnits="userSpaceOnUse" x1="23742.8008" y1="-9630.457" x2="27215.8281" y2="-14100.4922" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#AC7B93"/>
+	<stop  offset="1" style="stop-color:#B5798E"/>
+</linearGradient>
+<polygon fill="url(#SVGID_99_)" points="1319.386,547.908 1417.805,492.491 1327.323,421.2 "/>
+<linearGradient id="SVGID_100_" gradientUnits="userSpaceOnUse" x1="25406.4063" y1="-11551.293" x2="28918.4063" y2="-17206.293" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#B3758A"/>
+	<stop  offset="1" style="stop-color:#B36D83"/>
+</linearGradient>
+<polygon fill="url(#SVGID_100_)" points="1319.386,547.908 1432.517,674.617 1417.805,492.491 "/>
+<linearGradient id="SVGID_101_" gradientUnits="userSpaceOnUse" x1="-8677.208" y1="-2502.8604" x2="-282.208" y2="-8052.0601" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#A789A0"/>
+	<stop  offset="1" style="stop-color:#9A82A3"/>
+</linearGradient>
+<polygon fill="url(#SVGID_101_)" points="674.532,344.268 424.488,165.515 404.136,340.895 "/>
+<linearGradient id="SVGID_102_" gradientUnits="userSpaceOnUse" x1="-7596.7471" y1="-6257.8545" x2="1370.2529" y2="-9221.8545" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#B38E9A"/>
+	<stop  offset="1" style="stop-color:#B8939A"/>
+</linearGradient>
+<polygon fill="url(#SVGID_102_)" points="444.869,430.271 674.532,344.268 404.136,340.895 "/>
+<linearGradient id="SVGID_103_" gradientUnits="userSpaceOnUse" x1="-5402.3457" y1="1469.9219" x2="2536.6538" y2="-4205.3779" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#897BAA"/>
+	<stop  offset="1" style="stop-color:#9382A8"/>
+</linearGradient>
+<polygon fill="url(#SVGID_103_)" points="674.532,344.268 664.355,172.318 424.488,165.515 "/>
+<linearGradient id="SVGID_104_" gradientUnits="userSpaceOnUse" x1="-6253.0728" y1="-5972.6016" x2="1848.9707" y2="-10203.624" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#C39995"/>
+	<stop  offset="1" style="stop-color:#BD9597"/>
+</linearGradient>
+<polygon fill="url(#SVGID_104_)" points="580.62,464.201 674.532,344.268 444.869,430.271 "/>
+<linearGradient id="SVGID_105_" gradientUnits="userSpaceOnUse" x1="-2178.3711" y1="-7150.2769" x2="4207.6724" y2="-11381.3057" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#C69791"/>
+	<stop  offset="1" style="stop-color:#B88E95"/>
+</linearGradient>
+<polygon fill="url(#SVGID_105_)" points="761.641,425.735 674.532,344.268 580.62,464.201 "/>
+<linearGradient id="SVGID_106_" gradientUnits="userSpaceOnUse" x1="815.3438" y1="-973.7632" x2="7269.312" y2="-6919.1338" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#877EAA"/>
+	<stop  offset="1" style="stop-color:#9782A3"/>
+</linearGradient>
+<polygon fill="url(#SVGID_106_)" points="851.018,237.94 664.355,172.318 674.532,344.268 "/>
+<linearGradient id="SVGID_107_" gradientUnits="userSpaceOnUse" x1="12279.7881" y1="-12955.1465" x2="16949.7871" y2="-19900.1465" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#BD6277"/>
+	<stop  offset="1" style="stop-color:#CD777E"/>
+</linearGradient>
+<polygon fill="url(#SVGID_107_)" points="947.169,586.375 1034.306,745.908 1079.547,549.043 "/>
+<linearGradient id="SVGID_108_" gradientUnits="userSpaceOnUse" x1="14087.583" y1="-5061.2656" x2="19595.543" y2="-10049.2295" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#AA7790"/>
+	<stop  offset="1" style="stop-color:#957095"/>
+</linearGradient>
+<polygon fill="url(#SVGID_108_)" points="1197.213,342.028 1079.547,291.118 1041.08,432.51 "/>
+<linearGradient id="SVGID_109_" gradientUnits="userSpaceOnUse" x1="10660.8447" y1="-4214.7754" x2="16208.8008" y2="-9202.7363" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#AC7E93"/>
+	<stop  offset="1" style="stop-color:#A37593"/>
+</linearGradient>
+<polygon fill="url(#SVGID_109_)" points="1041.08,432.51 1079.547,291.118 922.28,396.312 "/>
+<linearGradient id="SVGID_110_" gradientUnits="userSpaceOnUse" x1="9924.3545" y1="-3322.5869" x2="15472.3945" y2="-8710.3262" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#A57C97"/>
+	<stop  offset="1" style="stop-color:#8E729E"/>
+</linearGradient>
+<polygon fill="url(#SVGID_110_)" points="1079.547,291.118 957.373,243.581 922.28,396.312 "/>
+<linearGradient id="SVGID_111_" gradientUnits="userSpaceOnUse" x1="25540.0078" y1="294.7646" x2="29332.0078" y2="-3536.7351" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#7267A5"/>
+	<stop  offset="1" style="stop-color:#6962A7"/>
+</linearGradient>
+<polygon fill="url(#SVGID_111_)" points="1397.452,145.162 1361.254,253.757 1468.715,177.959 "/>
+<linearGradient id="SVGID_112_" gradientUnits="userSpaceOnUse" x1="-23134.8828" y1="-14105.6504" x2="-19131.873" y2="-17366.6504" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#D87975"/>
+	<stop  offset="1" style="stop-color:#DB8A7C"/>
+</linearGradient>
+<polygon fill="url(#SVGID_112_)" points="20.608,528.689 0,553.606 0,654.576 86.23,625.975 "/>
+<linearGradient id="SVGID_113_" gradientUnits="userSpaceOnUse" x1="-22054.3789" y1="-17363.0078" x2="-19016.3594" y2="-19172.0078" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#D67572"/>
+	<stop  offset="1" style="stop-color:#D68272"/>
+</linearGradient>
+<polygon fill="url(#SVGID_113_)" points="86.23,625.975 0,654.576 0,728.334 56.806,745.908 "/>
+<linearGradient id="SVGID_114_" gradientUnits="userSpaceOnUse" x1="-20229.4922" y1="-16402.207" x2="-18034.3926" y2="-20633.207" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#D48270"/>
+	<stop  offset="1" style="stop-color:#DD9077"/>
+</linearGradient>
+<polygon fill="url(#SVGID_114_)" points="86.23,625.975 56.806,745.908 119.027,631.645 "/>
+<linearGradient id="SVGID_115_" gradientUnits="userSpaceOnUse" x1="-20434.7617" y1="3504.6953" x2="-12893.9727" y2="-1372.4043" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#725EA0"/>
+	<stop  offset="1" style="stop-color:#7C649C"/>
+</linearGradient>
+<polygon fill="url(#SVGID_115_)" points="246.869,94.252 19.474,102.161 179.008,241.313 "/>
+<linearGradient id="SVGID_116_" gradientUnits="userSpaceOnUse" x1="-21517.0508" y1="3718.3711" x2="-13494.8691" y2="2042.0647" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#6E5BA1"/>
+	<stop  offset="1" style="stop-color:#6E5BA0"/>
+</linearGradient>
+<polygon fill="url(#SVGID_116_)" points="231.052,54.652 19.474,102.161 246.869,94.252 "/>
+<linearGradient id="SVGID_117_" gradientUnits="userSpaceOnUse" x1="-16553.9414" y1="1532.3809" x2="-10647.9131" y2="-3982.5464" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#896E9A"/>
+	<stop  offset="1" style="stop-color:#856D9E"/>
+</linearGradient>
+<polygon fill="url(#SVGID_117_)" points="246.869,94.252 179.008,241.313 349.823,253.757 "/>
+<linearGradient id="SVGID_118_" gradientUnits="userSpaceOnUse" x1="-13842.0693" y1="5735.8555" x2="-11806.6699" y2="2503.0554" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#6B5DA1"/>
+	<stop  offset="1" style="stop-color:#6D5DA1"/>
+</linearGradient>
+<polygon fill="url(#SVGID_118_)" points="288.737,2.608 231.052,54.652 246.869,94.252 "/>
+<linearGradient id="SVGID_119_" gradientUnits="userSpaceOnUse" x1="-13968.0254" y1="5047.4131" x2="-10216.3926" y2="1814.5737" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#6B5EA3"/>
+	<stop  offset="1" style="stop-color:#7062A3"/>
+</linearGradient>
+<polygon fill="url(#SVGID_119_)" points="353.226,77.272 288.737,2.608 246.869,94.252 "/>
+<linearGradient id="SVGID_120_" gradientUnits="userSpaceOnUse" x1="-12014.4102" y1="3351.7012" x2="-8712.8945" y2="-2127.3252" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#8972A1"/>
+	<stop  offset="1" style="stop-color:#7566A3"/>
+</linearGradient>
+<polygon fill="url(#SVGID_120_)" points="353.226,77.272 246.869,94.252 349.823,253.757 "/>
+<linearGradient id="SVGID_121_" gradientUnits="userSpaceOnUse" x1="10198.124" y1="2188.3789" x2="14500.123" y2="-2505.2217" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#706DAC"/>
+	<stop  offset="1" style="stop-color:#756BA7"/>
+</linearGradient>
+<polygon fill="url(#SVGID_121_)" points="957.373,243.581 1030.904,121.408 906.463,107.83 "/>
+<linearGradient id="SVGID_122_" gradientUnits="userSpaceOnUse" x1="11542.8018" y1="1118.9961" x2="15594.8018" y2="-4508.5039" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#8370A3"/>
+	<stop  offset="1" style="stop-color:#7C69A0"/>
+</linearGradient>
+<polygon fill="url(#SVGID_122_)" points="1079.547,291.118 1030.904,121.408 957.373,243.581 "/>
+<linearGradient id="SVGID_123_" gradientUnits="userSpaceOnUse" x1="-7595.999" y1="5772.543" x2="-7383.999" y2="5700.3228" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#625BA5"/>
+	<stop  offset="1" style="stop-color:#6762A8"/>
+</linearGradient>
+<polygon fill="url(#SVGID_123_)" points="419.669,-1.361 413.547,-1.361 416.579,0.34 "/>
+<linearGradient id="SVGID_124_" gradientUnits="userSpaceOnUse" x1="-6569.1338" y1="6392.8701" x2="-3068.1121" y2="3767.1436" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#6966A8"/>
+	<stop  offset="1" style="stop-color:#6969AC"/>
+</linearGradient>
+<polygon fill="url(#SVGID_124_)" points="552.331,58.054 520.016,-1.361 419.669,-1.361 416.579,0.34 "/>
+<linearGradient id="SVGID_125_" gradientUnits="userSpaceOnUse" x1="-3427.1841" y1="5814.5303" x2="-2521.196" y2="3872.5259" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#6466AC"/>
+	<stop  offset="1" style="stop-color:#6969AC"/>
+</linearGradient>
+<polygon fill="url(#SVGID_125_)" points="545.556,-1.361 520.016,-1.361 552.331,58.054 "/>
+<linearGradient id="SVGID_126_" gradientUnits="userSpaceOnUse" x1="14906.2783" y1="1451.0947" x2="18139.2773" y2="-3936.9053" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#6E62A3"/>
+	<stop  offset="1" style="stop-color:#77649E"/>
+</linearGradient>
+<polygon fill="url(#SVGID_126_)" points="1132.725,131.584 1030.904,121.408 1079.547,291.118 "/>
+<linearGradient id="SVGID_127_" gradientUnits="userSpaceOnUse" x1="15615.0498" y1="418.2051" x2="19350.0645" y2="-6262.6226" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#85699A"/>
+	<stop  offset="1" style="stop-color:#7E669A"/>
+</linearGradient>
+<polygon fill="url(#SVGID_127_)" points="1197.213,342.028 1132.725,131.584 1079.547,291.118 "/>
+<linearGradient id="SVGID_128_" gradientUnits="userSpaceOnUse" x1="17240.0742" y1="5226.2344" x2="22518.0742" y2="-87.6563" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#56509E"/>
+	<stop  offset="1" style="stop-color:#6057A1"/>
+</linearGradient>
+<polygon fill="url(#SVGID_128_)" points="1300.167,104.428 1205.376,-1.361 1164.841,-1.361 1132.725,131.584 "/>
+<linearGradient id="SVGID_129_" gradientUnits="userSpaceOnUse" x1="17561.2109" y1="464.1147" x2="22445.1895" y2="-6365.8564" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#876999"/>
+	<stop  offset="1" style="stop-color:#7562A0"/>
+</linearGradient>
+<polygon fill="url(#SVGID_129_)" points="1283.188,271.871 1132.725,131.584 1197.213,342.028 "/>
+<linearGradient id="SVGID_130_" gradientUnits="userSpaceOnUse" x1="19004.6367" y1="3255.3145" x2="24911.6621" y2="-2651.5107" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#7562A1"/>
+	<stop  offset="1" style="stop-color:#6459A1"/>
+</linearGradient>
+<polygon fill="url(#SVGID_130_)" points="1300.167,104.428 1132.725,131.584 1283.188,271.871 "/>
+<linearGradient id="SVGID_131_" gradientUnits="userSpaceOnUse" x1="14027.2861" y1="5343.0664" x2="17287.2852" y2="995.6157" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#665EA5"/>
+	<stop  offset="1" style="stop-color:#6059A1"/>
+</linearGradient>
+<polygon fill="url(#SVGID_131_)" points="1132.725,131.584 1097.263,-1.361 1095.052,-1.361 1030.904,121.408 "/>
+<linearGradient id="SVGID_132_" gradientUnits="userSpaceOnUse" x1="17134.918" y1="6032.4414" x2="19316.918" y2="1250.9712" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#6057A1"/>
+	<stop  offset="1" style="stop-color:#5652A0"/>
+</linearGradient>
+<polygon fill="url(#SVGID_132_)" points="1164.841,-1.361 1097.263,-1.361 1132.725,131.584 "/>
+<linearGradient id="SVGID_133_" gradientUnits="userSpaceOnUse" x1="22903.0859" y1="-4251.6992" x2="26355.1387" y2="-8603.7656" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#876E9E"/>
+	<stop  offset="1" style="stop-color:#95759C"/>
+</linearGradient>
+<polygon fill="url(#SVGID_133_)" points="1387.275,331.824 1283.188,271.871 1304.674,403.115 "/>
+<linearGradient id="SVGID_134_" gradientUnits="userSpaceOnUse" x1="23601.9648" y1="-2931.3574" x2="26905.9648" y2="-5410.1572" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#806BA1"/>
+	<stop  offset="1" style="stop-color:#8370A3"/>
+</linearGradient>
+<polygon fill="url(#SVGID_134_)" points="1361.254,253.757 1283.188,271.871 1387.275,331.824 "/>
+<linearGradient id="SVGID_135_" gradientUnits="userSpaceOnUse" x1="23992.3594" y1="-5856.916" x2="26906.3594" y2="-9009.916" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#A17797"/>
+	<stop  offset="1" style="stop-color:#9A779A"/>
+</linearGradient>
+<polygon fill="url(#SVGID_135_)" points="1387.275,331.824 1304.674,403.115 1327.323,421.2 "/>
+<linearGradient id="SVGID_136_" gradientUnits="userSpaceOnUse" x1="24920.4922" y1="-6215.1123" x2="27794.4922" y2="-11315.1123" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#A57B95"/>
+	<stop  offset="1" style="stop-color:#A07997"/>
+</linearGradient>
+<polygon fill="url(#SVGID_136_)" points="1327.323,421.2 1417.805,492.491 1387.275,331.824 "/>
+<linearGradient id="SVGID_137_" gradientUnits="userSpaceOnUse" x1="26084.5898" y1="-6652.6084" x2="31632.5898" y2="-12320.6094" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#A87995"/>
+	<stop  offset="1" style="stop-color:#9A799E"/>
+</linearGradient>
+<polygon fill="url(#SVGID_137_)" points="1387.275,331.824 1417.805,492.491 1544.542,438.18 "/>
+<linearGradient id="SVGID_138_" gradientUnits="userSpaceOnUse" x1="37319.582" y1="-6109.7461" x2="44139.6094" y2="-11971.7686" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#856E99"/>
+	<stop  offset="1" style="stop-color:#7E6797"/>
+</linearGradient>
+<polygon fill="url(#SVGID_138_)" points="1696.139,405.383 1897.512,489.09 1737.978,316.006 "/>
+<linearGradient id="SVGID_139_" gradientUnits="userSpaceOnUse" x1="37405.8945" y1="-8957.0332" x2="44367.8633" y2="-16623" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#8C6B93"/>
+	<stop  offset="1" style="stop-color:#896089"/>
+</linearGradient>
+<polygon fill="url(#SVGID_139_)" points="1740.246,627.108 1897.512,489.09 1696.139,405.383 "/>
+<linearGradient id="SVGID_140_" gradientUnits="userSpaceOnUse" x1="39562.2695" y1="-3481.5137" x2="44626.2695" y2="-11024.8145" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#75679C"/>
+	<stop  offset="1" style="stop-color:#756297"/>
+</linearGradient>
+<polygon fill="url(#SVGID_140_)" points="1897.512,489.09 1794.558,251.518 1737.978,316.006 "/>
+<linearGradient id="SVGID_141_" gradientUnits="userSpaceOnUse" x1="39584.4063" y1="-11219.3496" x2="45132.457" y2="-17645.4102" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#875782"/>
+	<stop  offset="1" style="stop-color:#825985"/>
+</linearGradient>
+<polygon fill="url(#SVGID_141_)" points="1833.023,671.244 1897.512,489.09 1740.246,627.108 "/>
+<linearGradient id="SVGID_142_" gradientUnits="userSpaceOnUse" x1="42249.668" y1="-11648.9961" x2="45575.6523" y2="-19267.9648" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#7E5080"/>
+	<stop  offset="1" style="stop-color:#7E5685"/>
+</linearGradient>
+<polygon fill="url(#SVGID_142_)" points="1833.023,671.244 1920.699,707.925 1920.699,646.64 1897.512,489.09 "/>
+<linearGradient id="SVGID_143_" gradientUnits="userSpaceOnUse" x1="44413.9297" y1="-12824.8809" x2="46309.9297" y2="-15550.8809" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#7C5283"/>
+	<stop  offset="1" style="stop-color:#85608E"/>
+</linearGradient>
+<polygon fill="url(#SVGID_143_)" points="1920.699,646.64 1920.699,497.565 1897.512,489.09 "/>
+<linearGradient id="SVGID_144_" gradientUnits="userSpaceOnUse" x1="-2939.5864" y1="-26935.5625" x2="1041.4138" y2="-32357.5625" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#833F60"/>
+	<stop  offset="1" style="stop-color:#753660"/>
+</linearGradient>
+<polygon fill="url(#SVGID_144_)" points="538.753,947.282 551.169,1079.66 560.438,1079.66 657.553,930.303 "/>
+<linearGradient id="SVGID_145_" gradientUnits="userSpaceOnUse" x1="-3036.5762" y1="-27882.0742" x2="3734.459" y2="-33319.1016" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#5E2A5D"/>
+	<stop  offset="1" style="stop-color:#66315D"/>
+</linearGradient>
+<polygon fill="url(#SVGID_145_)" points="560.438,1079.66 756.17,1079.66 657.553,930.303 "/>
+<linearGradient id="SVGID_146_" gradientUnits="userSpaceOnUse" x1="290.6626" y1="-20104.3379" x2="5000.6016" y2="-27567.2422" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#BF7270"/>
+	<stop  offset="1" style="stop-color:#A05467"/>
+</linearGradient>
+<polygon fill="url(#SVGID_146_)" points="734.485,718.753 657.553,930.303 791.064,828.481 "/>
+<linearGradient id="SVGID_147_" gradientUnits="userSpaceOnUse" x1="1603.1396" y1="-26536.8906" x2="8634.1396" y2="-32328.8906" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#54285B"/>
+	<stop  offset="1" style="stop-color:#6B335D"/>
+</linearGradient>
+<polygon fill="url(#SVGID_147_)" points="657.553,930.303 756.17,1079.66 799.938,1079.66 875.905,981.213 "/>
+<linearGradient id="SVGID_148_" gradientUnits="userSpaceOnUse" x1="1165.6943" y1="-23786.4199" x2="8406.7246" y2="-28851.4414" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#954D67"/>
+	<stop  offset="1" style="stop-color:#773A60"/>
+</linearGradient>
+<polygon fill="url(#SVGID_148_)" points="657.553,930.303 875.905,981.213 791.064,828.481 "/>
+<linearGradient id="SVGID_149_" gradientUnits="userSpaceOnUse" x1="4447.5703" y1="5566.2822" x2="9763.5703" y2="2548.9922" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#676BAE"/>
+	<stop  offset="1" style="stop-color:#6769AC"/>
+</linearGradient>
+<polygon fill="url(#SVGID_149_)" points="864.596,12.784 739.021,47.877 906.463,107.83 "/>
+<linearGradient id="SVGID_150_" gradientUnits="userSpaceOnUse" x1="32685.082" y1="6664.8379" x2="36999.1133" y2="3213.8223" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#504B97"/>
+	<stop  offset="1" style="stop-color:#494290"/>
+</linearGradient>
+<polygon fill="url(#SVGID_150_)" points="1666.148,-1.361 1534.848,-1.361 1618.072,85.209 "/>
+<linearGradient id="SVGID_151_" gradientUnits="userSpaceOnUse" x1="14683.2881" y1="-16594.4805" x2="21465.2871" y2="-22150.4805" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#AC5474"/>
+	<stop  offset="1" style="stop-color:#A55475"/>
+</linearGradient>
+<polygon fill="url(#SVGID_151_)" points="1034.306,745.908 1234.545,801.326 1201.72,637.285 "/>
+<linearGradient id="SVGID_152_" gradientUnits="userSpaceOnUse" x1="18539.8594" y1="-23956.8906" x2="26250.8594" y2="-28031.8906" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#5E2B62"/>
+	<stop  offset="1" style="stop-color:#693166"/>
+</linearGradient>
+<polygon fill="url(#SVGID_152_)" points="1163.254,926.929 1400.854,918.992 1234.545,801.326 "/>
+<linearGradient id="SVGID_153_" gradientUnits="userSpaceOnUse" x1="20329.8203" y1="-17117.8066" x2="27982.8203" y2="-22557.8066" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#B5607B"/>
+	<stop  offset="1" style="stop-color:#9C5275"/>
+</linearGradient>
+<polygon fill="url(#SVGID_153_)" points="1234.545,801.326 1432.517,674.617 1201.72,637.285 "/>
+<linearGradient id="SVGID_154_" gradientUnits="userSpaceOnUse" x1="22374.4922" y1="-17274.4492" x2="29358.5234" y2="-25895.4883" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#693367"/>
+	<stop  offset="1" style="stop-color:#904972"/>
+</linearGradient>
+<polygon fill="url(#SVGID_154_)" points="1234.545,801.326 1400.854,918.992 1432.517,674.617 "/>
+<linearGradient id="SVGID_155_" gradientUnits="userSpaceOnUse" x1="-2555.146" y1="6135.8916" x2="1145.825" y2="3002.2761" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#6467AC"/>
+	<stop  offset="1" style="stop-color:#696BAF"/>
+</linearGradient>
+<polygon fill="url(#SVGID_155_)" points="679.039,17.32 645.506,-1.361 545.556,-1.361 552.331,58.054 "/>
+<linearGradient id="SVGID_156_" gradientUnits="userSpaceOnUse" x1="686.2651" y1="5983.2891" x2="2163.2993" y2="5306.0532" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#6264AC"/>
+	<stop  offset="1" style="stop-color:#6266AC"/>
+</linearGradient>
+<polygon fill="url(#SVGID_156_)" points="687.6,-1.361 645.506,-1.361 679.039,17.32 "/>
+<linearGradient id="SVGID_157_" gradientUnits="userSpaceOnUse" x1="-1720.2539" y1="5898.4336" x2="2750.7461" y2="430.5933" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#7070AF"/>
+	<stop  offset="1" style="stop-color:#7272AF"/>
+</linearGradient>
+<polygon fill="url(#SVGID_157_)" points="679.039,17.32 552.331,58.054 664.355,172.318 "/>
+<linearGradient id="SVGID_158_" gradientUnits="userSpaceOnUse" x1="1033.6006" y1="4989.5469" x2="3667.6006" y2="-478.2925" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#7575AF"/>
+	<stop  offset="1" style="stop-color:#696DAF"/>
+</linearGradient>
+<polygon fill="url(#SVGID_158_)" points="739.021,47.877 679.039,17.32 664.355,172.318 "/>
+<linearGradient id="SVGID_159_" gradientUnits="userSpaceOnUse" x1="25926.2227" y1="-3268.3623" x2="29106.1895" y2="-5911.7349" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#7E6EA5"/>
+	<stop  offset="1" style="stop-color:#8572A5"/>
+</linearGradient>
+<polygon fill="url(#SVGID_159_)" points="1455.165,271.871 1361.254,253.757 1387.275,331.824 "/>
+<linearGradient id="SVGID_160_" gradientUnits="userSpaceOnUse" x1="25987.5586" y1="-395.1904" x2="29779.5586" y2="-3707.7905" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#776BA5"/>
+	<stop  offset="1" style="stop-color:#756BA8"/>
+</linearGradient>
+<polygon fill="url(#SVGID_160_)" points="1468.715,177.959 1361.254,253.757 1455.165,271.871 "/>
+<linearGradient id="SVGID_161_" gradientUnits="userSpaceOnUse" x1="26906.8398" y1="-3848.7266" x2="32343.8652" y2="-9598.0527" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#8E77A1"/>
+	<stop  offset="1" style="stop-color:#8E77A1"/>
+</linearGradient>
+<polygon fill="url(#SVGID_161_)" points="1455.165,271.871 1387.275,331.824 1544.542,438.18 "/>
+<linearGradient id="SVGID_162_" gradientUnits="userSpaceOnUse" x1="28806.6914" y1="-1369.5547" x2="34017.6914" y2="-4549.6543" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#6E67A8"/>
+	<stop  offset="1" style="stop-color:#756DA8"/>
+</linearGradient>
+<polygon fill="url(#SVGID_162_)" points="1609.002,234.539 1468.715,177.959 1455.165,271.871 "/>
+<linearGradient id="SVGID_163_" gradientUnits="userSpaceOnUse" x1="30145.2656" y1="-1813.3525" x2="35573.2656" y2="-8997.3535" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#9077A1"/>
+	<stop  offset="1" style="stop-color:#7B70A7"/>
+</linearGradient>
+<polygon fill="url(#SVGID_163_)" points="1544.542,438.18 1609.002,234.539 1455.165,271.871 "/>
+<linearGradient id="SVGID_164_" gradientUnits="userSpaceOnUse" x1="-22242.6641" y1="2200.3281" x2="-21536.4238" y2="1686.7283" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#6E67AA"/>
+	<stop  offset="1" style="stop-color:#7267A8"/>
+</linearGradient>
+<polygon fill="url(#SVGID_164_)" points="0,97.313 0,112.592 19.474,102.161 "/>
+<linearGradient id="SVGID_165_" gradientUnits="userSpaceOnUse" x1="-22332.5859" y1="2008.9717" x2="-21365.3867" y2="484.8718" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#8972A1"/>
+	<stop  offset="1" style="stop-color:#7769A7"/>
+</linearGradient>
+<polygon fill="url(#SVGID_165_)" points="0,112.592 0,150.406 19.474,102.161 "/>
+<linearGradient id="SVGID_166_" gradientUnits="userSpaceOnUse" x1="-14205.5586" y1="-20571.6016" x2="-7141.6587" y2="-26518.6016" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#B5696B"/>
+	<stop  offset="1" style="stop-color:#D38E7C"/>
+</linearGradient>
+<polygon fill="url(#SVGID_166_)" points="237.827,899.773 438.066,777.571 339.647,731.197 "/>
+<linearGradient id="SVGID_167_" gradientUnits="userSpaceOnUse" x1="-10397.3398" y1="-16843.3164" x2="-7272.3569" y2="-21692.2891" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#E4AA89"/>
+	<stop  offset="1" style="stop-color:#DA9A82"/>
+</linearGradient>
+<polygon fill="url(#SVGID_167_)" points="339.647,731.197 438.066,777.571 379.247,624.841 "/>
+<linearGradient id="SVGID_168_" gradientUnits="userSpaceOnUse" x1="27740.8945" y1="-19170.2266" x2="32341.8574" y2="-26722.168" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#8E4B75"/>
+	<stop  offset="1" style="stop-color:#623169"/>
+</linearGradient>
+<polygon fill="url(#SVGID_168_)" points="1432.517,674.617 1465.342,917.858 1580.74,845.461 "/>
+<linearGradient id="SVGID_169_" gradientUnits="userSpaceOnUse" x1="29292.4844" y1="-17308.1289" x2="34924.4609" y2="-23214.1055" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#955279"/>
+	<stop  offset="1" style="stop-color:#794272"/>
+</linearGradient>
+<polygon fill="url(#SVGID_169_)" points="1432.517,674.617 1580.74,845.461 1595.452,728.929 "/>
+<linearGradient id="SVGID_170_" gradientUnits="userSpaceOnUse" x1="30434.6836" y1="-23563.8789" x2="34505.6836" y2="-30348.8789" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#4B2660"/>
+	<stop  offset="1" style="stop-color:#49245E"/>
+</linearGradient>
+<polygon fill="url(#SVGID_170_)" points="1465.342,917.858 1546.781,1037.792 1580.74,845.461 "/>
+<linearGradient id="SVGID_171_" gradientUnits="userSpaceOnUse" x1="31612.7539" y1="-24661.5547" x2="36402.7539" y2="-31446.5547" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#3B1D59"/>
+	<stop  offset="1" style="stop-color:#502A64"/>
+</linearGradient>
+<polygon fill="url(#SVGID_171_)" points="1546.781,1037.792 1682.561,937.105 1580.74,845.461 "/>
+<linearGradient id="SVGID_172_" gradientUnits="userSpaceOnUse" x1="34017.2227" y1="-24094.9922" x2="40483.2227" y2="-27003.9922" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#4D2866"/>
+	<stop  offset="1" style="stop-color:#592F6B"/>
+</linearGradient>
+<polygon fill="url(#SVGID_172_)" points="1580.74,845.461 1682.561,937.105 1784.381,878.258 "/>
+<linearGradient id="SVGID_173_" gradientUnits="userSpaceOnUse" x1="12643.6357" y1="-9507.6855" x2="15977.6094" y2="-13453.6553" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#BC7B89"/>
+	<stop  offset="1" style="stop-color:#C67C85"/>
+</linearGradient>
+<polygon fill="url(#SVGID_173_)" points="1079.547,549.043 1041.08,432.51 981.128,485.688 "/>
+<linearGradient id="SVGID_174_" gradientUnits="userSpaceOnUse" x1="7704.4346" y1="-8797.8428" x2="11895.4346" y2="-13028.8418" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#CA8787"/>
+	<stop  offset="1" style="stop-color:#BF828C"/>
+</linearGradient>
+<polygon fill="url(#SVGID_174_)" points="981.128,485.688 922.28,396.312 862.327,516.246 "/>
+<linearGradient id="SVGID_175_" gradientUnits="userSpaceOnUse" x1="8838.4775" y1="-10711.9717" x2="13029.4775" y2="-14263.9717" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#CF8583"/>
+	<stop  offset="1" style="stop-color:#CD8083"/>
+</linearGradient>
+<polygon fill="url(#SVGID_175_)" points="862.327,516.246 947.169,586.375 981.128,485.688 "/>
+<linearGradient id="SVGID_176_" gradientUnits="userSpaceOnUse" x1="10579.8916" y1="-8313.79" x2="14434.8916" y2="-11214.79" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#B88090"/>
+	<stop  offset="1" style="stop-color:#BD7E8A"/>
+</linearGradient>
+<polygon fill="url(#SVGID_176_)" points="1041.08,432.51 922.28,396.312 981.128,485.688 "/>
+<linearGradient id="SVGID_177_" gradientUnits="userSpaceOnUse" x1="10682.876" y1="-12139.7832" x2="15352.9473" y2="-15691.8369" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#CF7C80"/>
+	<stop  offset="1" style="stop-color:#C87C85"/>
+</linearGradient>
+<polygon fill="url(#SVGID_177_)" points="947.169,586.375 1079.547,549.043 981.128,485.688 "/>
+<linearGradient id="SVGID_178_" gradientUnits="userSpaceOnUse" x1="35044.1563" y1="-2441.8477" x2="39470.1563" y2="-4970.4473" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#7069A3"/>
+	<stop  offset="1" style="stop-color:#7267A0"/>
+</linearGradient>
+<polygon fill="url(#SVGID_178_)" points="1751.556,285.449 1609.002,234.539 1737.978,316.006 "/>
+<linearGradient id="SVGID_179_" gradientUnits="userSpaceOnUse" x1="35061.9883" y1="-2316.5713" x2="40821.9883" y2="-3896.9717" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#6D66A3"/>
+	<stop  offset="1" style="stop-color:#6B629E"/>
+</linearGradient>
+<polygon fill="url(#SVGID_179_)" points="1751.556,285.449 1794.558,251.518 1609.002,234.539 "/>
+<linearGradient id="SVGID_180_" gradientUnits="userSpaceOnUse" x1="39119.2461" y1="-3170.5684" x2="41115.3711" y2="-5446.0122" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#70669E"/>
+	<stop  offset="1" style="stop-color:#6B629E"/>
+</linearGradient>
+<polygon fill="url(#SVGID_180_)" points="1737.978,316.006 1794.558,251.518 1751.556,285.449 "/>
+<linearGradient id="SVGID_181_" gradientUnits="userSpaceOnUse" x1="-20839.7266" y1="-26068.7188" x2="-16409.627" y2="-30259.7188" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#75365D"/>
+	<stop  offset="1" style="stop-color:#90445D"/>
+</linearGradient>
+<polygon fill="url(#SVGID_181_)" points="137.14,891.836 46.63,1010.637 172.205,926.929 "/>
+<linearGradient id="SVGID_182_" gradientUnits="userSpaceOnUse" x1="40685.1289" y1="-3593.4688" x2="46043.1289" y2="-11094.8691" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#6E609A"/>
+	<stop  offset="1" style="stop-color:#7E6493"/>
+</linearGradient>
+<polygon fill="url(#SVGID_182_)" points="1897.512,489.09 1920.699,472.592 1920.699,392.797 1794.558,251.518 "/>
+<linearGradient id="SVGID_183_" gradientUnits="userSpaceOnUse" x1="41434.043" y1="-3129.5918" x2="45928.043" y2="-7494.0923" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#6B5E9A"/>
+	<stop  offset="1" style="stop-color:#776297"/>
+</linearGradient>
+<polygon fill="url(#SVGID_183_)" points="1920.699,392.797 1920.699,335.367 1794.558,251.518 "/>
+<linearGradient id="SVGID_184_" gradientUnits="userSpaceOnUse" x1="44739.2617" y1="-10981.0723" x2="45711.2969" y2="-11633.0967" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#836490"/>
+	<stop  offset="1" style="stop-color:#836493"/>
+</linearGradient>
+<polygon fill="url(#SVGID_184_)" points="1920.699,497.565 1920.699,472.592 1897.512,489.09 "/>
+<linearGradient id="SVGID_185_" gradientUnits="userSpaceOnUse" x1="-22304.8984" y1="-5427.5811" x2="-20513.6992" y2="-12627.5811" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#AF7E91"/>
+	<stop  offset="1" style="stop-color:#CD8985"/>
+</linearGradient>
+<polygon fill="url(#SVGID_185_)" points="12.699,296.759 20.608,528.689 70.384,493.625 "/>
+<linearGradient id="SVGID_186_" gradientUnits="userSpaceOnUse" x1="-21035.25" y1="-2343.6201" x2="-15168.3398" y2="-11244.1201" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#A07995"/>
+	<stop  offset="1" style="stop-color:#AA7E90"/>
+</linearGradient>
+<polygon fill="url(#SVGID_186_)" points="179.008,241.313 12.699,296.759 70.384,493.625 "/>
+<linearGradient id="SVGID_187_" gradientUnits="userSpaceOnUse" x1="-20845.2266" y1="-11810.7256" x2="-18854.4414" y2="-15826.6973" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#D88C80"/>
+	<stop  offset="1" style="stop-color:#D89080"/>
+</linearGradient>
+<polygon fill="url(#SVGID_187_)" points="20.608,528.689 86.23,625.975 70.384,493.625 "/>
+<linearGradient id="SVGID_188_" gradientUnits="userSpaceOnUse" x1="-20055.7891" y1="-12271.3379" x2="-18614.1895" y2="-16361.3379" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#DD937B"/>
+	<stop  offset="1" style="stop-color:#D8937E"/>
+</linearGradient>
+<polygon fill="url(#SVGID_188_)" points="70.384,493.625 86.23,625.975 119.027,631.645 "/>
+<linearGradient id="SVGID_189_" gradientUnits="userSpaceOnUse" x1="-19216.293" y1="-11466.1826" x2="-13363.7305" y2="-16043.1543" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#DB977E"/>
+	<stop  offset="1" style="stop-color:#D49985"/>
+</linearGradient>
+<polygon fill="url(#SVGID_189_)" points="70.384,493.625 119.027,631.645 246.869,495.864 "/>
+<linearGradient id="SVGID_190_" gradientUnits="userSpaceOnUse" x1="-20312.5195" y1="-3628.4424" x2="-14459.9199" y2="-12069.543" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#A57C93"/>
+	<stop  offset="1" style="stop-color:#CA9389"/>
+</linearGradient>
+<polygon fill="url(#SVGID_190_)" points="179.008,241.313 70.384,493.625 246.869,495.864 "/>
+<linearGradient id="SVGID_191_" gradientUnits="userSpaceOnUse" x1="3803.3203" y1="-19566.2852" x2="7794.3506" y2="-23437.3145" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#C67774"/>
+	<stop  offset="1" style="stop-color:#B3646E"/>
+</linearGradient>
+<polygon fill="url(#SVGID_191_)" points="734.485,718.753 791.064,828.481 847.615,763.994 "/>
+<linearGradient id="SVGID_192_" gradientUnits="userSpaceOnUse" x1="-17324.4961" y1="-25729.7598" x2="-16087.415" y2="-26967.6406" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#974B5D"/>
+	<stop  offset="1" style="stop-color:#91465D"/>
+</linearGradient>
+<polygon fill="url(#SVGID_192_)" points="168.832,920.126 137.14,891.836 172.205,926.929 "/>
+<linearGradient id="SVGID_193_" gradientUnits="userSpaceOnUse" x1="-17243.582" y1="-25774.084" x2="-13904.6816" y2="-26712.084" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#9C4D60"/>
+	<stop  offset="1" style="stop-color:#9A4D5E"/>
+</linearGradient>
+<polygon fill="url(#SVGID_193_)" points="237.827,899.773 137.14,891.836 168.832,920.126 "/>
+<linearGradient id="SVGID_194_" gradientUnits="userSpaceOnUse" x1="-16229.1143" y1="-26019.5098" x2="-13794.5527" y2="-26977.4941" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#93465D"/>
+	<stop  offset="1" style="stop-color:#974B5E"/>
+</linearGradient>
+<polygon fill="url(#SVGID_194_)" points="172.205,926.929 237.827,899.773 168.832,920.126 "/>
+<linearGradient id="SVGID_195_" gradientUnits="userSpaceOnUse" x1="5982.9863" y1="-28958.3359" x2="9649.7793" y2="-32563.1328" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#4D2459"/>
+	<stop  offset="1" style="stop-color:#562659"/>
+</linearGradient>
+<polygon fill="url(#SVGID_195_)" points="875.905,981.213 799.938,1079.66 810.737,1079.66 907.597,993.656 "/>
+<linearGradient id="SVGID_196_" gradientUnits="userSpaceOnUse" x1="6171.7949" y1="-29774.2676" x2="11669.7588" y2="-32868.2461" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#462359"/>
+	<stop  offset="1" style="stop-color:#482157"/>
+</linearGradient>
+<polygon fill="url(#SVGID_196_)" points="810.737,1079.66 967.578,1079.66 907.597,993.656 "/>
+<linearGradient id="SVGID_197_" gradientUnits="userSpaceOnUse" x1="8815.5" y1="-26669.4316" x2="11848.5" y2="-29223.4316" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#5D2A5B"/>
+	<stop  offset="1" style="stop-color:#602B5D"/>
+</linearGradient>
+<polygon fill="url(#SVGID_197_)" points="875.905,981.213 907.597,993.656 961.88,921.26 "/>
+<linearGradient id="SVGID_198_" gradientUnits="userSpaceOnUse" x1="9697.8584" y1="-26917.3496" x2="12091.8584" y2="-29471.3496" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#622D60"/>
+	<stop  offset="1" style="stop-color:#54265B"/>
+</linearGradient>
+<polygon fill="url(#SVGID_198_)" points="961.88,921.26 907.597,993.656 975.458,991.417 "/>
+<linearGradient id="SVGID_199_" gradientUnits="userSpaceOnUse" x1="26511.4961" y1="4306.2617" x2="31420.5313" y2="-84.0005" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#5E59A3"/>
+	<stop  offset="1" style="stop-color:#56529E"/>
+</linearGradient>
+<polygon fill="url(#SVGID_199_)" points="1536.604,88.583 1434.784,20.721 1397.452,145.162 "/>
+<linearGradient id="SVGID_200_" gradientUnits="userSpaceOnUse" x1="27369.5742" y1="2986.5801" x2="32278.625" y2="-166.4519" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#625EA5"/>
+	<stop  offset="1" style="stop-color:#605DA3"/>
+</linearGradient>
+<polygon fill="url(#SVGID_200_)" points="1468.715,177.959 1536.604,88.583 1397.452,145.162 "/>
+<linearGradient id="SVGID_201_" gradientUnits="userSpaceOnUse" x1="29043.3789" y1="6366.3721" x2="32534.4043" y2="3224.489" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#504B9C"/>
+	<stop  offset="1" style="stop-color:#504D9A"/>
+</linearGradient>
+<polygon fill="url(#SVGID_201_)" points="1536.604,88.583 1533.288,-1.361 1526.173,-1.361 1434.784,20.721 "/>
+<linearGradient id="SVGID_202_" gradientUnits="userSpaceOnUse" x1="29455.9258" y1="2417.7813" x2="34403.9258" y2="-2730.8179" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#6762A7"/>
+	<stop  offset="1" style="stop-color:#625EA3"/>
+</linearGradient>
+<polygon fill="url(#SVGID_202_)" points="1609.002,234.539 1536.604,88.583 1468.715,177.959 "/>
+<linearGradient id="SVGID_203_" gradientUnits="userSpaceOnUse" x1="31212.875" y1="5055.4736" x2="34115.8984" y2="1919.9895" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#4F4999"/>
+	<stop  offset="1" style="stop-color:#54509C"/>
+</linearGradient>
+<polygon fill="url(#SVGID_203_)" points="1618.072,85.209 1534.848,-1.361 1533.288,-1.361 1536.604,88.583 "/>
+<linearGradient id="SVGID_204_" gradientUnits="userSpaceOnUse" x1="33171.8164" y1="2917.3633" x2="35700.8164" y2="-1718.7363" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#6662A3"/>
+	<stop  offset="1" style="stop-color:#57549E"/>
+</linearGradient>
+<polygon fill="url(#SVGID_204_)" points="1618.072,85.209 1536.604,88.583 1609.002,234.539 "/>
+<linearGradient id="SVGID_205_" gradientUnits="userSpaceOnUse" x1="23681.25" y1="-26841.7305" x2="27582.2734" y2="-32517.7656" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#2A164D"/>
+	<stop  offset="1" style="stop-color:#361C54"/>
+</linearGradient>
+<polygon fill="url(#SVGID_205_)" points="1305.468,1079.66 1416.388,1079.66 1400.854,918.992 "/>
+<linearGradient id="SVGID_206_" gradientUnits="userSpaceOnUse" x1="27657.082" y1="-26847.5313" x2="29554.082" y2="-32039.5313" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#46235B"/>
+	<stop  offset="1" style="stop-color:#3B1F57"/>
+</linearGradient>
+<polygon fill="url(#SVGID_206_)" points="1400.854,918.992 1416.388,1079.66 1421.773,1079.66 1465.342,917.858 "/>
+<linearGradient id="SVGID_207_" gradientUnits="userSpaceOnUse" x1="27105.8594" y1="-27305.1563" x2="31359.8594" y2="-33127.1563" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#41215B"/>
+	<stop  offset="1" style="stop-color:#2D1850"/>
+</linearGradient>
+<polygon fill="url(#SVGID_207_)" points="1465.342,917.858 1421.773,1079.66 1451.339,1079.66 1546.781,1037.792 "/>
+<linearGradient id="SVGID_208_" gradientUnits="userSpaceOnUse" x1="29173.0039" y1="-30655.7695" x2="32337.0039" y2="-32722.7695" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#2D1650"/>
+	<stop  offset="1" style="stop-color:#26154B"/>
+</linearGradient>
+<polygon fill="url(#SVGID_208_)" points="1451.339,1079.66 1551.969,1079.66 1546.781,1037.792 "/>
+<linearGradient id="SVGID_209_" gradientUnits="userSpaceOnUse" x1="14300.1904" y1="-21454.3633" x2="20658.1895" y2="-24831.3633" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#A14D70"/>
+	<stop  offset="1" style="stop-color:#893F6B"/>
+</linearGradient>
+<polygon fill="url(#SVGID_209_)" points="1048.989,852.265 1234.545,801.326 1034.306,745.908 "/>
+<linearGradient id="SVGID_210_" gradientUnits="userSpaceOnUse" x1="15424.8975" y1="-21664.2188" x2="21970.8984" y2="-26094.2188" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#672F64"/>
+	<stop  offset="1" style="stop-color:#7E3B69"/>
+</linearGradient>
+<polygon fill="url(#SVGID_210_)" points="1048.989,852.265 1163.254,926.929 1234.545,801.326 "/>
+<linearGradient id="SVGID_211_" gradientUnits="userSpaceOnUse" x1="12150.71" y1="-24060.0078" x2="15223.71" y2="-28210.0078" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#692F62"/>
+	<stop  offset="1" style="stop-color:#692F62"/>
+</linearGradient>
+<polygon fill="url(#SVGID_211_)" points="1011.656,969.902 1048.989,852.265 961.88,921.26 "/>
+<linearGradient id="SVGID_212_" gradientUnits="userSpaceOnUse" x1="12858.4951" y1="-25185.8711" x2="18206.4609" y2="-29335.8438" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#5B285D"/>
+	<stop  offset="1" style="stop-color:#692F62"/>
+</linearGradient>
+<polygon fill="url(#SVGID_212_)" points="1011.656,969.902 1163.254,926.929 1048.989,852.265 "/>
+<linearGradient id="SVGID_213_" gradientUnits="userSpaceOnUse" x1="10224.7275" y1="-28876.918" x2="12378.1484" y2="-30169.9688" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#52265B"/>
+	<stop  offset="1" style="stop-color:#4D2359"/>
+</linearGradient>
+<polygon fill="url(#SVGID_213_)" points="907.597,993.656 967.55,1032.123 975.458,991.417 "/>
+<linearGradient id="SVGID_214_" gradientUnits="userSpaceOnUse" x1="10397.4561" y1="-29335.2207" x2="12278.4561" y2="-32031.2207" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#4D2459"/>
+	<stop  offset="1" style="stop-color:#421F56"/>
+</linearGradient>
+<polygon fill="url(#SVGID_214_)" points="907.597,993.656 967.578,1079.66 978.265,1079.66 967.55,1032.123 "/>
+<linearGradient id="SVGID_215_" gradientUnits="userSpaceOnUse" x1="11749.4209" y1="-29574.1504" x2="13438.4209" y2="-31704.1504" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#4B2359"/>
+	<stop  offset="1" style="stop-color:#421F56"/>
+</linearGradient>
+<polygon fill="url(#SVGID_215_)" points="967.55,1032.123 1019.594,1057.011 975.458,991.417 "/>
+<linearGradient id="SVGID_216_" gradientUnits="userSpaceOnUse" x1="12188.4482" y1="-30829.1016" x2="13351.4482" y2="-32396.1016" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#3D1F56"/>
+	<stop  offset="1" style="stop-color:#3F1F56"/>
+</linearGradient>
+<polygon fill="url(#SVGID_216_)" points="967.55,1032.123 978.265,1079.66 1001.48,1079.66 1019.594,1057.011 "/>
+<linearGradient id="SVGID_217_" gradientUnits="userSpaceOnUse" x1="-21127.1016" y1="-30285.4844" x2="-13631.9023" y2="-33411.4844" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#572A5E"/>
+	<stop  offset="1" style="stop-color:#642D5B"/>
+</linearGradient>
+<polygon fill="url(#SVGID_217_)" points="46.63,1010.637 34.157,1079.66 144.851,1079.66 254.806,1055.905 "/>
+<linearGradient id="SVGID_218_" gradientUnits="userSpaceOnUse" x1="-17101.9297" y1="-31678.3535" x2="-11228.8984" y2="-32543.3574" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#59285D"/>
+	<stop  offset="1" style="stop-color:#622A59"/>
+</linearGradient>
+<polygon fill="url(#SVGID_218_)" points="144.851,1079.66 311.442,1079.66 254.806,1055.905 "/>
+<linearGradient id="SVGID_219_" gradientUnits="userSpaceOnUse" x1="-20227.2148" y1="-27300.5117" x2="-13617.8867" y2="-31395.5293" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#6E315B"/>
+	<stop  offset="1" style="stop-color:#793659"/>
+</linearGradient>
+<polygon fill="url(#SVGID_219_)" points="46.63,1010.637 254.806,1055.905 172.205,926.929 "/>
+<linearGradient id="SVGID_220_" gradientUnits="userSpaceOnUse" x1="-15207.3936" y1="-26051.4336" x2="-12701.8086" y2="-30788.4063" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#8A415B"/>
+	<stop  offset="1" style="stop-color:#833D5B"/>
+</linearGradient>
+<polygon fill="url(#SVGID_220_)" points="172.205,926.929 254.806,1055.905 237.827,899.773 "/>
+<linearGradient id="SVGID_221_" gradientUnits="userSpaceOnUse" x1="-14215.0146" y1="-26640.1074" x2="-12396.2256" y2="-31377.0801" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#8C425D"/>
+	<stop  offset="1" style="stop-color:#702F59"/>
+</linearGradient>
+<polygon fill="url(#SVGID_221_)" points="254.806,1055.905 297.779,1038.926 237.827,899.773 "/>
+<linearGradient id="SVGID_222_" gradientUnits="userSpaceOnUse" x1="-13142.8994" y1="-30843.5781" x2="-10290.3994" y2="-32499.5781" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#6B2D59"/>
+	<stop  offset="1" style="stop-color:#662A59"/>
+</linearGradient>
+<polygon fill="url(#SVGID_222_)" points="254.806,1055.905 311.442,1079.66 339.278,1079.66 297.779,1038.926 "/>
+<linearGradient id="SVGID_223_" gradientUnits="userSpaceOnUse" x1="8740.0352" y1="-20734.3125" x2="14726.0352" y2="-25004.3125" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#A14D70"/>
+	<stop  offset="1" style="stop-color:#894169"/>
+</linearGradient>
+<polygon fill="url(#SVGID_223_)" points="879.307,866.948 1048.989,852.265 1034.306,745.908 "/>
+<linearGradient id="SVGID_224_" gradientUnits="userSpaceOnUse" x1="5789.6416" y1="-21311.4805" x2="8778.6152" y2="-24798.4492" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#A7576B"/>
+	<stop  offset="1" style="stop-color:#A3546B"/>
+</linearGradient>
+<polygon fill="url(#SVGID_224_)" points="791.064,828.481 879.307,866.948 847.615,763.994 "/>
+<linearGradient id="SVGID_225_" gradientUnits="userSpaceOnUse" x1="6791.4072" y1="-23477.4414" x2="9406.4072" y2="-28003.4414" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#934B66"/>
+	<stop  offset="1" style="stop-color:#773860"/>
+</linearGradient>
+<polygon fill="url(#SVGID_225_)" points="791.064,828.481 875.905,981.213 879.307,866.948 "/>
+<linearGradient id="SVGID_226_" gradientUnits="userSpaceOnUse" x1="7874.7969" y1="-20356.6973" x2="14460.7969" y2="-24626.6973" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#AF5D6E"/>
+	<stop  offset="1" style="stop-color:#A04F6B"/>
+</linearGradient>
+<polygon fill="url(#SVGID_226_)" points="847.615,763.994 879.307,866.948 1034.306,745.908 "/>
+<linearGradient id="SVGID_227_" gradientUnits="userSpaceOnUse" x1="8308.0244" y1="-25309.252" x2="11220.0244" y2="-29179.252" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#642D5D"/>
+	<stop  offset="1" style="stop-color:#773862"/>
+</linearGradient>
+<polygon fill="url(#SVGID_227_)" points="879.307,866.948 875.905,981.213 961.88,921.26 "/>
+<linearGradient id="SVGID_228_" gradientUnits="userSpaceOnUse" x1="9034.0137" y1="-23855.6543" x2="15019.9785" y2="-26289.6406" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#743464"/>
+	<stop  offset="1" style="stop-color:#823D66"/>
+</linearGradient>
+<polygon fill="url(#SVGID_228_)" points="961.88,921.26 1048.989,852.265 879.307,866.948 "/>
+<linearGradient id="SVGID_229_" gradientUnits="userSpaceOnUse" x1="2140.751" y1="-6196.7822" x2="6179.751" y2="-8725.7822" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#B18C9A"/>
+	<stop  offset="1" style="stop-color:#B68A95"/>
+</linearGradient>
+<polygon fill="url(#SVGID_229_)" points="804.643,365.783 674.532,344.268 761.641,425.735 "/>
+<linearGradient id="SVGID_230_" gradientUnits="userSpaceOnUse" x1="1783.5723" y1="-2442.7681" x2="8009.6187" y2="-6953.1025" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#A8879E"/>
+	<stop  offset="1" style="stop-color:#9E82A0"/>
+</linearGradient>
+<polygon fill="url(#SVGID_230_)" points="804.643,365.783 851.018,237.94 674.532,344.268 "/>
+<linearGradient id="SVGID_231_" gradientUnits="userSpaceOnUse" x1="4888.9814" y1="-7443.7075" x2="8085.9639" y2="-12220.6807" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#C18E90"/>
+	<stop  offset="1" style="stop-color:#BF898E"/>
+</linearGradient>
+<polygon fill="url(#SVGID_231_)" points="862.327,516.246 804.643,365.783 761.641,425.735 "/>
+<linearGradient id="SVGID_232_" gradientUnits="userSpaceOnUse" x1="5807.0273" y1="-3325.2651" x2="9625.0273" y2="-8466.0645" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#977EA3"/>
+	<stop  offset="1" style="stop-color:#AC8399"/>
+</linearGradient>
+<polygon fill="url(#SVGID_232_)" points="922.28,396.312 851.018,237.94 804.643,365.783 "/>
+<linearGradient id="SVGID_233_" gradientUnits="userSpaceOnUse" x1="6687.4619" y1="-7071.4385" x2="10589.4844" y2="-12061.4668" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#C68989"/>
+	<stop  offset="1" style="stop-color:#B58593"/>
+</linearGradient>
+<polygon fill="url(#SVGID_233_)" points="922.28,396.312 804.643,365.783 862.327,516.246 "/>
+<linearGradient id="SVGID_234_" gradientUnits="userSpaceOnUse" x1="1617.0967" y1="-14831.8535" x2="7671.0962" y2="-20003.8535" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#DB957E"/>
+	<stop  offset="1" style="stop-color:#D48577"/>
+</linearGradient>
+<polygon fill="url(#SVGID_234_)" points="682.441,566.022 734.485,718.753 861.193,655.398 "/>
+<linearGradient id="SVGID_235_" gradientUnits="userSpaceOnUse" x1="2899.3721" y1="-11719.7295" x2="8737.3457" y2="-16236.709" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#DB9782"/>
+	<stop  offset="1" style="stop-color:#D4877E"/>
+</linearGradient>
+<polygon fill="url(#SVGID_235_)" points="682.441,566.022 861.193,655.398 862.327,516.246 "/>
+<linearGradient id="SVGID_236_" gradientUnits="userSpaceOnUse" x1="4112.6641" y1="-16958.7969" x2="8582.6641" y2="-20789.7969" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#CF7E77"/>
+	<stop  offset="1" style="stop-color:#C87475"/>
+</linearGradient>
+<polygon fill="url(#SVGID_236_)" points="861.193,655.398 734.485,718.753 847.615,763.994 "/>
+<linearGradient id="SVGID_237_" gradientUnits="userSpaceOnUse" x1="7213.583" y1="-18726.1641" x2="13403.5547" y2="-22328.1484" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#BC6772"/>
+	<stop  offset="1" style="stop-color:#C16975"/>
+</linearGradient>
+<polygon fill="url(#SVGID_237_)" points="847.615,763.994 1034.306,745.908 861.193,655.398 "/>
+<linearGradient id="SVGID_238_" gradientUnits="userSpaceOnUse" x1="7786.9014" y1="-13096.7969" x2="10516.8809" y2="-17515.7637" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#D18780"/>
+	<stop  offset="1" style="stop-color:#D3807C"/>
+</linearGradient>
+<polygon fill="url(#SVGID_238_)" points="862.327,516.246 861.193,655.398 947.169,586.375 "/>
+<linearGradient id="SVGID_239_" gradientUnits="userSpaceOnUse" x1="8339.5313" y1="-14943.041" x2="14323.5313" y2="-20458.041" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#CF777C"/>
+	<stop  offset="1" style="stop-color:#C46B77"/>
+</linearGradient>
+<polygon fill="url(#SVGID_239_)" points="861.193,655.398 1034.306,745.908 947.169,586.375 "/>
+<linearGradient id="SVGID_240_" gradientUnits="userSpaceOnUse" x1="-17949.0977" y1="-16684.75" x2="-15548.0977" y2="-18747.75" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#DF9779"/>
+	<stop  offset="1" style="stop-color:#DD9777"/>
+</linearGradient>
+<polygon fill="url(#SVGID_240_)" points="185.783,692.73 191.452,693.864 119.027,631.645 "/>
+<linearGradient id="SVGID_241_" gradientUnits="userSpaceOnUse" x1="-17493.1445" y1="-11468.9268" x2="-12983.1445" y2="-18452.9277" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#DF9C7C"/>
+	<stop  offset="1" style="stop-color:#DB9E80"/>
+</linearGradient>
+<polygon fill="url(#SVGID_241_)" points="119.027,631.645 191.452,693.864 246.869,495.864 "/>
+<linearGradient id="SVGID_242_" gradientUnits="userSpaceOnUse" x1="-17760.4375" y1="-18738.5156" x2="-15445.5371" y2="-24605.5156" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#BC6E69"/>
+	<stop  offset="1" style="stop-color:#D89075"/>
+</linearGradient>
+<polygon fill="url(#SVGID_242_)" points="185.783,692.73 125.83,859.039 191.452,693.864 "/>
+<linearGradient id="SVGID_243_" gradientUnits="userSpaceOnUse" x1="-17885.9688" y1="-19318.2578" x2="-14329.9688" y2="-25855.2578" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#B36466"/>
+	<stop  offset="1" style="stop-color:#BD726B"/>
+</linearGradient>
+<polygon fill="url(#SVGID_243_)" points="191.452,693.864 125.83,859.039 237.827,899.773 "/>
+<linearGradient id="SVGID_244_" gradientUnits="userSpaceOnUse" x1="-15055.292" y1="-18830.6387" x2="-10140.8691" y2="-25658.6699" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#B66B69"/>
+	<stop  offset="1" style="stop-color:#D89379"/>
+</linearGradient>
+<polygon fill="url(#SVGID_244_)" points="191.452,693.864 237.827,899.773 339.647,731.197 "/>
+<linearGradient id="SVGID_245_" gradientUnits="userSpaceOnUse" x1="-16574.4492" y1="-12869.1328" x2="-9949.248" y2="-19853.1328" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#DBA587"/>
+	<stop  offset="1" style="stop-color:#E2A583"/>
+</linearGradient>
+<polygon fill="url(#SVGID_245_)" points="246.869,495.864 191.452,693.864 379.247,624.841 "/>
+<linearGradient id="SVGID_246_" gradientUnits="userSpaceOnUse" x1="-15156.4473" y1="-15842.2305" x2="-8531.2471" y2="-19594.2305" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#DFA182"/>
+	<stop  offset="1" style="stop-color:#E2A582"/>
+</linearGradient>
+<polygon fill="url(#SVGID_246_)" points="379.247,624.841 191.452,693.864 339.647,731.197 "/>
+<linearGradient id="SVGID_247_" gradientUnits="userSpaceOnUse" x1="33553.4023" y1="-20039.2148" x2="39260.4023" y2="-24150.2148" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#6D3A70"/>
+	<stop  offset="1" style="stop-color:#7B4477"/>
+</linearGradient>
+<polygon fill="url(#SVGID_247_)" points="1595.452,728.929 1580.74,845.461 1742.514,731.197 "/>
+<linearGradient id="SVGID_248_" gradientUnits="userSpaceOnUse" x1="33809.1953" y1="-20218.625" x2="40562.1953" y2="-25095.625" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#64346E"/>
+	<stop  offset="1" style="stop-color:#643672"/>
+</linearGradient>
+<polygon fill="url(#SVGID_248_)" points="1580.74,845.461 1784.381,878.258 1742.514,731.197 "/>
+<linearGradient id="SVGID_249_" gradientUnits="userSpaceOnUse" x1="34200.2891" y1="-16486.5078" x2="39181.2891" y2="-20011.5078" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#834B79"/>
+	<stop  offset="1" style="stop-color:#824D7C"/>
+</linearGradient>
+<polygon fill="url(#SVGID_249_)" points="1742.514,731.197 1740.246,627.108 1595.452,728.929 "/>
+<linearGradient id="SVGID_250_" gradientUnits="userSpaceOnUse" x1="38867.957" y1="-16782.666" x2="42074.957" y2="-20380.666" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#85527E"/>
+	<stop  offset="1" style="stop-color:#7C497C"/>
+</linearGradient>
+<polygon fill="url(#SVGID_250_)" points="1742.514,731.197 1833.023,671.244 1740.246,627.108 "/>
+<linearGradient id="SVGID_251_" gradientUnits="userSpaceOnUse" x1="39899.5586" y1="-17706.7695" x2="43092.543" y2="-25010.7305" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#603670"/>
+	<stop  offset="1" style="stop-color:#754479"/>
+</linearGradient>
+<polygon fill="url(#SVGID_251_)" points="1784.381,878.258 1833.023,671.244 1742.514,731.197 "/>
+<linearGradient id="SVGID_252_" gradientUnits="userSpaceOnUse" x1="-9146.252" y1="-14157.1143" x2="-2556.251" y2="-21628.1133" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#E6B18C"/>
+	<stop  offset="1" style="stop-color:#DBA387"/>
+</linearGradient>
+<polygon fill="url(#SVGID_252_)" points="379.247,624.841 573.846,767.396 400.733,546.774 "/>
+<linearGradient id="SVGID_253_" gradientUnits="userSpaceOnUse" x1="-9364.1025" y1="-17608.498" x2="-3049.103" y2="-22565.498" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#E2AA89"/>
+	<stop  offset="1" style="stop-color:#D49380"/>
+</linearGradient>
+<polygon fill="url(#SVGID_253_)" points="438.066,777.571 573.846,767.396 379.247,624.841 "/>
+<linearGradient id="SVGID_254_" gradientUnits="userSpaceOnUse" x1="-6661.6177" y1="-12627.0195" x2="2481.3521" y2="-19786.9961" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#E1AC8A"/>
+	<stop  offset="1" style="stop-color:#DA9A82"/>
+</linearGradient>
+<polygon fill="url(#SVGID_254_)" points="400.733,546.774 573.846,767.396 682.441,566.022 "/>
+<linearGradient id="SVGID_255_" gradientUnits="userSpaceOnUse" x1="-5511.2026" y1="-20642.875" x2="-913.1821" y2="-26734.9023" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#C88279"/>
+	<stop  offset="1" style="stop-color:#B36B70"/>
+</linearGradient>
+<polygon fill="url(#SVGID_255_)" points="438.066,777.571 538.753,947.282 573.846,767.396 "/>
+<linearGradient id="SVGID_256_" gradientUnits="userSpaceOnUse" x1="-4172.5303" y1="-22112.6836" x2="-65.5107" y2="-28331.7148" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#995066"/>
+	<stop  offset="1" style="stop-color:#AA626D"/>
+</linearGradient>
+<polygon fill="url(#SVGID_256_)" points="538.753,947.282 657.553,930.303 573.846,767.396 "/>
+<linearGradient id="SVGID_257_" gradientUnits="userSpaceOnUse" x1="-1012.1465" y1="-18942.7266" x2="4654.853" y2="-26405.7266" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#A35B69"/>
+	<stop  offset="1" style="stop-color:#CA8075"/>
+</linearGradient>
+<polygon fill="url(#SVGID_257_)" points="573.846,767.396 657.553,930.303 734.485,718.753 "/>
+<linearGradient id="SVGID_258_" gradientUnits="userSpaceOnUse" x1="-2509.6323" y1="-14713.3857" x2="3157.3672" y2="-21817.3867" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#DB9A80"/>
+	<stop  offset="1" style="stop-color:#D48A79"/>
+</linearGradient>
+<polygon fill="url(#SVGID_258_)" points="573.846,767.396 734.485,718.753 682.441,566.022 "/>
+<linearGradient id="SVGID_259_" gradientUnits="userSpaceOnUse" x1="-22074.332" y1="6065.6396" x2="-19428.8223" y2="5073.5713" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#6259A5"/>
+	<stop  offset="1" style="stop-color:#6056A1"/>
+</linearGradient>
+<polygon fill="url(#SVGID_259_)" points="0,-1.361 0,8.873 81.694,-1.361 "/>
+<linearGradient id="SVGID_260_" gradientUnits="userSpaceOnUse" x1="12805.7607" y1="6228.8086" x2="16921.7988" y2="1877.3179" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#6460A7"/>
+	<stop  offset="1" style="stop-color:#5D5DA5"/>
+</linearGradient>
+<polygon fill="url(#SVGID_260_)" points="1030.904,121.408 1095.052,-1.361 1089.439,-1.361 977.726,43.342 "/>
+<linearGradient id="SVGID_261_" gradientUnits="userSpaceOnUse" x1="8428.5459" y1="5231.5156" x2="12259.5137" y2="2013.0928" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#6267AC"/>
+	<stop  offset="1" style="stop-color:#6767AA"/>
+</linearGradient>
+<polygon fill="url(#SVGID_261_)" points="977.726,43.342 864.596,12.784 906.463,107.83 "/>
+<linearGradient id="SVGID_262_" gradientUnits="userSpaceOnUse" x1="9847.4385" y1="3785.209" x2="13798.4072" y2="1306.728" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#6B69AA"/>
+	<stop  offset="1" style="stop-color:#6764A8"/>
+</linearGradient>
+<polygon fill="url(#SVGID_262_)" points="1030.904,121.408 977.726,43.342 906.463,107.83 "/>
+<linearGradient id="SVGID_263_" gradientUnits="userSpaceOnUse" x1="43260.043" y1="-30056.3418" x2="45803.0742" y2="-31099.3535" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#341C59"/>
+	<stop  offset="1" style="stop-color:#341C59"/>
+</linearGradient>
+<polygon fill="url(#SVGID_263_)" points="1920.699,1059.676 1920.699,1021.181 1852.242,1027.615 "/>
+<linearGradient id="SVGID_264_" gradientUnits="userSpaceOnUse" x1="43150.2773" y1="-28204.8125" x2="45565.375" y2="-30549.9063" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#3A1F5D"/>
+	<stop  offset="1" style="stop-color:#462867"/>
+</linearGradient>
+<polygon fill="url(#SVGID_264_)" points="1920.699,1021.181 1920.699,961.144 1852.242,1027.615 "/>
+<linearGradient id="SVGID_265_" gradientUnits="userSpaceOnUse" x1="38855.0586" y1="-30516.4629" x2="43136.0938" y2="-32419.4785" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#2A1650"/>
+	<stop  offset="1" style="stop-color:#2D1854"/>
+</linearGradient>
+<polygon fill="url(#SVGID_265_)" points="1730.069,1079.66 1845.751,1079.66 1852.242,1027.615 "/>
+<linearGradient id="SVGID_266_" gradientUnits="userSpaceOnUse" x1="42773.0195" y1="-31203.002" x2="45229.0195" y2="-32590.002" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#311A56"/>
+	<stop  offset="1" style="stop-color:#2D1854"/>
+</linearGradient>
+<polygon fill="url(#SVGID_266_)" points="1920.699,1059.676 1852.242,1027.615 1845.751,1079.66 1862.957,1079.66 
+	1920.699,1072.177 "/>
+<linearGradient id="SVGID_267_" gradientUnits="userSpaceOnUse" x1="43914.1289" y1="-31837.2246" x2="45179.1055" y2="-32670.209" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#2A1652"/>
+	<stop  offset="1" style="stop-color:#2A1652"/>
+</linearGradient>
+<polygon fill="url(#SVGID_267_)" points="1920.699,1072.177 1862.957,1079.66 1920.699,1079.66 "/>
+<linearGradient id="SVGID_268_" gradientUnits="userSpaceOnUse" x1="1986.4883" y1="5923.4697" x2="2768.4453" y2="4917.4648" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#6469AE"/>
+	<stop  offset="1" style="stop-color:#6064AC"/>
+</linearGradient>
+<polygon fill="url(#SVGID_268_)" points="713.905,-1.361 687.6,-1.361 679.039,17.32 "/>
+<linearGradient id="SVGID_269_" gradientUnits="userSpaceOnUse" x1="2218.5908" y1="6079.7061" x2="4052.6162" y2="4212.2603" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#666BAF"/>
+	<stop  offset="1" style="stop-color:#6469AE"/>
+</linearGradient>
+<polygon fill="url(#SVGID_269_)" points="739.021,47.877 741.6,-1.361 713.905,-1.361 679.039,17.32 "/>
+<linearGradient id="SVGID_270_" gradientUnits="userSpaceOnUse" x1="3886.002" y1="5765.4248" x2="8098.002" y2="3602.9446" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#6669AE"/>
+	<stop  offset="1" style="stop-color:#6267AC"/>
+</linearGradient>
+<polygon fill="url(#SVGID_270_)" points="864.596,12.784 805.861,-1.361 741.6,-1.361 739.021,47.877 "/>
+<linearGradient id="SVGID_271_" gradientUnits="userSpaceOnUse" x1="6336.4971" y1="6050.5557" x2="8351.0459" y2="5379.106" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#5E62AC"/>
+	<stop  offset="1" style="stop-color:#6064AC"/>
+</linearGradient>
+<polygon fill="url(#SVGID_271_)" points="862.64,-1.361 805.861,-1.361 864.596,12.784 "/>
+<linearGradient id="SVGID_272_" gradientUnits="userSpaceOnUse" x1="8249.3848" y1="5768.5605" x2="9182.3496" y2="5261.54" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#5D62AA"/>
+	<stop  offset="1" style="stop-color:#5D60AA"/>
+</linearGradient>
+<polygon fill="url(#SVGID_272_)" points="889.2,-1.361 862.64,-1.361 864.596,12.784 "/>
+<linearGradient id="SVGID_273_" gradientUnits="userSpaceOnUse" x1="9175.5225" y1="6267.1602" x2="11854.5225" y2="4204.02" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#6064AC"/>
+	<stop  offset="1" style="stop-color:#5D60A8"/>
+</linearGradient>
+<polygon fill="url(#SVGID_273_)" points="977.726,43.342 970.186,-1.361 889.2,-1.361 864.596,12.784 "/>
+<linearGradient id="SVGID_274_" gradientUnits="userSpaceOnUse" x1="12340.2627" y1="6220.5996" x2="16013.2305" y2="3824.1709" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#6060A8"/>
+	<stop  offset="1" style="stop-color:#5959A5"/>
+</linearGradient>
+<polygon fill="url(#SVGID_274_)" points="1089.439,-1.361 970.186,-1.361 977.726,43.342 "/>
+<linearGradient id="SVGID_275_" gradientUnits="userSpaceOnUse" x1="24321.0547" y1="5940.6904" x2="26263.0879" y2="5036.5547" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#4D499A"/>
+	<stop  offset="1" style="stop-color:#4D4697"/>
+</linearGradient>
+<polygon fill="url(#SVGID_275_)" points="1371.6,-1.361 1315.984,-1.361 1340.9,22.989 "/>
+<linearGradient id="SVGID_276_" gradientUnits="userSpaceOnUse" x1="25758.582" y1="6241.9111" x2="28085.5527" y2="4399.7939" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#50499A"/>
+	<stop  offset="1" style="stop-color:#4B4697"/>
+</linearGradient>
+<polygon fill="url(#SVGID_276_)" points="1434.784,20.721 1443.571,-1.361 1371.6,-1.361 1340.9,22.989 "/>
+<linearGradient id="SVGID_277_" gradientUnits="userSpaceOnUse" x1="29429.4258" y1="6008.1182" x2="30641.4258" y2="4712.998" gradientTransform="matrix(0.0283 0 0 -0.0283 629.0828 161.6354)">
+	<stop  offset="0" style="stop-color:#4D4999"/>
+	<stop  offset="1" style="stop-color:#494293"/>
+</linearGradient>
+<polygon fill="url(#SVGID_277_)" points="1526.173,-1.361 1443.571,-1.361 1434.784,20.721 "/>
 </svg>

+ 0 - 2029
web/img/public/auth_bg_2.svg

@@ -1,2029 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE svg  PUBLIC '-//W3C//DTD SVG 1.1//EN'  'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd' [
-	<!ENTITY ns_extend "http://ns.adobe.com/Extensibility/1.0/">
-	<!ENTITY ns_ai "http://ns.adobe.com/AdobeIllustrator/10.0/">
-	<!ENTITY ns_graphs "http://ns.adobe.com/Graphs/1.0/">
-	<!ENTITY ns_vars "http://ns.adobe.com/Variables/1.0/">
-	<!ENTITY ns_imrep "http://ns.adobe.com/ImageReplacement/1.0/">
-	<!ENTITY ns_sfw "http://ns.adobe.com/SaveForWeb/1.0/">
-	<!ENTITY ns_custom "http://ns.adobe.com/GenericCustomNamespace/1.0/">
-	<!ENTITY ns_adobe_xpath "http://ns.adobe.com/XPath/1.0/">
-]>
-<svg enable-background="new 0 0 1920 1080" version="1.1" viewBox="0 0 1920 1080" xml:space="preserve" xmlns="http://www.w3.org/2000/svg">
-<switch>
-	<foreignObject width="1" height="1" requiredExtensions="http://ns.adobe.com/AdobeIllustrator/10.0/">
-	</foreignObject>
-	<g>
-					<linearGradient id="th" x1="-2.5186" x2="-1.2917" y1="1082.8" y2="1081.6" gradientTransform="matrix(98 0 0 -125 1630 135865)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#1277B9" offset="0"/>
-					<stop stop-color="#0D5DB0" offset="1"/>
-				</linearGradient>
-				<polygon points="1374.7 527.14 1470.3 680.56 1494.8 605.69" fill="url(#th)"/>
-					<linearGradient id="xt" x1="-3.0068" x2="-1.78" y1="1084.9" y2="1083.7" gradientTransform="matrix(126 0 0 -75 1070 81374)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#16C6D6" offset="0"/>
-					<stop stop-color="#17C0D2" offset="1"/>
-				</linearGradient>
-				<polygon points="876.79 76.709 776.33 0 752.39 0 722.28 77.937" fill="url(#xt)"/>
-					<linearGradient id="ace" x1="-4.687" x2="-3.4601" y1="1084.6" y2="1083.3" gradientTransform="matrix(77 0 0 -68 1333 74069)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#EBA87D" offset="0"/>
-					<stop stop-color="#F1AC7B" offset="1"/>
-				</linearGradient>
-				<polygon points="1028.9 307.45 984.71 390.91 1079.1 367.59" fill="url(#ace)"/>
-					<linearGradient id="acs" x1="-.8896" x2=".337" y1="1083.1" y2="1081.8" gradientTransform="matrix(148 0 0 -77 1749 84295)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#4D0280" offset="0"/>
-					<stop stop-color="#51037B" offset="1"/>
-				</linearGradient>
-				<polygon points="1581.9 924.8 1763.4 1011.9 1737.6 917.44" fill="url(#acs)"/>
-					<linearGradient id="ade" x1="-2.6802" x2="-1.4534" y1="1081.8" y2="1080.6" gradientTransform="matrix(79 0 0 -135 1966 147070)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#AE08A9" offset="0"/>
-					<stop stop-color="#8C0590" offset="1"/>
-				</linearGradient>
-				<polygon points="1763.4 1011.9 1766.5 1080 1803.2 1080" fill="url(#ade)"/>
-					<linearGradient id="adp" x1="-12.508" x2="-11.282" y1="1082.7" y2="1081.4" gradientTransform="matrix(44 0 0 -131 671 142173)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#B94740" offset="0"/>
-					<stop stop-color="#934952" offset="1"/>
-				</linearGradient>
-				<polygon points="186.4 448.59 132.44 308.68 132.44 469.46" fill="url(#adp)"/>
-					<linearGradient id="op" x1="-8.4731" x2="-7.2459" y1="1082.9" y2="1081.7" gradientTransform="matrix(63 0 0 -131 588.9688 142173)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#CB4E3B" offset="0"/>
-					<stop stop-color="#A5514E" offset="1"/>
-				</linearGradient>
-				<polygon points="132.44 308.68 55.183 469.46 132.44 469.46" fill="url(#op)"/>
-					<linearGradient id="sm" x1="-1.1606" x2=".0659" y1="1082" y2="1080.8" gradientTransform="matrix(118 0 0 -172 1927 187030)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#7D047F" offset="0"/>
-					<stop stop-color="#7A0483" offset="1"/>
-				</linearGradient>
-				<polygon points="1763.4 1011.9 1803.2 1080 1882.4 1080 1908.1 966.53" fill="url(#sm)"/>
-					<linearGradient id="adx" x1="-2.0313" x2="-.8044" y1="1085.5" y2="1084.3" gradientTransform="matrix(120 0 0 -55 1687 59990)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#15A5DE" offset="0"/>
-					<stop stop-color="#11BAE3" offset="1"/>
-				</linearGradient>
-				<polygon points="1494.8 338.13 1618.7 343.04 1471.5 275.54" fill="url(#adx)"/>
-					<linearGradient id="ph" x1="-1.6533" x2="-.4262" y1="1081.8" y2="1080.5" gradientTransform="matrix(99 0 0 -172 2025 187030)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#800489" offset="0"/>
-					<stop stop-color="#650276" offset="1"/>
-				</linearGradient>
-				<polygon points="1882.4 1080 1924 1080 1924 1001.1 1908.1 966.53" fill="url(#ph)"/>
-					<linearGradient id="pt" x1="-2.0015" x2="-.7745" y1="1083.7" y2="1082.4" gradientTransform="matrix(143 0 0 -41 1409.9 45471)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#DC0CCC" offset="0"/>
-					<stop stop-color="#D70CCB" offset="1"/>
-				</linearGradient>
-				<polygon points="1160.1 1078.2 1287.4 1080 1333.4 1080 1182.1 1030.4" fill="url(#pt)"/>
-					<linearGradient id="qe" x1="-2.0723" x2="-.8454" y1="1085.3" y2="1084" gradientTransform="matrix(101 0 0 -61 1725 66527)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#12BEE3" offset="0"/>
-					<stop stop-color="#10C9E5" offset="1"/>
-				</linearGradient>
-				<polygon points="1586.8 413 1618.7 343.04 1494.8 338.13" fill="url(#qe)"/>
-					<linearGradient id="qq" x1="-3.5088" x2="-2.2822" y1="1082.5" y2="1081.3" gradientTransform="matrix(73 0 0 -144 1797 156311)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#0BB1D6" offset="0"/>
-					<stop stop-color="#0ECBE2" offset="1"/>
-				</linearGradient>
-				<polygon points="1548.8 589.74 1638.3 475.6 1586.8 413" fill="url(#qq)"/>
-					<linearGradient id="rb" x1="-4.4194" x2="-3.1927" y1="1085.4" y2="1084.2" gradientTransform="matrix(91 0 0 -49 1125 53634)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#943790" offset="0"/>
-					<stop stop-color="#A04D86" offset="1"/>
-				</linearGradient>
-				<polygon points="858.4 486.64 749.26 435.09 746.81 495.23" fill="url(#rb)"/>
-					<linearGradient id="rn" x1="-2.248" x2="-1.0213" y1="1083.4" y2="1082.1" gradientTransform="matrix(146 0 0 -136 1079 147253)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#0DB9D4" offset="0"/>
-					<stop stop-color="#11AACA" offset="1"/>
-				</linearGradient>
-				<polygon points="904.41 0 776.33 0 876.79 76.709" fill="url(#rn)"/>
-					<linearGradient id="ry" x1="-5.6982" x2="-4.4712" y1="1085.9" y2="1084.7" gradientTransform="matrix(72 0 0 -62 1052 67385)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#23B8CB" offset="0"/>
-					<stop stop-color="#1CC0D2" offset="1"/>
-				</linearGradient>
-				<polygon points="680.59 140.53 722.28 77.937 633.99 64.435" fill="url(#ry)"/>
-					<linearGradient id="sj" x1="-3.2158" x2="-1.9889" y1="1085.7" y2="1084.5" gradientTransform="matrix(96 0 0 -56 1350 61090)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#E8A27E" offset="0"/>
-					<stop stop-color="#E49C7C" offset="1"/>
-				</linearGradient>
-				<polygon points="1146.6 298.86 1028.9 307.45 1079.1 367.59" fill="url(#sj)"/>
-					<linearGradient id="sv" x1="-5.0645" x2="-3.8376" y1="1082.9" y2="1081.7" gradientTransform="matrix(84 0 0 -91 997 99225)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#D021E3" offset="0"/>
-					<stop stop-color="#DD2BE4" offset="1"/>
-				</linearGradient>
-				<polygon points="636.44 667.06 581.26 778.75 684.27 708.79" fill="url(#sv)"/>
-					<linearGradient id="tg" x1="-4.4814" x2="-3.2548" y1="1085.9" y2="1084.6" gradientTransform="matrix(91 0 0 -62 980 67385)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#2BB2C4" offset="0"/>
-					<stop stop-color="#35AEBF" offset="1"/>
-				</linearGradient>
-				<polygon points="633.99 64.435 569 100.03 680.59 140.53" fill="url(#tg)"/>
-					<linearGradient id="tt" x1="-2.0513" x2="-.8242" y1="1083.6" y2="1082.3" gradientTransform="matrix(136 0 0 -98 1351 106492)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#E5A480" offset="0"/>
-					<stop stop-color="#BC948B" offset="1"/>
-				</linearGradient>
-				<polygon points="1245.9 419.14 1146.6 298.86 1079.1 367.59" fill="url(#tt)"/>
-					<linearGradient id="ue" x1="-3.5986" x2="-2.3728" y1="1083.1" y2="1081.9" gradientTransform="matrix(70 0 0 -75 1793 82064)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#510389" offset="0"/>
-					<stop stop-color="#380587" offset="1"/>
-				</linearGradient>
-				<polygon points="1540.2 921.12 1581.9 924.8 1626.1 832.75" fill="url(#ue)"/>
-					<linearGradient id="uq" x1="-1.7017" x2="-.4748" y1="1082.9" y2="1081.6" gradientTransform="matrix(127 0 0 -75 1770 82064)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#3F0383" offset="0"/>
-					<stop stop-color="#290582" offset="1"/>
-				</linearGradient>
-				<polygon points="1626.1 832.75 1581.9 924.8 1737.6 917.44" fill="url(#uq)"/>
-					<linearGradient id="vb" x1="-9.5664" x2="-8.3397" y1="1083.1" y2="1081.9" gradientTransform="matrix(56 0 0 -123 659 133402)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#5A6D80" offset="0"/>
-					<stop stop-color="#488297" offset="1"/>
-				</linearGradient>
-				<polygon points="133.66 157.71 132.44 308.68 201.11 237.49" fill="url(#vb)"/>
-					<linearGradient id="vm" x1="-4.7979" x2="-3.571" y1="1085.5" y2="1084.2" gradientTransform="matrix(98 0 0 -65 618 70704)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#427992" offset="0"/>
-					<stop stop-color="#45879A" offset="1"/>
-				</linearGradient>
-				<polygon points="133.66 157.71 201.11 237.49 253.84 165.08" fill="url(#vm)"/>
-					<linearGradient id="vy" x1="-2.3613" x2="-1.1333" y1="1082.3" y2="1081.1" gradientTransform="matrix(88 0 0 -135 2068 146550)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#061468" offset="0"/>
-					<stop stop-color="#081372" offset="1"/>
-				</linearGradient>
-				<polygon points="1924 517.38 1924 486.82 1899.5 539.42" fill="url(#vy)"/>
-					<linearGradient id="wj" x1="-6.2588" x2="-5.0316" y1="1082.7" y2="1081.5" gradientTransform="matrix(78 0 0 -139 681 150935)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#AF3541" offset="0"/>
-					<stop stop-color="#A62E46" offset="1"/>
-				</linearGradient>
-				<polygon points="186.4 448.59 221.96 619.19 282.05 465.78" fill="url(#wj)"/>
-					<linearGradient id="wv" x1="-1.8633" x2="-.6366" y1="1083.8" y2="1082.6" gradientTransform="matrix(99 0 0 -102 1978 110626)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#0A1398" offset="0"/>
-					<stop stop-color="#051C96" offset="1"/>
-				</linearGradient>
-				<polygon points="1855.4 190.85 1924 157.71 1802.6 65.663" fill="url(#wv)"/>
-					<linearGradient id="xg" x1="-2.5439" x2="-1.3168" y1="1082.8" y2="1081.6" gradientTransform="matrix(79 0 0 -80 1945 87535)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#3E0277" offset="0"/>
-					<stop stop-color="#530377" offset="1"/>
-				</linearGradient>
-				<polygon points="1737.6 917.44 1763.4 1011.9 1834.5 913.75" fill="url(#xg)"/>
-					<linearGradient id="xs" x1="-1.5439" x2="-.3172" y1="1082.6" y2="1081.4" gradientTransform="matrix(118 0 0 -80 1927 87535)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#660378" offset="0"/>
-					<stop stop-color="#510273" offset="1"/>
-				</linearGradient>
-				<polygon points="1834.5 913.75 1763.4 1011.9 1908.1 966.53" fill="url(#xs)"/>
-					<linearGradient id="ye" x1="-1.8408" x2="-.614" y1="1084.3" y2="1083.1" gradientTransform="matrix(135 0 0 -39 1301 43309)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#D30ACA" offset="0"/>
-					<stop stop-color="#D90DCE" offset="1"/>
-				</linearGradient>
-				<polygon points="1160.1 1078.2 1182.1 1030.4 1016.6 1035.3" fill="url(#ye)"/>
-					<linearGradient id="yp" x1="-3.5371" x2="-2.3105" y1="1083.5" y2="1082.3" gradientTransform="matrix(85 0 0 -97 1453 105509)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#9E7E89" offset="0"/>
-					<stop stop-color="#AF948F" offset="1"/>
-				</linearGradient>
-				<polygon points="1215.2 538.19 1245.9 419.14 1141.7 489.1" fill="url(#yp)"/>
-					<linearGradient id="zb" x1="-2.0142" x2="-.7876" y1="1083.4" y2="1082.2" gradientTransform="matrix(136 0 0 -99 1351 107629)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#E5A881" offset="0"/>
-					<stop stop-color="#BE9B8C" offset="1"/>
-				</linearGradient>
-				<polygon points="1245.9 419.14 1079.1 367.59 1141.7 489.1" fill="url(#zb)"/>
-					<linearGradient id="zm" x1="-3.4023" x2="-2.1754" y1="1082.2" y2="1081" gradientTransform="matrix(74 0 0 -140 1715 152401)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#A806A2" offset="0"/>
-					<stop stop-color="#9405A0" offset="1"/>
-				</linearGradient>
-				<polygon points="1449.5 929.71 1498 1080 1505.1 1080 1540.2 921.12" fill="url(#zm)"/>
-					<linearGradient id="zy" x1="-4.0469" x2="-2.8205" y1="1082" y2="1080.8" gradientTransform="matrix(65 0 0 -140 1767 1.524e5)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#780391" offset="0"/>
-					<stop stop-color="#850499" offset="1"/>
-				</linearGradient>
-				<polygon points="1540.2 921.12 1505.1 1080 1508.3 1080 1581.9 924.8" fill="url(#zy)"/>
-					<linearGradient id="aaj" x1="-9.9424" x2="-8.7159" y1="1087" y2="1085.8" gradientTransform="matrix(55 0 0 -38 542 41771)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#E95530" offset="0"/>
-					<stop stop-color="#E45032" offset="1"/>
-				</linearGradient>
-				<polygon points="55.183 469.46 0 493.56 0 503.82 30.657 516.1" fill="url(#aaj)"/>
-					<linearGradient id="aav" x1="-9.0986" x2="-7.8711" y1="1084" y2="1082.7" gradientTransform="matrix(58 0 0 -77 642.97 83913)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#D04B39" offset="0"/>
-					<stop stop-color="#CD4C39" offset="1"/>
-				</linearGradient>
-				<polygon points="132.44 469.46 115.27 543.1 186.4 448.59" fill="url(#aav)"/>
-					<linearGradient id="abg" x1="-5.6982" x2="-4.4717" y1="1082.7" y2="1081.4" gradientTransform="matrix(87 0 0 -139 614 150935)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#C2423D" offset="0"/>
-					<stop stop-color="#DA4E38" offset="1"/>
-				</linearGradient>
-				<polygon points="115.27 543.1 221.96 619.19 186.4 448.59" fill="url(#abg)"/>
-					<linearGradient id="abr" x1="-7.8203" x2="-6.5934" y1="1084.6" y2="1083.4" gradientTransform="matrix(69 0 0 -60 562.97 65553)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#E95931" offset="0"/>
-					<stop stop-color="#E55933" offset="1"/>
-				</linearGradient>
-				<polygon points="55.183 469.46 30.657 516.1 115.27 543.1" fill="url(#abr)"/>
-					<linearGradient id="acd" x1="-7.627" x2="-6.3999" y1="1082.7" y2="1081.4" gradientTransform="matrix(69 0 0 -136 562.9688 147747)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#EE6130" offset="0"/>
-					<stop stop-color="#EC6531" offset="1"/>
-				</linearGradient>
-				<polygon points="30.657 516.1 68.672 683.02 115.27 543.1" fill="url(#acd)"/>
-					<linearGradient id="aci" x1="-8.2344" x2="-7.0074" y1="1085" y2="1083.7" gradientTransform="matrix(63 0 0 -60 588.97 65553)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#DF5335" offset="0"/>
-					<stop stop-color="#DD5536" offset="1"/>
-				</linearGradient>
-				<polygon points="132.44 469.46 55.183 469.46 115.27 543.1" fill="url(#aci)"/>
-					<linearGradient id="acj" x1="-3.9224" x2="-2.6955" y1="1082.7" y2="1081.4" gradientTransform="matrix(125 0 0 -114 538 123987)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#EC6730" offset="0"/>
-					<stop stop-color="#E15736" offset="1"/>
-				</linearGradient>
-				<polygon points="115.27 543.1 68.672 683.02 221.96 619.19" fill="url(#acj)"/>
-					<linearGradient id="ack" x1="-7.0249" x2="-5.7984" y1="1083.6" y2="1082.4" gradientTransform="matrix(65 0 0 -114 892.9688 123636)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#845D72" offset="0"/>
-					<stop stop-color="#766881" offset="1"/>
-				</linearGradient>
-				<polygon points="510.14 252.22 505.23 112.3 430.43 201.9" fill="url(#ack)"/>
-					<linearGradient id="acl" x1="-8.8569" x2="-7.6298" y1="1083.4" y2="1082.2" gradientTransform="matrix(52 0 0 -124 967 134436)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#7B838B" offset="0"/>
-					<stop stop-color="#5F7A95" offset="1"/>
-				</linearGradient>
-				<polygon points="569 100.03 505.23 112.3 510.14 252.22" fill="url(#acl)"/>
-					<linearGradient id="acm" x1="-2.2847" x2="-1.0584" y1="1085.3" y2="1084.1" gradientTransform="matrix(113 0 0 -60 1540 65399)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#4B6FA8" offset="0"/>
-					<stop stop-color="#3882BB" offset="1"/>
-				</linearGradient>
-				<polygon points="1421.3 287.81 1282.7 280.45 1293.7 354.09" fill="url(#acm)"/>
-					<linearGradient id="acn" x1="-4.5957" x2="-3.3689" y1="1086.2" y2="1085" gradientTransform="matrix(60 0 0 -51 1706 55666)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#1798D9" offset="0"/>
-					<stop stop-color="#169CD8" offset="1"/>
-				</linearGradient>
-				<polygon points="1471.5 275.54 1421.3 287.81 1494.8 338.13" fill="url(#acn)"/>
-					<linearGradient id="aco" x1="-8.4541" x2="-7.2277" y1="1082.2" y2="1081" gradientTransform="matrix(38 0 0 -111 1658 121083)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#D90ECA" offset="0"/>
-					<stop stop-color="#D40DC2" offset="1"/>
-				</linearGradient>
-				<polygon points="1335.7 1080 1365.7 1080 1382 959.17" fill="url(#aco)"/>
-					<linearGradient id="acp" x1="-2.3716" x2="-1.1448" y1="1082" y2="1080.7" gradientTransform="matrix(113 0 0 -111 1606 121083)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#CF0BC4" offset="0"/>
-					<stop stop-color="#C60AB7" offset="1"/>
-				</linearGradient>
-				<polygon points="1365.7 1080 1490.6 1080 1382 959.17" fill="url(#acp)"/>
-					<linearGradient id="acq" x1="-2.4756" x2="-1.2489" y1="1082.2" y2="1080.9" gradientTransform="matrix(98 0 0 -133 1636 144841)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#B708AA" offset="0"/>
-					<stop stop-color="#C30AB3" offset="1"/>
-				</linearGradient>
-				<polygon points="1382 959.17 1490.6 1080 1498 1080 1449.5 929.71" fill="url(#acq)"/>
-					<linearGradient id="acr" x1="-2.4307" x2="-1.2036" y1="1082.4" y2="1081.2" gradientTransform="matrix(112 0 0 -114 1509 124167)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#CA0BAF" offset="0"/>
-					<stop stop-color="#A90A9D" offset="1"/>
-				</linearGradient>
-				<polygon points="1243.5 875.71 1380.8 903.94 1326.8 764.02" fill="url(#acr)"/>
-					<linearGradient id="act" x1="-5.4268" x2="-4.2002" y1="1084" y2="1082.8" gradientTransform="matrix(56 0 0 -45 1677 49692)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#CB0CB1" offset="0"/>
-					<stop stop-color="#BA0AA7" offset="1"/>
-				</linearGradient>
-				<polygon points="1382 959.17 1449.5 929.71 1380.8 903.94" fill="url(#act)"/>
-					<linearGradient id="acu" x1="-2.522" x2="-1.2955" y1="1082.9" y2="1081.6" gradientTransform="matrix(91 0 0 -120 1779 130418)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#09A4D2" offset="0"/>
-					<stop stop-color="#09A6D6" offset="1"/>
-				</linearGradient>
-				<polygon points="1660.4 622.88 1638.3 475.6 1548.8 589.74" fill="url(#acu)"/>
-					<linearGradient id="acv" x1="-3.96" x2="-2.7333" y1="1082.8" y2="1081.6" gradientTransform="matrix(62 0 0 -120 1881 1.3042e5)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#09BBDD" offset="0"/>
-					<stop stop-color="#0696D2" offset="1"/>
-				</linearGradient>
-				<polygon points="1714.3 540.64 1638.3 475.6 1660.4 622.88" fill="url(#acv)"/>
-					<linearGradient id="acx" x1="-4.7637" x2="-3.5368" y1="1082.6" y2="1081.4" gradientTransform="matrix(101 0 0 -125 687 135815)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#B02F47" offset="0"/>
-					<stop stop-color="#77195B" offset="1"/>
-				</linearGradient>
-				<polygon points="282.05 465.78 221.96 619.19 345.81 557.83" fill="url(#acx)"/>
-					<linearGradient id="acy" x1="-5.4961" x2="-4.2694" y1="1083.5" y2="1082.3" gradientTransform="matrix(83 0 0 -99 754 107685)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#64165E" offset="0"/>
-					<stop stop-color="#501073" offset="1"/>
-				</linearGradient>
-				<polygon points="282.05 465.78 345.81 557.83 383.83 436.32" fill="url(#acy)"/>
-					<linearGradient id="acz" x1="-5.6289" x2="-4.4021" y1="1083.2" y2="1082" gradientTransform="matrix(83 0 0 -99 806 107685)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#3D0D84" offset="0"/>
-					<stop stop-color="#440D89" offset="1"/>
-				</linearGradient>
-				<polygon points="383.83 436.32 345.81 557.83 447.59 469.46" fill="url(#acz)"/>
-					<linearGradient id="ada" x1="-7.8716" x2="-6.6443" y1="1085.7" y2="1084.5" gradientTransform="matrix(39 0 0 -57 1727 62105)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#1B82D0" offset="0"/>
-					<stop stop-color="#1C7DD2" offset="1"/>
-				</linearGradient>
-				<polygon points="1469.1 257.13 1464.2 217.85 1421.3 287.81" fill="url(#ada)"/>
-					<linearGradient id="adb" x1="-7.4248" x2="-6.1976" y1="1091.5" y2="1090.3" gradientTransform="matrix(41 0 0 -25 1725 27545)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#1A88D1" offset="0"/>
-					<stop stop-color="#188DD6" offset="1"/>
-				</linearGradient>
-				<polygon points="1469.1 257.13 1421.3 287.81 1471.5 275.54" fill="url(#adb)"/>
-					<linearGradient id="adc" x1="-1.8149" x2="-.5882" y1="1084.7" y2="1083.5" gradientTransform="matrix(122 0 0 -70 1683 76190)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#169FDD" offset="0"/>
-					<stop stop-color="#14A8DF" offset="1"/>
-				</linearGradient>
-				<polygon points="1618.7 343.04 1469.1 257.13 1471.5 275.54" fill="url(#adc)"/>
-					<linearGradient id="add" x1="-5.7773" x2="-4.5505" y1="1082.2" y2="1081" gradientTransform="matrix(75 0 0 -164 1019 177974)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#6112C4" offset="0"/>
-					<stop stop-color="#B819DA" offset="1"/>
-				</linearGradient>
-				<polygon points="597.2 465.78 636.44 667.06 689.17 652.33" fill="url(#add)"/>
-					<linearGradient id="adf" x1="-10.16" x2="-8.9327" y1="1085.4" y2="1084.1" gradientTransform="matrix(43 0 0 -46 1083 50568)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#CD1DE1" offset="0"/>
-					<stop stop-color="#DA22E1" offset="1"/>
-				</linearGradient>
-				<polygon points="636.44 667.06 684.27 708.79 689.17 652.33" fill="url(#adf)"/>
-					<linearGradient id="adg" x1="-8.3428" x2="-7.1153" y1="1086.1" y2="1084.8" gradientTransform="matrix(55 0 0 -60 964 65202)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#768D91" offset="0"/>
-					<stop stop-color="#599BA5" offset="1"/>
-				</linearGradient>
-				<polygon points="572.68 38.661 505.23 112.3 569 100.03" fill="url(#adg)"/>
-					<linearGradient id="adh" x1="-8.6011" x2="-7.3746" y1="1086.9" y2="1085.7" gradientTransform="matrix(53 0 0 -50 1018 54392)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#4BA1AF" offset="0"/>
-					<stop stop-color="#40A7B5" offset="1"/>
-				</linearGradient>
-				<polygon points="633.99 64.435 572.68 38.661 569 100.03" fill="url(#adh)"/>
-					<linearGradient id="adi" x1="-38.966" x2="-37.739" y1="1082.8" y2="1081.6" gradientTransform="matrix(15 0 0 -78 619 85399)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#8B0A4C" offset="0"/>
-					<stop stop-color="#870753" offset="1"/>
-				</linearGradient>
-				<polygon points="33.11 945.67 44.146 1041.4 51.504 973.89" fill="url(#adi)"/>
-					<linearGradient id="adj" x1="-3.8687" x2="-2.642" y1="1084.1" y2="1082.9" gradientTransform="matrix(79 0 0 -99 1540 107295)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#25177A" offset="0"/>
-					<stop stop-color="#351A87" offset="1"/>
-				</linearGradient>
-				<polygon points="1337.9 79.164 1274.8 0 1258.4 0 1269.2 26.388" fill="url(#adj)"/>
-					<linearGradient id="adk" x1="-5.3652" x2="-4.1382" y1="1082.1" y2="1080.9" gradientTransform="matrix(49 0 0 -156 1884 169469)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#121196" offset="0"/>
-					<stop stop-color="#0B2EA7" offset="1"/>
-				</linearGradient>
-				<polygon points="1666.5 641.28 1626.1 832.75 1686.1 822.93" fill="url(#adk)"/>
-					<linearGradient id="adl" x1="-2.2412" x2="-1.0144" y1="1083.2" y2="1082" gradientTransform="matrix(91 0 0 -77 1842 84218)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#1A0889" offset="0"/>
-					<stop stop-color="#210685" offset="1"/>
-				</linearGradient>
-				<polygon points="1626.1 832.75 1737.6 917.44 1686.1 822.93" fill="url(#adl)"/>
-					<linearGradient id="adm" x1="-12.022" x2="-10.795" y1="1083.9" y2="1082.7" gradientTransform="matrix(29 0 0 -86 1604 93505)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#6275A0" offset="0"/>
-					<stop stop-color="#688AA7" offset="1"/>
-				</linearGradient>
-				<polygon points="1293.7 354.09 1282.7 280.45 1258.2 386" fill="url(#adm)"/>
-					<linearGradient id="adn" x1="-3.2954" x2="-2.0685" y1="1083.7" y2="1082.4" gradientTransform="matrix(91 0 0 -98 1451 106492)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#C08E88" offset="0"/>
-					<stop stop-color="#90949E" offset="1"/>
-				</linearGradient>
-				<polygon points="1258.2 386 1146.6 298.86 1245.9 419.14" fill="url(#adn)"/>
-					<linearGradient id="ado" x1="-2.312" x2="-1.0852" y1="1084.3" y2="1083" gradientTransform="matrix(111 0 0 -86 1431 93505)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#B88486" offset="0"/>
-					<stop stop-color="#7D7E9A" offset="1"/>
-				</linearGradient>
-				<polygon points="1282.7 280.45 1146.6 298.86 1258.2 386" fill="url(#ado)"/>
-					<linearGradient id="adq" x1="-2.0923" x2="-.8656" y1="1082.6" y2="1081.3" gradientTransform="matrix(125 0 0 -83 1446 90831)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#DF0ECD" offset="0"/>
-					<stop stop-color="#DF10CB" offset="1"/>
-				</linearGradient>
-				<polygon points="1182.1 1030.4 1333.4 1080 1335 1080 1269.2 978.8" fill="url(#adq)"/>
-					<linearGradient id="adr" x1="-2.397" x2="-1.1704" y1="1082.7" y2="1081.5" gradientTransform="matrix(112 0 0 -84 1509 91828)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#D90EBA" offset="0"/>
-					<stop stop-color="#D60FB9" offset="1"/>
-				</linearGradient>
-				<polygon points="1243.5 875.71 1269.2 978.8 1380.8 903.94" fill="url(#adr)"/>
-					<linearGradient id="ads" x1="-2.873" x2="-1.6463" y1="1082.5" y2="1081.3" gradientTransform="matrix(92 0 0 -99 1550 108111)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#DD10CA" offset="0"/>
-					<stop stop-color="#DE10C2" offset="1"/>
-				</linearGradient>
-				<polygon points="1269.2 978.8 1335 1080 1335.7 1080 1382 959.17" fill="url(#ads)"/>
-					<linearGradient id="adt" x1="-3.0566" x2="-1.8292" y1="1083.3" y2="1082.1" gradientTransform="matrix(92 0 0 -61 1550 66988)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#CE0DB1" offset="0"/>
-					<stop stop-color="#DB10BD" offset="1"/>
-				</linearGradient>
-				<polygon points="1269.2 978.8 1382 959.17 1380.8 903.94" fill="url(#adt)"/>
-					<linearGradient id="adu" x1="-4.1279" x2="-2.9009" y1="1083.2" y2="1081.9" gradientTransform="matrix(111 0 0 -126 604 136756)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#684E64" offset="0"/>
-					<stop stop-color="#743C56" offset="1"/>
-				</linearGradient>
-				<polygon points="268.56 293.95 132.44 308.68 186.4 448.59" fill="url(#adu)"/>
-					<linearGradient id="adv" x1="-4.4014" x2="-3.1743" y1="1085.4" y2="1084.2" gradientTransform="matrix(111 0 0 -58 604 63202)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#595B73" offset="0"/>
-					<stop stop-color="#475578" offset="1"/>
-				</linearGradient>
-				<polygon points="201.11 237.49 132.44 308.68 268.56 293.95" fill="url(#adv)"/>
-					<linearGradient id="adw" x1="-6.3555" x2="-5.1284" y1="1082.8" y2="1081.6" gradientTransform="matrix(78 0 0 -140 681 151890)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#8D3149" offset="0"/>
-					<stop stop-color="#632A59" offset="1"/>
-				</linearGradient>
-				<polygon points="268.56 293.95 186.4 448.59 282.05 465.78" fill="url(#adw)"/>
-					<linearGradient id="om" x1="-9.2949" x2="-8.0683" y1="1083.7" y2="1082.5" gradientTransform="matrix(55 0 0 -105 716 113950)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#436684" offset="0"/>
-					<stop stop-color="#455A7A" offset="1"/>
-				</linearGradient>
-				<polygon points="201.11 237.49 268.56 293.95 253.84 165.08" fill="url(#om)"/>
-					<linearGradient id="on" x1="-4.9209" x2="-3.6939" y1="1083.5" y2="1082.3" gradientTransform="matrix(94 0 0 -113 720 122590)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#4A657D" offset="0"/>
-					<stop stop-color="#5D506A" offset="1"/>
-				</linearGradient>
-				<polygon points="253.84 165.08 268.56 293.95 369.11 155.26" fill="url(#on)"/>
-					<linearGradient id="oo" x1="-5.1484" x2="-3.9217" y1="1082.6" y2="1081.4" gradientTransform="matrix(94 0 0 -140 732 151890)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#621A58" offset="0"/>
-					<stop stop-color="#48216C" offset="1"/>
-				</linearGradient>
-				<polygon points="383.83 436.32 268.56 293.95 282.05 465.78" fill="url(#oo)"/>
-					<linearGradient id="oq" x1="-9.0137" x2="-7.7869" y1="1083.9" y2="1082.6" gradientTransform="matrix(49 0 0 -62 1116 67864)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#E629E4" offset="0"/>
-					<stop stop-color="#E32AE1" offset="1"/>
-				</linearGradient>
-				<polygon points="689.17 652.33 684.27 708.79 744.36 728.43" fill="url(#oq)"/>
-					<linearGradient id="or" x1="-7.9063" x2="-6.6794" y1="1085.5" y2="1084.3" gradientTransform="matrix(53 0 0 -41 1112 45209)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#EB30E5" offset="0"/>
-					<stop stop-color="#F33CE5" offset="1"/>
-				</linearGradient>
-				<polygon points="684.27 708.79 749.26 759.11 744.36 728.43" fill="url(#or)"/>
-					<linearGradient id="os" x1="-9.2739" x2="-8.0472" y1="1089.9" y2="1088.7" gradientTransform="matrix(50 0 0 -34 1024 37062)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#4AA0AD" offset="0"/>
-					<stop stop-color="#3CA4B4" offset="1"/>
-				</linearGradient>
-				<polygon points="633.99 32.524 589.17 0 584.04 0 572.68 38.661" fill="url(#os)"/>
-					<linearGradient id="ot" x1="-8.7788" x2="-7.5521" y1="1093" y2="1091.7" gradientTransform="matrix(50 0 0 -26 1024 28443)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#44A3B2" offset="0"/>
-					<stop stop-color="#2DAEC1" offset="1"/>
-				</linearGradient>
-				<polygon points="633.99 32.524 572.68 38.661 633.99 64.435" fill="url(#ot)"/>
-					<linearGradient id="ou" x1="-6.021" x2="-4.7942" y1="1089" y2="1087.8" gradientTransform="matrix(72 0 0 -37 1052 40334)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#24B6C9" offset="0"/>
-					<stop stop-color="#20BACC" offset="1"/>
-				</linearGradient>
-				<polygon points="722.28 77.937 633.99 32.524 633.99 64.435" fill="url(#ou)"/>
-					<linearGradient id="ov" x1="-3.7617" x2="-2.5349" y1="1085.3" y2="1084" gradientTransform="matrix(101 0 0 -75 1023 81374)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#16C2D4" offset="0"/>
-					<stop stop-color="#19B8CE" offset="1"/>
-				</linearGradient>
-				<polygon points="722.28 77.937 752.39 0 720.36 0 633.99 32.524" fill="url(#ov)"/>
-					<linearGradient id="ow" x1="-2.1396" x2="-.9129" y1="1084.5" y2="1083.3" gradientTransform="matrix(91 0 0 -69 1852 75271)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#0ABFDF" offset="0"/>
-					<stop stop-color="#07A5D7" offset="1"/>
-				</linearGradient>
-				<polygon points="1714.3 540.64 1749.9 455.96 1638.3 475.6" fill="url(#ow)"/>
-					<linearGradient id="pj" x1="-.4878" x2=".7388" y1="1082.8" y2="1081.6" gradientTransform="matrix(185 0 0 -135 1849 146550)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#072B99" offset="0"/>
-					<stop stop-color="#05509E" offset="1"/>
-				</linearGradient>
-				<polygon points="1899.5 539.42 1924 486.82 1924 392.84 1749.9 455.96" fill="url(#pj)"/>
-					<linearGradient id="qk" x1="-.3838" x2=".8432" y1="1084.2" y2="1082.9" gradientTransform="matrix(283 0 0 -99 1336 107295)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#44138E" offset="0"/>
-					<stop stop-color="#6614A8" offset="1"/>
-				</linearGradient>
-				<polygon points="1558.9 0 1274.8 0 1337.9 79.164" fill="url(#qk)"/>
-					<linearGradient id="rl" x1="-3.5977" x2="-2.3707" y1="1085" y2="1083.8" gradientTransform="matrix(96 0 0 -63 1350 68601)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#E19C7D" offset="0"/>
-					<stop stop-color="#D18E7D" offset="1"/>
-				</linearGradient>
-				<polygon points="1146.6 298.86 1049.7 230.13 1028.9 307.45" fill="url(#rl)"/>
-					<linearGradient id="tn" x1="-1.4507" x2="-.2228" y1="1084.3" y2="1083" gradientTransform="matrix(137 0 0 -87 1664 94480)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#2077D5" offset="0"/>
-					<stop stop-color="#1D76D6" offset="1"/>
-				</linearGradient>
-				<polygon points="1632.2 150.35 1464.2 217.85 1469.1 257.13" fill="url(#tn)"/>
-					<linearGradient id="uo" x1="-1.3901" x2="-.1634" y1="1082.9" y2="1081.7" gradientTransform="matrix(133 0 0 -157 1672 170150)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#1696DC" offset="0"/>
-					<stop stop-color="#1697DF" offset="1"/>
-				</linearGradient>
-				<polygon points="1618.7 343.04 1632.2 150.35 1469.1 257.13" fill="url(#uo)"/>
-					<linearGradient id="vp" x1="-1.2847" x2="-.0582" y1="1084.1" y2="1082.9" gradientTransform="matrix(139 0 0 -95 1799 103033)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#2919B2" offset="0"/>
-					<stop stop-color="#1B2EB6" offset="1"/>
-				</linearGradient>
-				<polygon points="1802.6 65.663 1699.6 33.751 1632.2 150.35" fill="url(#vp)"/>
-					<linearGradient id="wq" x1="-2.3022" x2="-1.0755" y1="1087.2" y2="1086" gradientTransform="matrix(137 0 0 -19 1297 21674)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#DA0FD1" offset="0"/>
-					<stop stop-color="#DC0ED0" offset="1"/>
-				</linearGradient>
-				<polygon points="1016.6 1035.3 1182.1 1030.4 1014.1 1011.9" fill="url(#wq)"/>
-					<linearGradient id="xr" x1="-2.9873" x2="-1.7607" y1="1083.7" y2="1082.5" gradientTransform="matrix(94 0 0 -68 1552 74373)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#5E1583" offset="0"/>
-					<stop stop-color="#5A1086" offset="1"/>
-				</linearGradient>
-				<polygon points="1326.8 764.02 1389.4 727.2 1274.1 680.56" fill="url(#xr)"/>
-					<linearGradient id="ys" x1="-2.9243" x2="-1.698" y1="1082.3" y2="1081.1" gradientTransform="matrix(94 0 0 -163 1552 176943)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#472487" offset="0"/>
-					<stop stop-color="#29439A" offset="1"/>
-				</linearGradient>
-				<polygon points="1274.1 680.56 1389.4 727.2 1374.7 527.14" fill="url(#ys)"/>
-					<linearGradient id="zt" x1="-3.7188" x2="-2.492" y1="1082.1" y2="1080.9" gradientTransform="matrix(78 0 0 -163 1650 176943)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#1662AD" offset="0"/>
-					<stop stop-color="#202C94" offset="1"/>
-				</linearGradient>
-				<polygon points="1389.4 727.2 1470.3 680.56 1374.7 527.14" fill="url(#zt)"/>
-					<linearGradient id="aau" x1="-3.1094" x2="-1.8826" y1="1082.8" y2="1081.6" gradientTransform="matrix(114 0 0 -106 1100 115409)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#F236E0" offset="0"/>
-					<stop stop-color="#F33DD1" offset="1"/>
-				</linearGradient>
-				<polygon points="744.36 728.43 749.26 759.11 884.15 629.01" fill="url(#aau)"/>
-					<linearGradient id="abv" x1="-3.2578" x2="-2.0313" y1="1084.2" y2="1083" gradientTransform="matrix(80 0 0 -61 1726 66745)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#0D4CAA" offset="0"/>
-					<stop stop-color="#0875BE" offset="1"/>
-				</linearGradient>
-				<polygon points="1470.3 680.56 1568.4 620.42 1494.8 605.69" fill="url(#abv)"/>
-					<linearGradient id="acw" x1="-1.5371" x2="-.3105" y1="1082.2" y2="1081" gradientTransform="matrix(127 0 0 -173 1679 187829)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#0E339F" offset="0"/>
-					<stop stop-color="#0E3EA6" offset="1"/>
-				</linearGradient>
-				<polygon points="1470.3 680.56 1626.1 832.75 1568.4 620.42" fill="url(#acw)"/>
-					<linearGradient id="ox" x1="-4.4546" x2="-3.2278" y1="1089.1" y2="1087.9" gradientTransform="matrix(60 0 0 -25 1766 27816)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#0982C3" offset="0"/>
-					<stop stop-color="#088BC8" offset="1"/>
-				</linearGradient>
-				<polygon points="1494.8 605.69 1568.4 620.42 1548.8 589.74" fill="url(#ox)"/>
-					<linearGradient id="oy" x1="-2.7603" x2="-1.5334" y1="1088.2" y2="1087" gradientTransform="matrix(91 0 0 -27 1779 29978)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#0893CC" offset="0"/>
-					<stop stop-color="#0782C9" offset="1"/>
-				</linearGradient>
-				<polygon points="1548.8 589.74 1568.4 620.42 1660.4 622.88" fill="url(#oy)"/>
-					<linearGradient id="oz" x1="-2.8203" x2="-1.5934" y1="1082.3" y2="1081.1" gradientTransform="matrix(80 0 0 -173 1806 187829)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#10249F" offset="0"/>
-					<stop stop-color="#0762BF" offset="1"/>
-				</linearGradient>
-				<polygon points="1568.4 620.42 1626.1 832.75 1666.5 641.28" fill="url(#oz)"/>
-					<linearGradient id="pa" x1="-2.7192" x2="-1.4923" y1="1092.8" y2="1091.5" gradientTransform="matrix(80 0 0 -17 1806 19193)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#067AC9" offset="0"/>
-					<stop stop-color="#0676C6" offset="1"/>
-				</linearGradient>
-				<polygon points="1568.4 620.42 1666.5 641.28 1660.4 622.88" fill="url(#pa)"/>
-					<linearGradient id="pb" x1="-1.5732" x2="-.3462" y1="1083.6" y2="1082.4" gradientTransform="matrix(137 0 0 -109 1664 118208)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#2867D2" offset="0"/>
-					<stop stop-color="#3550D1" offset="1"/>
-				</linearGradient>
-				<polygon points="1632.2 150.35 1569.6 84.073 1464.2 217.85" fill="url(#pb)"/>
-					<linearGradient id="pc" x1="-2.1387" x2="-.912" y1="1084.9" y2="1083.7" gradientTransform="matrix(106 0 0 -77 1781 83539)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#6B14BB" offset="0"/>
-					<stop stop-color="#4820BC" offset="1"/>
-				</linearGradient>
-				<polygon points="1699.6 33.751 1614.4 0 1586 0 1569.6 84.073" fill="url(#pc)"/>
-					<linearGradient id="pd" x1="-1.8467" x2="-.62" y1="1084.4" y2="1083.1" gradientTransform="matrix(106 0 0 -95 1781 103033)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#2D47CD" offset="0"/>
-					<stop stop-color="#3E28BF" offset="1"/>
-				</linearGradient>
-				<polygon points="1699.6 33.751 1569.6 84.073 1632.2 150.35" fill="url(#pd)"/>
-					<linearGradient id="pe" x1="-5.4424" x2="-4.2157" y1="1083.6" y2="1082.4" gradientTransform="matrix(97 0 0 -72 469 78643)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#E3502C" offset="0"/>
-					<stop stop-color="#EA5A2D" offset="1"/>
-				</linearGradient>
-				<polygon points="0 643.34 0 696.93 68.672 683.02" fill="url(#pe)"/>
-					<linearGradient id="pf" x1="-8.0313" x2="-6.8045" y1="1083.6" y2="1082.4" gradientTransform="matrix(66 0 0 -94 499.9688 102331)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#EB502F" offset="0"/>
-					<stop stop-color="#EC532E" offset="1"/>
-				</linearGradient>
-				<polygon points="0 503.82 0 553.29 30.657 516.1" fill="url(#pf)"/>
-					<linearGradient id="pg" x1="-5.2495" x2="-4.0226" y1="1082.7" y2="1081.5" gradientTransform="matrix(97 0 0 -136 469 147747)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#ED5D2F" offset="0"/>
-					<stop stop-color="#ED5D2D" offset="1"/>
-				</linearGradient>
-				<polygon points="30.657 516.1 0 553.29 0 643.34 68.672 683.02" fill="url(#pg)"/>
-					<linearGradient id="pi" x1="-11.222" x2="-9.9945" y1="1085.3" y2="1084.1" gradientTransform="matrix(41 0 0 -32 1034 35665)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#E85FE5" offset="0"/>
-					<stop stop-color="#EC63E6" offset="1"/>
-				</linearGradient>
-				<polygon points="573.9 975.12 624.18 935.85 586.16 937.07" fill="url(#pi)"/>
-					<linearGradient id="pk" x1="-13.549" x2="-12.322" y1="1082" y2="1080.8" gradientTransform="matrix(35 0 0 -129 1046 140394)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#E243E4" offset="0"/>
-					<stop stop-color="#ED5FE6" offset="1"/>
-				</linearGradient>
-				<polygon points="586.16 937.07 624.18 935.85 581.26 778.75" fill="url(#pk)"/>
-					<linearGradient id="pl" x1="-1.7603" x2="-.5333" y1="1081.9" y2="1080.7" gradientTransform="matrix(124 0 0 -142 1708 154566)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#A705A5" offset="0"/>
-					<stop stop-color="#880396" offset="1"/>
-				</linearGradient>
-				<polygon points="1508.3 1080 1646.3 1080 1581.9 924.8" fill="url(#pl)"/>
-					<linearGradient id="pm" x1="-1.1401" x2=".0866" y1="1082" y2="1080.7" gradientTransform="matrix(148 0 0 -142 1749 154566)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#660286" offset="0"/>
-					<stop stop-color="#89048D" offset="1"/>
-				</linearGradient>
-				<polygon points="1581.9 924.8 1646.3 1080 1678.2 1080 1763.4 1011.9" fill="url(#pm)"/>
-					<linearGradient id="pn" x1="-1.9556" x2="-.7294" y1="1082.2" y2="1080.9" gradientTransform="matrix(95 0 0 -132 1861 143827)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#8F058E" offset="0"/>
-					<stop stop-color="#AE07A7" offset="1"/>
-				</linearGradient>
-				<polygon points="1678.2 1080 1766.5 1080 1763.4 1011.9" fill="url(#pn)"/>
-					<linearGradient id="po" x1="-2.4766" x2="-1.2502" y1="1082.7" y2="1081.5" gradientTransform="matrix(128 0 0 -83 1015 90881)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#E146E3" offset="0"/>
-					<stop stop-color="#E541E3" offset="1"/>
-				</linearGradient>
-				<polygon points="724.89 1080 777.34 1080 814.25 1040.2" fill="url(#po)"/>
-					<linearGradient id="pp" x1="-1.4404" x2="-.2136" y1="1082.5" y2="1081.3" gradientTransform="matrix(188 0 0 -83 1006 90881)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#E034E1" offset="0"/>
-					<stop stop-color="#E12EDD" offset="1"/>
-				</linearGradient>
-				<polygon points="777.34 1080 880.18 1080 814.25 1040.2" fill="url(#pp)"/>
-					<linearGradient id="pq" x1="-6.4409" x2="-5.2142" y1="1082.7" y2="1081.5" gradientTransform="matrix(47 0 0 -114 1642 124167)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#850A8E" offset="0"/>
-					<stop stop-color="#8F0B95" offset="1"/>
-				</linearGradient>
-				<polygon points="1380.8 903.94 1384.5 773.84 1326.8 764.02" fill="url(#pq)"/>
-					<linearGradient id="pr" x1="-6.0371" x2="-4.8107" y1="1085.7" y2="1084.5" gradientTransform="matrix(51 0 0 -38 1638 41981)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#6A0C87" offset="0"/>
-					<stop stop-color="#500F84" offset="1"/>
-				</linearGradient>
-				<polygon points="1326.8 764.02 1384.5 773.84 1389.4 727.2" fill="url(#pr)"/>
-					<linearGradient id="ps" x1="-5.5288" x2="-4.302" y1="1082.1" y2="1080.9" gradientTransform="matrix(56 0 0 -127 1677 138228)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#B10AA1" offset="0"/>
-					<stop stop-color="#8D0995" offset="1"/>
-				</linearGradient>
-				<polygon points="1380.8 903.94 1449.5 929.71 1384.5 773.84" fill="url(#ps)"/>
-					<linearGradient id="pu" x1="-4.022" x2="-2.7943" y1="1083.4" y2="1082.2" gradientTransform="matrix(70 0 0 -76 1666 83021)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#341584" offset="0"/>
-					<stop stop-color="#341D8C" offset="1"/>
-				</linearGradient>
-				<polygon points="1389.4 727.2 1384.5 773.84 1470.3 680.56" fill="url(#pu)"/>
-					<linearGradient id="pv" x1="-1.9302" x2="-.7033" y1="1082.2" y2="1080.9" gradientTransform="matrix(127 0 0 -127 1609 138228)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#93079A" offset="0"/>
-					<stop stop-color="#6A078C" offset="1"/>
-				</linearGradient>
-				<polygon points="1449.5 929.71 1540.2 921.12 1384.5 773.84" fill="url(#pv)"/>
-					<linearGradient id="pw" x1="-.8633" x2=".3638" y1="1082.4" y2="1081.2" gradientTransform="matrix(197 0 0 -124 1539 134909)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#182492" offset="0"/>
-					<stop stop-color="#320D88" offset="1"/>
-				</linearGradient>
-				<polygon points="1384.5 773.84 1626.1 832.75 1470.3 680.56" fill="url(#pw)"/>
-					<linearGradient id="px" x1="-.7095" x2=".5175" y1="1082.5" y2="1081.2" gradientTransform="matrix(197 0 0 -120 1539 130661)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#51058A" offset="0"/>
-					<stop stop-color="#3C0988" offset="1"/>
-				</linearGradient>
-				<polygon points="1384.5 773.84 1540.2 921.12 1626.1 832.75" fill="url(#px)"/>
-					<linearGradient id="py" x1="-3.5527" x2="-2.3264" y1="1082.5" y2="1081.2" gradientTransform="matrix(125 0 0 -89 556 97382)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#520261" offset="0"/>
-					<stop stop-color="#2F0263" offset="1"/>
-				</linearGradient>
-				<polygon points="131.4 1080 179.95 1080 164.32 1058.6" fill="url(#py)"/>
-					<linearGradient id="pz" x1="-4.9966" x2="-3.7697" y1="1083.3" y2="1082.1" gradientTransform="matrix(98 0 0 -53 545 58452)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#75045D" offset="0"/>
-					<stop stop-color="#580260" offset="1"/>
-				</linearGradient>
-				<polygon points="44.146 1041.4 71.799 1080 131.4 1080 164.32 1058.6" fill="url(#pz)"/>
-					<linearGradient id="qa" x1="-5.3359" x2="-4.1092" y1="1082.7" y2="1081.4" gradientTransform="matrix(98 0 0 -69 545 75693)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#7A055A" offset="0"/>
-					<stop stop-color="#630657" offset="1"/>
-				</linearGradient>
-				<polygon points="44.146 1041.4 164.32 1058.6 51.504 973.89" fill="url(#qa)"/>
-					<linearGradient id="qb" x1="-2.9092" x2="-1.6822" y1="1082.3" y2="1081.1" gradientTransform="matrix(70 0 0 -120 2033 1.3067e5)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#380374" offset="0"/>
-					<stop stop-color="#370479" offset="1"/>
-				</linearGradient>
-				<polygon points="1920.4 937.07 1886 789.79 1834.5 913.75" fill="url(#qb)"/>
-					<linearGradient id="qc" x1="-2.7085" x2="-1.4816" y1="1084.4" y2="1083.2" gradientTransform="matrix(70 0 0 -43 2033 47538)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#460273" offset="0"/>
-					<stop stop-color="#570273" offset="1"/>
-				</linearGradient>
-				<polygon points="1908.1 966.53 1920.4 937.07 1834.5 913.75" fill="url(#qc)"/>
-					<linearGradient id="qd" x1="-2.4814" x2="-1.2545" y1="1082.3" y2="1081" gradientTransform="matrix(76 0 0 -123 2069 133914)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#27057B" offset="0"/>
-					<stop stop-color="#3E0373" offset="1"/>
-				</linearGradient>
-				<polygon points="1920.4 937.07 1924 927.64 1924 788.29 1886 789.79" fill="url(#qd)"/>
-					<linearGradient id="qf" x1="-3.2441" x2="-2.0174" y1="1081.9" y2="1080.7" gradientTransform="matrix(60 0 0 -154 2103 1.6755e5)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#670277" offset="0"/>
-					<stop stop-color="#5E0375" offset="1"/>
-				</linearGradient>
-				<polygon points="1908.1 966.53 1924 1001.1 1924 948.41 1920.4 937.07" fill="url(#qf)"/>
-					<linearGradient id="qg" x1="-4.2988" x2="-3.0741" y1="1081.4" y2="1080.1" gradientTransform="matrix(50 0 0 -277 2123 3.0039e5)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#4B0374" offset="0"/>
-					<stop stop-color="#5A0374" offset="1"/>
-				</linearGradient>
-				<polygon points="1924 948.41 1924 927.64 1920.4 937.07" fill="url(#qg)"/>
-					<linearGradient id="qh" x1="-11.206" x2="-9.9798" y1="1081.5" y2="1080.3" gradientTransform="matrix(50 0 0 -370 534 4.0085e5)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#BA2B3A" offset="0"/>
-					<stop stop-color="#A20B5E" offset="1"/>
-				</linearGradient>
-				<polygon points="0 814.44 0 1064.4 33.11 945.67" fill="url(#qh)"/>
-					<linearGradient id="qi" x1="-9.5576" x2="-8.3306" y1="1082" y2="1080.7" gradientTransform="matrix(57 0 0 -172 528.9688 187013)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#940954" offset="0"/>
-					<stop stop-color="#A1066D" offset="1"/>
-				</linearGradient>
-				<polygon points="33.11 945.67 0 1064.4 0 1080 20.758 1080 44.146 1041.4" fill="url(#qi)"/>
-					<linearGradient id="qj" x1="-5.2368" x2="-4.0097" y1="1082.5" y2="1081.2" gradientTransform="matrix(95 0 0 -94 491 102773)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#900563" offset="0"/>
-					<stop stop-color="#970571" offset="1"/>
-				</linearGradient>
-				<polygon points="20.758 1080 71.799 1080 44.146 1041.4" fill="url(#qj)"/>
-					<linearGradient id="ql" x1="-3.1343" x2="-1.9074" y1="1082.1" y2="1080.9" gradientTransform="matrix(111 0 0 -116 1160 1.2651e5)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#EC3CE2" offset="0"/>
-					<stop stop-color="#E430DC" offset="1"/>
-				</linearGradient>
-				<polygon points="814.25 1040.2 880.18 1080 924.44 1080 863.3 980.03" fill="url(#ql)"/>
-					<linearGradient id="qm" x1="-2.4873" x2="-1.2606" y1="1082.2" y2="1081" gradientTransform="matrix(125 0 0 -116 1186 1.2651e5)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#D919D7" offset="0"/>
-					<stop stop-color="#E529DB" offset="1"/>
-				</linearGradient>
-				<polygon points="863.3 980.03 924.44 1080 982.59 1080 1016.6 1035.3" fill="url(#qm)"/>
-					<linearGradient id="qn" x1="-2.458" x2="-1.2312" y1="1084" y2="1082.8" gradientTransform="matrix(125 0 0 -45 1186 49754)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#E31AD9" offset="0"/>
-					<stop stop-color="#E629DB" offset="1"/>
-				</linearGradient>
-				<polygon points="863.3 980.03 1016.6 1035.3 1014.1 1011.9" fill="url(#qn)"/>
-					<linearGradient id="qo" x1="-2.3721" x2="-1.1455" y1="1083.3" y2="1082.1" gradientTransform="matrix(128 0 0 -63 1183 69175)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#E51CDA" offset="0"/>
-					<stop stop-color="#EB2DDE" offset="1"/>
-				</linearGradient>
-				<polygon points="1020.3 934.62 863.3 980.03 1014.1 1011.9" fill="url(#qo)"/>
-					<linearGradient id="qp" x1="-6.6104" x2="-5.3837" y1="1083.5" y2="1082.2" gradientTransform="matrix(77 0 0 -123 562 133402)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#637081" offset="0"/>
-					<stop stop-color="#618896" offset="1"/>
-				</linearGradient>
-				<polygon points="39.241 220.31 132.44 308.68 133.66 157.71" fill="url(#qp)"/>
-					<linearGradient id="qr" x1="-4.7334" x2="-3.5067" y1="1082.9" y2="1081.7" gradientTransform="matrix(108 0 0 -149 500 161410)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#737A89" offset="0"/>
-					<stop stop-color="#658C99" offset="1"/>
-				</linearGradient>
-				<polygon points="1.226 37.434 39.241 220.31 133.66 157.71" fill="url(#qr)"/>
-					<linearGradient id="qs" x1="-1.2539" x2="-.027" y1="1084.9" y2="1083.6" gradientTransform="matrix(148 0 0 -81 1754 87818)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#600CAF" offset="0"/>
-					<stop stop-color="#30099B" offset="1"/>
-				</linearGradient>
-				<polygon points="1723.4 0 1614.4 0 1699.6 33.751" fill="url(#qs)"/>
-					<linearGradient id="qt" x1="-2.6221" x2="-1.3953" y1="1083.9" y2="1082.7" gradientTransform="matrix(84 0 0 -107 1909 115924)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#270DA1" offset="0"/>
-					<stop stop-color="#19088F" offset="1"/>
-				</linearGradient>
-				<polygon points="1802.6 65.663 1786.1 0 1723.4 0 1699.6 33.751" fill="url(#qt)"/>
-					<linearGradient id="qu" x1="-2.9551" x2="-1.7286" y1="1083.9" y2="1082.7" gradientTransform="matrix(73 0 0 -107 1977 115924)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#100B90" offset="0"/>
-					<stop stop-color="#120583" offset="1"/>
-				</linearGradient>
-				<polygon points="1859 31.297 1830.2 0 1786.1 0 1802.6 65.663" fill="url(#qu)"/>
-					<linearGradient id="qv" x1="-.978" x2=".2491" y1="1084.5" y2="1083.3" gradientTransform="matrix(157 0 0 -87 1893 94296)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#140279" offset="0"/>
-					<stop stop-color="#0B0476" offset="1"/>
-				</linearGradient>
-				<polygon points="1889.2 0 1830.2 0 1859 31.297" fill="url(#qv)"/>
-					<linearGradient id="qw" x1="-2.4761" x2="-1.2493" y1="1084.4" y2="1083.2" gradientTransform="matrix(84 0 0 -87 2039 94296)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#09067B" offset="0"/>
-					<stop stop-color="#0A0573" offset="1"/>
-				</linearGradient>
-				<polygon points="1909.3 26.388 1923 0 1889.2 0 1859 31.297" fill="url(#qw)"/>
-					<linearGradient id="qx" x1="-4.3618" x2="-3.1344" y1="1084.4" y2="1083.2" gradientTransform="matrix(52 0 0 -83 2112 89972)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#080675" offset="0"/>
-					<stop stop-color="#0A0570" offset="1"/>
-				</linearGradient>
-				<polygon points="1924 24.406 1924 0 1923 0 1909.3 26.388" fill="url(#qx)"/>
-					<linearGradient id="qy" x1="-1.731" x2="-.5039" y1="1089.8" y2="1088.6" gradientTransform="matrix(105 0 0 -34 1972 37090)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#0C0C8F" offset="0"/>
-					<stop stop-color="#070983" offset="1"/>
-				</linearGradient>
-				<polygon points="1802.6 65.663 1924 72.606 1924 68.784 1859 31.297" fill="url(#qy)"/>
-					<linearGradient id="qz" x1="-1.3647" x2="-.1379" y1="1085.2" y2="1084" gradientTransform="matrix(105 0 0 -75 1972 81439)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#0A0F91" offset="0"/>
-					<stop stop-color="#040F86" offset="1"/>
-				</linearGradient>
-				<polygon points="1924 157.71 1924 72.606 1802.6 65.663" fill="url(#qz)"/>
-					<linearGradient id="ra" x1="-3.2939" x2="-2.0673" y1="1089.2" y2="1088" gradientTransform="matrix(59 0 0 -38 2064 41410)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#080881" offset="0"/>
-					<stop stop-color="#06087D" offset="1"/>
-				</linearGradient>
-				<polygon points="1859 31.297 1924 68.784 1924 57.481 1909.3 26.388" fill="url(#ra)"/>
-					<linearGradient id="rc" x1="-4.0127" x2="-2.7856" y1="1087.7" y2="1086.5" gradientTransform="matrix(52 0 0 -45 2112 48970)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#060879" offset="0"/>
-					<stop stop-color="#050978" offset="1"/>
-				</linearGradient>
-				<polygon points="1924 57.481 1924 24.406 1909.3 26.388" fill="url(#rc)"/>
-					<linearGradient id="rd" x1="-.6377" x2=".5895" y1="1082.7" y2="1081.5" gradientTransform="matrix(185 0 0 -145 1849 157282)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#0570BA" offset="0"/>
-					<stop stop-color="#032A88" offset="1"/>
-				</linearGradient>
-				<polygon points="1749.9 455.96 1924 392.84 1924 306.24 1902 277.99" fill="url(#rd)"/>
-					<linearGradient id="re" x1="-3.5186" x2="-2.2919" y1="1084.1" y2="1082.9" gradientTransform="matrix(56 0 0 -98 2064 106377)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#04249C" offset="0"/>
-					<stop stop-color="#032091" offset="1"/>
-				</linearGradient>
-				<polygon points="1902 277.99 1924 157.71 1855.4 190.85" fill="url(#re)"/>
-					<linearGradient id="rf" x1="-5.6309" x2="-4.4022" y1="1083.1" y2="1081.9" gradientTransform="matrix(40 0 0 -122 2118 132297)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#03178A" offset="0"/>
-					<stop stop-color="#031C8B" offset="1"/>
-				</linearGradient>
-				<polygon points="1924 210.61 1924 157.71 1902 277.99" fill="url(#rf)"/>
-					<linearGradient id="rg" x1="-3.397" x2="-2.1706" y1="1082.2" y2="1081" gradientTransform="matrix(61 0 0 -200 2097 2.1662e5)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#031883" offset="0"/>
-					<stop stop-color="#03207F" offset="1"/>
-				</linearGradient>
-				<polygon points="1924 306.24 1924 210.61 1902 277.99" fill="url(#rg)"/>
-					<linearGradient id="rh" x1="-2.2842" x2="-1.0575" y1="1082.6" y2="1081.4" gradientTransform="matrix(99 0 0 -157 1828 170150)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#0EB2E3" offset="0"/>
-					<stop stop-color="#127ED7" offset="1"/>
-				</linearGradient>
-				<polygon points="1740.1 257.13 1632.2 150.35 1618.7 343.04" fill="url(#rh)"/>
-					<linearGradient id="ri" x1="-1.0298" x2=".1969" y1="1083.1" y2="1081.9" gradientTransform="matrix(139 0 0 -156 1799 169000)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#1951CC" offset="0"/>
-					<stop stop-color="#0D47BA" offset="1"/>
-				</linearGradient>
-				<polygon points="1740.1 257.13 1802.6 65.663 1632.2 150.35" fill="url(#ri)"/>
-					<linearGradient id="rj" x1="-1.1802" x2=".0462" y1="1082.6" y2="1081.4" gradientTransform="matrix(132 0 0 -162 1894 175642)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#058CCE" offset="0"/>
-					<stop stop-color="#0560BA" offset="1"/>
-				</linearGradient>
-				<polygon points="1749.9 455.96 1902 277.99 1740.1 257.13" fill="url(#rj)"/>
-					<linearGradient id="rk" x1="-2.1826" x2="-.9556" y1="1082.8" y2="1081.5" gradientTransform="matrix(94 0 0 -156 1932 169000)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#0C20A5" offset="0"/>
-					<stop stop-color="#0748B7" offset="1"/>
-				</linearGradient>
-				<polygon points="1855.4 190.85 1802.6 65.663 1740.1 257.13" fill="url(#rk)"/>
-					<linearGradient id="rm" x1="-1.1816" x2=".0456" y1="1084.9" y2="1083.6" gradientTransform="matrix(132 0 0 -71 1894 77217)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#0533A9" offset="0"/>
-					<stop stop-color="#054EB2" offset="1"/>
-				</linearGradient>
-				<polygon points="1902 277.99 1855.4 190.85 1740.1 257.13" fill="url(#rm)"/>
-					<linearGradient id="ro" x1="-4.1587" x2="-2.9319" y1="1085.2" y2="1083.9" gradientTransform="matrix(63 0 0 -57 1838 62207)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#10CDE5" offset="0"/>
-					<stop stop-color="#0EC8E5" offset="1"/>
-				</linearGradient>
-				<polygon points="1586.8 413 1664.1 382.32 1618.7 343.04" fill="url(#ro)"/>
-					<linearGradient id="rp" x1="-3.7822" x2="-2.5555" y1="1084.4" y2="1083.1" gradientTransform="matrix(63 0 0 -76 1838 82778)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#10CFE4" offset="0"/>
-					<stop stop-color="#0DCAE3" offset="1"/>
-				</linearGradient>
-				<polygon points="1638.3 475.6 1664.1 382.32 1586.8 413" fill="url(#rp)"/>
-					<linearGradient id="rq" x1="-2.0181" x2="-.7913" y1="1083.7" y2="1082.4" gradientTransform="matrix(99 0 0 -102 1828 110782)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#0CC0E5" offset="0"/>
-					<stop stop-color="#0AABDE" offset="1"/>
-				</linearGradient>
-				<polygon points="1664.1 382.32 1740.1 257.13 1618.7 343.04" fill="url(#rq)"/>
-					<linearGradient id="rr" x1="-2.585" x2="-1.3583" y1="1083.9" y2="1082.7" gradientTransform="matrix(91 0 0 -76 1852 82778)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#0BC6E2" offset="0"/>
-					<stop stop-color="#09B9DE" offset="1"/>
-				</linearGradient>
-				<polygon points="1638.3 475.6 1749.9 455.96 1664.1 382.32" fill="url(#rr)"/>
-					<linearGradient id="rs" x1="-3.2056" x2="-1.9791" y1="1082.7" y2="1081.5" gradientTransform="matrix(70 0 0 -162 1894 1.7564e5)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#089AD9" offset="0"/>
-					<stop stop-color="#08B4DD" offset="1"/>
-				</linearGradient>
-				<polygon points="1664.1 382.32 1749.9 455.96 1740.1 257.13" fill="url(#rs)"/>
-					<linearGradient id="rt" x1="-3.2813" x2="-2.0545" y1="1083.9" y2="1082.7" gradientTransform="matrix(95 0 0 -104 1452 112700)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#1B1C74" offset="0"/>
-					<stop stop-color="#26297A" offset="1"/>
-				</linearGradient>
-				<polygon points="1269.2 26.388 1258.4 0 1211.7 0 1152.7 85.3" fill="url(#rt)"/>
-					<linearGradient id="ru" x1="-4.2764" x2="-3.0494" y1="1083.2" y2="1082" gradientTransform="matrix(82 0 0 -122 1282 132389)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#E9AA7D" offset="0"/>
-					<stop stop-color="#CFA789" offset="1"/>
-				</linearGradient>
-				<polygon points="1028.9 307.45 928.3 241.17 984.71 390.91" fill="url(#ru)"/>
-					<linearGradient id="rv" x1="-3.1475" x2="-1.9207" y1="1085.5" y2="1084.3" gradientTransform="matrix(99 0 0 -63 1265 68601)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#DBA182" offset="0"/>
-					<stop stop-color="#BE9C8B" offset="1"/>
-				</linearGradient>
-				<polygon points="1049.7 230.13 928.3 241.17 1028.9 307.45" fill="url(#rv)"/>
-					<linearGradient id="rw" x1="-3.6953" x2="-2.4683" y1="1084.1" y2="1082.9" gradientTransform="matrix(104 0 0 -94 1058 101988)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#1EC1D1" offset="0"/>
-					<stop stop-color="#25C3CF" offset="1"/>
-				</linearGradient>
-				<polygon points="808.12 193.31 722.28 77.937 680.59 140.53" fill="url(#rw)"/>
-					<linearGradient id="rx" x1="-8.1504" x2="-6.924" y1="1082.9" y2="1081.6" gradientTransform="matrix(55 0 0 -127 1039 137850)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#281EAF" offset="0"/>
-					<stop stop-color="#253BA7" offset="1"/>
-				</linearGradient>
-				<polygon points="664.65 368.82 603.33 309.9 597.2 465.78" fill="url(#rx)"/>
-					<linearGradient id="rz" x1="-5.4722" x2="-4.2452" y1="1083.8" y2="1082.6" gradientTransform="matrix(72 0 0 -73 1097 79744)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#DC21DC" offset="0"/>
-					<stop stop-color="#E92CD9" offset="1"/>
-				</linearGradient>
-				<polygon points="689.17 652.33 744.36 728.43 777.46 638.83" fill="url(#rz)"/>
-					<linearGradient id="sa" x1="-5.7705" x2="-4.5434" y1="1082.6" y2="1081.4" gradientTransform="matrix(72 0 0 -128 1097 1.3908e5)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#CB1DCE" offset="0"/>
-					<stop stop-color="#BB26B6" offset="1"/>
-				</linearGradient>
-				<polygon points="746.81 495.23 689.17 652.33 777.46 638.83" fill="url(#sa)"/>
-					<linearGradient id="sb" x1="-3.1221" x2="-1.8945" y1="1083.4" y2="1082.2" gradientTransform="matrix(114 0 0 -81 1100 88384)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#EF33DA" offset="0"/>
-					<stop stop-color="#EB32C4" offset="1"/>
-				</linearGradient>
-				<polygon points="744.36 728.43 884.15 629.01 777.46 638.83" fill="url(#sb)"/>
-					<linearGradient id="sc" x1="-4.0723" x2="-2.8451" y1="1082.9" y2="1081.6" gradientTransform="matrix(91 0 0 -124 1125 134751)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#A72F99" offset="0"/>
-					<stop stop-color="#D640A0" offset="1"/>
-				</linearGradient>
-				<polygon points="777.46 638.83 858.4 486.64 746.81 495.23" fill="url(#sc)"/>
-					<linearGradient id="sd" x1="-4.4038" x2="-3.1766" y1="1082.7" y2="1081.5" gradientTransform="matrix(87 0 0 -124 1154 134751)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#DF4F8F" offset="0"/>
-					<stop stop-color="#E835B5" offset="1"/>
-				</linearGradient>
-				<polygon points="777.46 638.83 884.15 629.01 858.4 486.64" fill="url(#sd)"/>
-					<linearGradient id="se" x1="-2.1758" x2="-.9487" y1="1082.4" y2="1081.2" gradientTransform="matrix(148 0 0 -138 1070 1.5e5)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#F542E0" offset="0"/>
-					<stop stop-color="#F23FCE" offset="1"/>
-				</linearGradient>
-				<polygon points="749.26 759.11 930.75 798.39 884.15 629.01" fill="url(#se)"/>
-					<linearGradient id="sf" x1="-3.3887" x2="-2.1616" y1="1082.5" y2="1081.3" gradientTransform="matrix(99 0 0 -138 1229 1.5e5)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#F03CBA" offset="0"/>
-					<stop stop-color="#EF3FBF" offset="1"/>
-				</linearGradient>
-				<polygon points="884.15 629.01 930.75 798.39 1005.6 641.28" fill="url(#sf)"/>
-					<linearGradient id="sg" x1="-3.4731" x2="-2.2463" y1="1082.4" y2="1081.2" gradientTransform="matrix(100 0 0 -128 1266 139201)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#ED37D0" offset="0"/>
-					<stop stop-color="#E432B3" offset="1"/>
-				</linearGradient>
-				<polygon points="930.75 798.39 1053.4 735.79 1005.6 641.28" fill="url(#sg)"/>
-					<linearGradient id="sh" x1="-3.1431" x2="-1.9163" y1="1082.3" y2="1081.1" gradientTransform="matrix(100 0 0 -162 1266 176032)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#EE32DA" offset="0"/>
-					<stop stop-color="#E320CD" offset="1"/>
-				</linearGradient>
-				<polygon points="930.75 798.39 1020.3 934.62 1053.4 735.79" fill="url(#sh)"/>
-					<linearGradient id="si" x1="-3.6206" x2="-2.3938" y1="1083.6" y2="1082.4" gradientTransform="matrix(89 0 0 -77 1338 84070)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#E33CA0" offset="0"/>
-					<stop stop-color="#D52DA0" offset="1"/>
-				</linearGradient>
-				<polygon points="1005.6 641.28 1053.4 735.79 1114.7 647.42" fill="url(#si)"/>
-					<linearGradient id="sk" x1="-2.2808" x2="-1.0537" y1="1083" y2="1081.8" gradientTransform="matrix(114 0 0 -91 1461 99304)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#C80AAF" offset="0"/>
-					<stop stop-color="#A50A9C" offset="1"/>
-				</linearGradient>
-				<polygon points="1187 770.16 1243.5 875.71 1326.8 764.02" fill="url(#sk)"/>
-					<linearGradient id="sl" x1="-2.5195" x2="-1.2927" y1="1083.4" y2="1082.2" gradientTransform="matrix(114 0 0 -73 1461 79778)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#781387" offset="0"/>
-					<stop stop-color="#960B94" offset="1"/>
-				</linearGradient>
-				<polygon points="1187 770.16 1326.8 764.02 1274.1 680.56" fill="url(#sl)"/>
-					<linearGradient id="sn" x1="-2.8662" x2="-1.6393" y1="1082.8" y2="1081.6" gradientTransform="matrix(109 0 0 -100 1357 108938)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#D01DAD" offset="0"/>
-					<stop stop-color="#C31E9A" offset="1"/>
-				</linearGradient>
-				<polygon points="1053.4 735.79 1187 770.16 1114.7 647.42" fill="url(#sn)"/>
-					<linearGradient id="so" x1="-2.0313" x2="-.8041" y1="1083" y2="1081.7" gradientTransform="matrix(130 0 0 -100 1386 108938)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#B52689" offset="0"/>
-					<stop stop-color="#951390" offset="1"/>
-				</linearGradient>
-				<polygon points="1114.7 647.42 1187 770.16 1274.1 680.56" fill="url(#so)"/>
-					<linearGradient id="sp" x1="-2.646" x2="-1.4195" y1="1082.4" y2="1081.2" gradientTransform="matrix(111 0 0 -95 1420 103750)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#E00DCC" offset="0"/>
-					<stop stop-color="#E20ECA" offset="1"/>
-				</linearGradient>
-				<polygon points="1182.1 1030.4 1269.2 978.8 1133.1 913.75" fill="url(#sp)"/>
-					<linearGradient id="sq" x1="-3.5796" x2="-2.3528" y1="1082.3" y2="1081.1" gradientTransform="matrix(90 0 0 -117 1441 1.2742e5)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#C70AB0" offset="0"/>
-					<stop stop-color="#D80BC0" offset="1"/>
-				</linearGradient>
-				<polygon points="1133.1 913.75 1243.5 875.71 1187 770.16" fill="url(#sq)"/>
-					<linearGradient id="sr" x1="-2.4502" x2="-1.2236" y1="1082.9" y2="1081.7" gradientTransform="matrix(111 0 0 -84 1420 91828)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#DC0CBF" offset="0"/>
-					<stop stop-color="#E10EC8" offset="1"/>
-				</linearGradient>
-				<polygon points="1133.1 913.75 1269.2 978.8 1243.5 875.71" fill="url(#sr)"/>
-					<linearGradient id="ss" x1="-2.1074" x2="-.8804" y1="1082.4" y2="1081.2" gradientTransform="matrix(137 0 0 -95 1297 103750)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#DF10D2" offset="0"/>
-					<stop stop-color="#DE0CCC" offset="1"/>
-				</linearGradient>
-				<polygon points="1014.1 1011.9 1182.1 1030.4 1133.1 913.75" fill="url(#ss)"/>
-					<linearGradient id="st" x1="-3.3286" x2="-2.1011" y1="1082.8" y2="1081.5" gradientTransform="matrix(97 0 0 -80 1337 87535)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#E112D5" offset="0"/>
-					<stop stop-color="#E212D3" offset="1"/>
-				</linearGradient>
-				<polygon points="1014.1 1011.9 1133.1 913.75 1020.3 934.62" fill="url(#st)"/>
-					<linearGradient id="su" x1="-3.77" x2="-2.5432" y1="1081.9" y2="1080.6" gradientTransform="matrix(92 0 0 -162 1347 176032)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#E316D4" offset="0"/>
-					<stop stop-color="#DE15C6" offset="1"/>
-				</linearGradient>
-				<polygon points="1020.3 934.62 1133.1 913.75 1053.4 735.79" fill="url(#su)"/>
-					<linearGradient id="sw" x1="-2.6626" x2="-1.4357" y1="1082.3" y2="1081.1" gradientTransform="matrix(109 0 0 -145 1357 157655)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#D517BA" offset="0"/>
-					<stop stop-color="#CE0CB9" offset="1"/>
-				</linearGradient>
-				<polygon points="1053.4 735.79 1133.1 913.75 1187 770.16" fill="url(#sw)"/>
-					<linearGradient id="sx" x1="-2.1924" x2="-.9659" y1="1082.9" y2="1081.7" gradientTransform="matrix(148 0 0 -88 1070 96057)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#F74FE4" offset="0"/>
-					<stop stop-color="#F757E1" offset="1"/>
-				</linearGradient>
-				<polygon points="749.26 759.11 800.76 867.11 930.75 798.39" fill="url(#sx)"/>
-					<linearGradient id="sy" x1="-4.4468" x2="-3.2198" y1="1082.8" y2="1081.6" gradientTransform="matrix(82 0 0 -92 1178 100469)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#F866E3" offset="0"/>
-					<stop stop-color="#F552E2" offset="1"/>
-				</linearGradient>
-				<polygon points="800.76 867.11 863.3 980.03 901.32 880.62" fill="url(#sy)"/>
-					<linearGradient id="sz" x1="-3.2827" x2="-2.0561" y1="1083.5" y2="1082.3" gradientTransform="matrix(106 0 0 -67 1154 73388)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#F862E3" offset="0"/>
-					<stop stop-color="#F54BE0" offset="1"/>
-				</linearGradient>
-				<polygon points="800.76 867.11 901.32 880.62 930.75 798.39" fill="url(#sz)"/>
-					<linearGradient id="ta" x1="-2.665" x2="-1.4383" y1="1082.7" y2="1081.4" gradientTransform="matrix(128 0 0 -81 1183 88589)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#F242E1" offset="0"/>
-					<stop stop-color="#EE35DE" offset="1"/>
-				</linearGradient>
-				<polygon points="901.32 880.62 863.3 980.03 1020.3 934.62" fill="url(#ta)"/>
-					<linearGradient id="tb" x1="-3.6528" x2="-2.426" y1="1082.4" y2="1081.1" gradientTransform="matrix(97 0 0 -111 1245 120952)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#F23BDF" offset="0"/>
-					<stop stop-color="#EE34DE" offset="1"/>
-				</linearGradient>
-				<polygon points="901.32 880.62 1020.3 934.62 930.75 798.39" fill="url(#tb)"/>
-					<linearGradient id="tc" x1="-3.3418" x2="-2.1151" y1="1082.5" y2="1081.3" gradientTransform="matrix(114 0 0 -129 857 140394)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#D432DE" offset="0"/>
-					<stop stop-color="#C139CE" offset="1"/>
-				</linearGradient>
-				<polygon points="586.16 937.07 581.26 778.75 446.37 797.16" fill="url(#tc)"/>
-					<linearGradient id="td" x1="-4.1362" x2="-2.9095" y1="1082.4" y2="1081.2" gradientTransform="matrix(111 0 0 -113 749 123022)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#6C136A" offset="0"/>
-					<stop stop-color="#75148A" offset="1"/>
-				</linearGradient>
-				<polygon points="310.25 824.16 446.37 797.16 365.43 685.47" fill="url(#td)"/>
-					<linearGradient id="te" x1="-3.6636" x2="-2.4369" y1="1083.7" y2="1082.5" gradientTransform="matrix(125 0 0 -74 538 80809)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#E86231" offset="0"/>
-					<stop stop-color="#D84C38" offset="1"/>
-				</linearGradient>
-				<polygon points="221.96 619.19 68.672 683.02 187.62 710.02" fill="url(#te)"/>
-					<linearGradient id="tf" x1="-4.478" x2="-3.2513" y1="1081.9" y2="1080.7" gradientTransform="matrix(112 0 0 -198 472 214921)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#CB3B30" offset="0"/>
-					<stop stop-color="#AC243A" offset="1"/>
-				</linearGradient>
-				<polygon points="109.14 820.48 0 726.85 0 814.44 33.11 945.67" fill="url(#tf)"/>
-					<linearGradient id="ti" x1="-4.2842" x2="-3.0574" y1="1082.8" y2="1081.6" gradientTransform="matrix(112 0 0 -112 472 121939)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#DD4E2E" offset="0"/>
-					<stop stop-color="#D74F31" offset="1"/>
-				</linearGradient>
-				<polygon points="68.672 683.02 0 696.93 0 726.85 109.14 820.48" fill="url(#ti)"/>
-					<linearGradient id="tj" x1="-5.085" x2="-3.8577" y1="1082.7" y2="1081.5" gradientTransform="matrix(97 0 0 -112 566 121939)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#E55F30" offset="0"/>
-					<stop stop-color="#D04634" offset="1"/>
-				</linearGradient>
-				<polygon points="68.672 683.02 109.14 820.48 187.62 710.02" fill="url(#tj)"/>
-					<linearGradient id="tk" x1="-4.5186" x2="-3.2919" y1="1082.7" y2="1081.5" gradientTransform="matrix(104 0 0 -93 545 101613)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#6D0850" offset="0"/>
-					<stop stop-color="#4B0756" offset="1"/>
-				</linearGradient>
-				<polygon points="51.504 973.89 164.32 1058.6 179.04 944.44" fill="url(#tk)"/>
-					<linearGradient id="tl" x1="-6.8462" x2="-5.6193" y1="1082.2" y2="1081" gradientTransform="matrix(76 0 0 -93 665 101613)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#360462" offset="0"/>
-					<stop stop-color="#370865" offset="1"/>
-				</linearGradient>
-				<polygon points="164.32 1058.6 257.52 1047.5 179.04 944.44" fill="url(#tl)"/>
-					<linearGradient id="tm" x1="-6.313" x2="-5.0868" y1="1082.5" y2="1081.2" gradientTransform="matrix(76 0 0 -98 665 107102)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#2E0368" offset="0"/>
-					<stop stop-color="#200471" offset="1"/>
-				</linearGradient>
-				<polygon points="164.32 1058.6 179.95 1080 253.88 1080 257.52 1047.5" fill="url(#tm)"/>
-					<linearGradient id="to" x1="-3.7793" x2="-2.5523" y1="1082.7" y2="1081.5" gradientTransform="matrix(116 0 0 -87 637 95124)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#420B5D" offset="0"/>
-					<stop stop-color="#330B76" offset="1"/>
-				</linearGradient>
-				<polygon points="179.04 944.44 257.52 1047.5 321.29 940.76" fill="url(#to)"/>
-					<linearGradient id="tp" x1="-6.2759" x2="-5.0488" y1="1082.5" y2="1081.2" gradientTransform="matrix(78 0 0 -87 739 95124)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#3B0E81" offset="0"/>
-					<stop stop-color="#310D8A" offset="1"/>
-				</linearGradient>
-				<polygon points="257.52 1047.5 353.17 1020.5 321.29 940.76" fill="url(#tp)"/>
-					<linearGradient id="tq" x1="-10.234" x2="-9.0076" y1="1083.5" y2="1082.2" gradientTransform="matrix(55 0 0 -91 542 98997)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#E24B32" offset="0"/>
-					<stop stop-color="#D54A38" offset="1"/>
-				</linearGradient>
-				<polygon points="0 390.72 0 493.56 55.183 469.46" fill="url(#tq)"/>
-					<linearGradient id="tr" x1="-4.6768" x2="-3.45" y1="1082.8" y2="1081.6" gradientTransform="matrix(110 0 0 -136 495 147506)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#826974" offset="0"/>
-					<stop stop-color="#93545B" offset="1"/>
-				</linearGradient>
-				<polygon points="39.241 220.31 0 377.41 0 385.8 132.44 308.68" fill="url(#tr)"/>
-					<linearGradient id="ts" x1="-4.3921" x2="-3.1652" y1="1083.1" y2="1081.8" gradientTransform="matrix(110 0 0 -131 495 142173)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#CA4F3D" offset="0"/>
-					<stop stop-color="#A24E50" offset="1"/>
-				</linearGradient>
-				<polygon points="132.44 308.68 0 385.8 0 390.72 55.183 469.46" fill="url(#ts)"/>
-					<linearGradient id="tu" x1="-7.7363" x2="-6.5091" y1="1083.2" y2="1081.9" gradientTransform="matrix(69 0 0 -136 500.9688 147506)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#B14B4D" offset="0"/>
-					<stop stop-color="#935C67" offset="1"/>
-				</linearGradient>
-				<polygon points="0 220.88 0 377.41 39.241 220.31" fill="url(#tu)"/>
-					<linearGradient id="tv" x1="-7.8911" x2="-6.664" y1="1083.1" y2="1081.8" gradientTransform="matrix(69 0 0 -150 500.9688 162491)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#846777" offset="0"/>
-					<stop stop-color="#8E6470" offset="1"/>
-				</linearGradient>
-				<polygon points="1.226 37.434 0 42.278 0 220.88 39.241 220.31" fill="url(#tv)"/>
-					<linearGradient id="tw" x1="-14.825" x2="-13.599" y1="1082.7" y2="1081.5" gradientTransform="matrix(38 0 0 -241 532 260771)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#9B515E" offset="0"/>
-					<stop stop-color="#855665" offset="1"/>
-				</linearGradient>
-				<polygon points="0 33.583 0 42.278 1.226 37.434" fill="url(#tw)"/>
-					<linearGradient id="tx" x1="-5.5654" x2="-4.3382" y1="1084.3" y2="1083.1" gradientTransform="matrix(97 0 0 -91 482 98621)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#705263" offset="0"/>
-					<stop stop-color="#59627E" offset="1"/>
-				</linearGradient>
-				<polygon points="34.691 0 0 0 0 33.583 1.226 37.434" fill="url(#tx)"/>
-					<linearGradient id="ty" x1="-6.4224" x2="-5.1953" y1="1085" y2="1083.8" gradientTransform="matrix(81 0 0 -77 595 83502)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#2D6F99" offset="0"/>
-					<stop stop-color="#2D7CA1" offset="1"/>
-				</linearGradient>
-				<polygon points="157.17 0 112.15 0 131.21 38.661" fill="url(#ty)"/>
-					<linearGradient id="tz" x1="-4.9468" x2="-3.7201" y1="1084.9" y2="1083.7" gradientTransform="matrix(106 0 0 -77 502 83502)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#627087" offset="0"/>
-					<stop stop-color="#3B7C9C" offset="1"/>
-				</linearGradient>
-				<polygon points="131.21 38.661 112.15 0 34.691 0 1.226 37.434" fill="url(#tz)"/>
-					<linearGradient id="ua" x1="-4.3213" x2="-3.0945" y1="1084.4" y2="1083.2" gradientTransform="matrix(108 0 0 -98 500 106279)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#677D8F" offset="0"/>
-					<stop stop-color="#4797A9" offset="1"/>
-				</linearGradient>
-				<polygon points="131.21 38.661 1.226 37.434 133.66 157.71" fill="url(#ua)"/>
-					<linearGradient id="ub" x1="-4.0596" x2="-2.8332" y1="1084.1" y2="1082.9" gradientTransform="matrix(116 0 0 -97 598 105199)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#3A94A9" offset="0"/>
-					<stop stop-color="#468C9C" offset="1"/>
-				</linearGradient>
-				<polygon points="273.46 54.617 131.21 38.661 133.66 157.71" fill="url(#ub)"/>
-					<linearGradient id="uc" x1="-4.2134" x2="-2.9866" y1="1084.9" y2="1083.7" gradientTransform="matrix(116 0 0 -77 598 83515)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#3588A4" offset="0"/>
-					<stop stop-color="#357392" offset="1"/>
-				</linearGradient>
-				<polygon points="273.46 54.617 221.73 0 157.17 0 131.21 38.661" fill="url(#uc)"/>
-					<linearGradient id="ud" x1="-4.0879" x2="-2.8612" y1="1084.4" y2="1083.1" gradientTransform="matrix(114 0 0 -90 602 97645)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#4593A3" offset="0"/>
-					<stop stop-color="#467A8C" offset="1"/>
-				</linearGradient>
-				<polygon points="253.84 165.08 273.46 54.617 133.66 157.71" fill="url(#ud)"/>
-					<linearGradient id="uf" x1="-1.9629" x2="-.7359" y1="1083.6" y2="1082.3" gradientTransform="matrix(208 0 0 -118 549 1.278e5)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#3E6282" offset="0"/>
-					<stop stop-color="#74626A" offset="1"/>
-				</linearGradient>
-				<polygon points="335.89 0 221.73 0 273.46 54.617" fill="url(#uf)"/>
-					<linearGradient id="ug" x1="-6.6846" x2="-5.4581" y1="1084.3" y2="1083.1" gradientTransform="matrix(73 0 0 -90 741 97645)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#4E7182" offset="0"/>
-					<stop stop-color="#626D77" offset="1"/>
-				</linearGradient>
-				<polygon points="343.36 58.298 273.46 54.617 253.84 165.08" fill="url(#ug)"/>
-					<linearGradient id="uh" x1="-5.0283" x2="-3.8011" y1="1084.4" y2="1083.2" gradientTransform="matrix(94 0 0 -87 720 94405)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#566D7B" offset="0"/>
-					<stop stop-color="#786369" offset="1"/>
-				</linearGradient>
-				<polygon points="369.11 155.26 343.36 58.298 253.84 165.08" fill="url(#uh)"/>
-					<linearGradient id="ui" x1="-3.4097" x2="-2.1833" y1="1083.4" y2="1082.2" gradientTransform="matrix(135 0 0 -121 695 131038)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#6C6971" offset="0"/>
-					<stop stop-color="#96615E" offset="1"/>
-				</linearGradient>
-				<polygon points="343.36 58.298 380.91 0 335.89 0 273.46 54.617" fill="url(#ui)"/>
-					<linearGradient id="uj" x1="-5.8574" x2="-4.6315" y1="1083.4" y2="1082.2" gradientTransform="matrix(83 0 0 -121 804 131038)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#976460" offset="0"/>
-					<stop stop-color="#B26157" offset="1"/>
-				</linearGradient>
-				<polygon points="404.56 0 380.91 0 343.36 58.298" fill="url(#uj)"/>
-					<linearGradient id="uk" x1="-4.0596" x2="-2.8329" y1="1083.6" y2="1082.3" gradientTransform="matrix(104 0 0 -123 866 133242)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#8B8583" offset="0"/>
-					<stop stop-color="#878481" offset="1"/>
-				</linearGradient>
-				<polygon points="572.68 38.661 508.91 0 460.53 0 505.23 112.3" fill="url(#uk)"/>
-					<linearGradient id="ul" x1="-3.4795" x2="-2.2525" y1="1086.2" y2="1084.9" gradientTransform="matrix(114 0 0 -63 856 68382)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#699399" offset="0"/>
-					<stop stop-color="#7F8484" offset="1"/>
-				</linearGradient>
-				<polygon points="584.04 0 508.91 0 572.68 38.661" fill="url(#ul)"/>
-					<linearGradient id="um" x1="-11.616" x2="-10.39" y1="1085.3" y2="1084.1" gradientTransform="matrix(40 0 0 -72 1044 78097)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#449CAC" offset="0"/>
-					<stop stop-color="#39A0B2" offset="1"/>
-				</linearGradient>
-				<polygon points="620.45 0 589.17 0 633.99 32.524" fill="url(#um)"/>
-					<linearGradient id="un" x1="-5.1914" x2="-3.9647" y1="1085.3" y2="1084" gradientTransform="matrix(83 0 0 -72 1011 78097)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#359CB0" offset="0"/>
-					<stop stop-color="#20ABC4" offset="1"/>
-				</linearGradient>
-				<polygon points="658.25 0 620.45 0 633.99 32.524" fill="url(#un)"/>
-					<linearGradient id="up" x1="-4.1377" x2="-2.9108" y1="1085.2" y2="1084" gradientTransform="matrix(101 0 0 -71 1023 77017)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#1FB2C9" offset="0"/>
-					<stop stop-color="#11B4D0" offset="1"/>
-				</linearGradient>
-				<polygon points="720.36 0 658.25 0 633.99 32.524" fill="url(#up)"/>
-					<linearGradient id="ur" x1="-3.9204" x2="-2.6938" y1="1083.1" y2="1081.9" gradientTransform="matrix(96 0 0 -136 1226 147253)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#17B0C9" offset="0"/>
-					<stop stop-color="#078CC0" offset="1"/>
-				</linearGradient>
-				<polygon points="949.64 0 904.41 0 876.79 76.709" fill="url(#ur)"/>
-					<linearGradient id="us" x1="-3.189" x2="-1.9625" y1="1085.2" y2="1084" gradientTransform="matrix(98 0 0 -78 1320 84588)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#0969A6" offset="0"/>
-					<stop stop-color="#0E498A" offset="1"/>
-				</linearGradient>
-				<polygon points="1112.8 0 1053.5 0 1111 46.025" fill="url(#us)"/>
-					<linearGradient id="ut" x1="-3.0977" x2="-1.8714" y1="1084.8" y2="1083.6" gradientTransform="matrix(106 0 0 -78 1407 84588)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#0A347C" offset="0"/>
-					<stop stop-color="#15317B" offset="1"/>
-				</linearGradient>
-				<polygon points="1178.7 0 1112.8 0 1111 46.025" fill="url(#ut)"/>
-					<linearGradient id="uu" x1="-2.8687" x2="-1.6417" y1="1084" y2="1082.8" gradientTransform="matrix(106 0 0 -104 1407 112700)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#203A7A" offset="0"/>
-					<stop stop-color="#18327C" offset="1"/>
-				</linearGradient>
-				<polygon points="1152.7 85.3 1211.7 0 1178.7 0 1111 46.025" fill="url(#uu)"/>
-					<linearGradient id="uv" x1="-3.4263" x2="-2.1985" y1="1083.6" y2="1082.3" gradientTransform="matrix(99 0 0 -112 1265 121467)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#A19F96" offset="0"/>
-					<stop stop-color="#8A8B8E" offset="1"/>
-				</linearGradient>
-				<polygon points="1049.7 230.13 1039.9 103.71 928.3 241.17" fill="url(#uv)"/>
-					<linearGradient id="uw" x1="-3.5283" x2="-2.3018" y1="1083.5" y2="1082.3" gradientTransform="matrix(95 0 0 -123 1323 133235)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#0F76AC" offset="0"/>
-					<stop stop-color="#256A96" offset="1"/>
-				</linearGradient>
-				<polygon points="1111 46.025 1053.5 0 1008.7 0 1039.9 103.71" fill="url(#uw)"/>
-					<linearGradient id="ux" x1="-3.4863" x2="-2.2592" y1="1083.5" y2="1082.3" gradientTransform="matrix(92 0 0 -118 1363 1.2794e5)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#917D83" offset="0"/>
-					<stop stop-color="#436489" offset="1"/>
-				</linearGradient>
-				<polygon points="1152.7 85.3 1039.9 103.71 1049.7 230.13" fill="url(#ux)"/>
-					<linearGradient id="uy" x1="-3.627" x2="-2.4" y1="1087.3" y2="1086.1" gradientTransform="matrix(92 0 0 -47 1363 51155)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#215388" offset="0"/>
-					<stop stop-color="#315E8A" offset="1"/>
-				</linearGradient>
-				<polygon points="1111 46.025 1039.9 103.71 1152.7 85.3" fill="url(#uy)"/>
-					<linearGradient id="uz" x1="-1.7803" x2="-.5535" y1="1084.1" y2="1082.9" gradientTransform="matrix(140 0 0 -93 1323 100994)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#BD7F7B" offset="0"/>
-					<stop stop-color="#A36A79" offset="1"/>
-				</linearGradient>
-				<polygon points="1221.4 184.72 1049.7 230.13 1146.6 298.86" fill="url(#uz)"/>
-					<linearGradient id="va" x1="-2.0757" x2="-.8486" y1="1083.4" y2="1082.1" gradientTransform="matrix(140 0 0 -118 1323 1.2794e5)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#99727B" offset="0"/>
-					<stop stop-color="#534A78" offset="1"/>
-				</linearGradient>
-				<polygon points="1221.4 184.72 1152.7 85.3 1049.7 230.13" fill="url(#va)"/>
-					<linearGradient id="vc" x1="-2.7017" x2="-1.4745" y1="1083.8" y2="1082.6" gradientTransform="matrix(111 0 0 -93 1431 100994)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#B2767D" offset="0"/>
-					<stop stop-color="#6F5A86" offset="1"/>
-				</linearGradient>
-				<polygon points="1282.7 280.45 1221.4 184.72 1146.6 298.86" fill="url(#vc)"/>
-					<linearGradient id="vd" x1="-2.9707" x2="-1.744" y1="1083.5" y2="1082.3" gradientTransform="matrix(95 0 0 -129 1452 139781)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#2E3978" offset="0"/>
-					<stop stop-color="#3E2F79" offset="1"/>
-				</linearGradient>
-				<polygon points="1269.2 26.388 1152.7 85.3 1221.4 184.72" fill="url(#vd)"/>
-					<linearGradient id="ve" x1="-3.7817" x2="-2.5553" y1="1083.8" y2="1082.6" gradientTransform="matrix(96 0 0 -108 1226 117020)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#1EB5C7" offset="0"/>
-					<stop stop-color="#1A9DBD" offset="1"/>
-				</linearGradient>
-				<polygon points="935.66 85.3 973.53 0 949.64 0 876.79 76.709" fill="url(#ve)"/>
-					<linearGradient id="vf" x1="-3.8247" x2="-2.5983" y1="1083.3" y2="1082.1" gradientTransform="matrix(91 0 0 -127 1273 137667)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#83A6A1" offset="0"/>
-					<stop stop-color="#449BAA" offset="1"/>
-				</linearGradient>
-				<polygon points="1039.9 103.71 935.66 85.3 928.3 241.17" fill="url(#vf)"/>
-					<linearGradient id="vg" x1="-4.2612" x2="-3.0344" y1="1083.4" y2="1082.2" gradientTransform="matrix(85 0 0 -123 1285 133235)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#1389B6" offset="0"/>
-					<stop stop-color="#2F97AF" offset="1"/>
-				</linearGradient>
-				<polygon points="1039.9 103.71 1008.7 0 973.53 0 935.66 85.3" fill="url(#vg)"/>
-					<linearGradient id="vh" x1="-4.0303" x2="-2.8034" y1="1084.2" y2="1083" gradientTransform="matrix(93 0 0 -94 1103 101988)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#1EC7D2" offset="0"/>
-					<stop stop-color="#31C3C9" offset="1"/>
-				</linearGradient>
-				<polygon points="836.33 140.53 722.28 77.937 808.12 193.31" fill="url(#vh)"/>
-					<linearGradient id="vi" x1="-2.5342" x2="-1.3073" y1="1086.9" y2="1085.7" gradientTransform="matrix(126 0 0 -52 1070 56585)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#1CC7D3" offset="0"/>
-					<stop stop-color="#28C4CB" offset="1"/>
-				</linearGradient>
-				<polygon points="876.79 76.709 722.28 77.937 836.33 140.53" fill="url(#vi)"/>
-					<linearGradient id="vj" x1="-3.7617" x2="-2.5347" y1="1084.4" y2="1083.2" gradientTransform="matrix(98 0 0 -82 1168 89067)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#46BBBF" offset="0"/>
-					<stop stop-color="#64B7B4" offset="1"/>
-				</linearGradient>
-				<polygon points="836.33 140.53 808.12 193.31 928.3 241.17" fill="url(#vj)"/>
-					<linearGradient id="vk" x1="-4.6309" x2="-3.4044" y1="1086.7" y2="1085.4" gradientTransform="matrix(81 0 0 -52 1208 56585)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#29BEC7" offset="0"/>
-					<stop stop-color="#30BBC3" offset="1"/>
-				</linearGradient>
-				<polygon points="935.66 85.3 876.79 76.709 836.33 140.53" fill="url(#vk)"/>
-					<linearGradient id="vl" x1="-4.3916" x2="-3.1649" y1="1083.5" y2="1082.3" gradientTransform="matrix(81 0 0 -127 1208 137667)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#7DAFA9" offset="0"/>
-					<stop stop-color="#3CB8BE" offset="1"/>
-				</linearGradient>
-				<polygon points="928.3 241.17 935.66 85.3 836.33 140.53" fill="url(#vl)"/>
-					<linearGradient id="vn" x1="-2.1724" x2="-.9454" y1="1084.2" y2="1082.9" gradientTransform="matrix(146 0 0 -82 1003 89225)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#3B4C9E" offset="0"/>
-					<stop stop-color="#706593" offset="1"/>
-				</linearGradient>
-				<polygon points="749.26 435.09 843.68 334.45 664.65 368.82" fill="url(#vn)"/>
-					<linearGradient id="vo" x1="-4.2046" x2="-2.9779" y1="1083.1" y2="1081.8" gradientTransform="matrix(89 0 0 -124 1129 134627)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#865588" offset="0"/>
-					<stop stop-color="#B37685" offset="1"/>
-				</linearGradient>
-				<polygon points="858.4 486.64 843.68 334.45 749.26 435.09" fill="url(#vo)"/>
-					<linearGradient id="vq" x1="-3.686" x2="-2.4595" y1="1083.4" y2="1082.1" gradientTransform="matrix(98 0 0 -115 1168 1.2478e5)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#5BB4B7" offset="0"/>
-					<stop stop-color="#94A39D" offset="1"/>
-				</linearGradient>
-				<polygon points="928.3 241.17 808.12 193.31 843.68 334.45" fill="url(#vq)"/>
-					<linearGradient id="vr" x1="-3.0063" x2="-1.7798" y1="1082.9" y2="1081.7" gradientTransform="matrix(115 0 0 -124 1180 134627)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#DA7D7A" offset="0"/>
-					<stop stop-color="#CD9D81" offset="1"/>
-				</linearGradient>
-				<polygon points="984.71 390.91 843.68 334.45 858.4 486.64" fill="url(#vr)"/>
-					<linearGradient id="vs" x1="-2.9321" x2="-1.7051" y1="1083.2" y2="1081.9" gradientTransform="matrix(115 0 0 -122 1180 132389)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#BAA692" offset="0"/>
-					<stop stop-color="#C8A287" offset="1"/>
-				</linearGradient>
-				<polygon points="984.71 390.91 928.3 241.17 843.68 334.45" fill="url(#vs)"/>
-					<linearGradient id="vt" x1="-5.4487" x2="-4.222" y1="1084" y2="1082.8" gradientTransform="matrix(75 0 0 -92 1024 99971)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#2553AB" offset="0"/>
-					<stop stop-color="#2364B1" offset="1"/>
-				</linearGradient>
-				<polygon points="695.3 255.9 603.33 309.9 664.65 368.82" fill="url(#vt)"/>
-					<linearGradient id="vu" x1="-2.5313" x2="-1.3044" y1="1083.6" y2="1082.4" gradientTransform="matrix(146 0 0 -92 1003 99971)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#2D5AA9" offset="0"/>
-					<stop stop-color="#508AAA" offset="1"/>
-				</linearGradient>
-				<polygon points="843.68 334.45 695.3 255.9 664.65 368.82" fill="url(#vu)"/>
-					<linearGradient id="vv" x1="-3.7349" x2="-2.5081" y1="1083.9" y2="1082.7" gradientTransform="matrix(104 0 0 -94 1058 102039)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#20BACE" offset="0"/>
-					<stop stop-color="#2AADC5" offset="1"/>
-				</linearGradient>
-				<polygon points="808.12 193.31 680.59 140.53 695.3 255.9" fill="url(#vv)"/>
-					<linearGradient id="vw" x1="-2.8594" x2="-1.6328" y1="1083.5" y2="1082.3" gradientTransform="matrix(121 0 0 -115 1053 1.2478e5)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#3DB1BF" offset="0"/>
-					<stop stop-color="#549AAE" offset="1"/>
-				</linearGradient>
-				<polygon points="843.68 334.45 808.12 193.31 695.3 255.9" fill="url(#vw)"/>
-					<linearGradient id="vx" x1="-4.0972" x2="-2.8702" y1="1083.2" y2="1082" gradientTransform="matrix(104 0 0 -124 919 134436)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#516996" offset="0"/>
-					<stop stop-color="#408EAE" offset="1"/>
-				</linearGradient>
-				<polygon points="569 100.03 510.14 252.22 637.67 237.49" fill="url(#vx)"/>
-					<linearGradient id="vz" x1="-3.708" x2="-2.4813" y1="1085.7" y2="1084.5" gradientTransform="matrix(104 0 0 -59 919 64283)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#475795" offset="0"/>
-					<stop stop-color="#2B66AC" offset="1"/>
-				</linearGradient>
-				<polygon points="637.67 237.49 510.14 252.22 603.33 309.9" fill="url(#vz)"/>
-					<linearGradient id="wa" x1="-4.4185" x2="-3.1916" y1="1083.7" y2="1082.5" gradientTransform="matrix(91 0 0 -112 980 121464)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#40A3B5" offset="0"/>
-					<stop stop-color="#26A4C3" offset="1"/>
-				</linearGradient>
-				<polygon points="680.59 140.53 569 100.03 637.67 237.49" fill="url(#wa)"/>
-					<linearGradient id="wb" x1="-5.6885" x2="-4.4619" y1="1085.4" y2="1084.2" gradientTransform="matrix(75 0 0 -59 1024 64283)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#2662AF" offset="0"/>
-					<stop stop-color="#2487BA" offset="1"/>
-				</linearGradient>
-				<polygon points="637.67 237.49 603.33 309.9 695.3 255.9" fill="url(#wb)"/>
-					<linearGradient id="wc" x1="-9.4409" x2="-8.2139" y1="1084" y2="1082.8" gradientTransform="matrix(47 0 0 -94 1080 102039)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#20B0CA" offset="0"/>
-					<stop stop-color="#2396BF" offset="1"/>
-				</linearGradient>
-				<polygon points="695.3 255.9 680.59 140.53 637.67 237.49" fill="url(#wc)"/>
-					<linearGradient id="wd" x1="-4.4263" x2="-3.1995" y1="1084.1" y2="1082.9" gradientTransform="matrix(97 0 0 -81 823 88173)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#380E8B" offset="0"/>
-					<stop stop-color="#32119C" offset="1"/>
-				</linearGradient>
-				<polygon points="502.78 370.04 383.83 436.32 447.59 469.46" fill="url(#wd)"/>
-					<linearGradient id="we" x1="-5.4219" x2="-4.195" y1="1083.6" y2="1082.4" gradientTransform="matrix(82 0 0 -96 935 104292)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#4A438E" offset="0"/>
-					<stop stop-color="#31349D" offset="1"/>
-				</linearGradient>
-				<polygon points="603.33 309.9 510.14 252.22 502.78 370.04" fill="url(#we)"/>
-					<linearGradient id="wf" x1="-5.0825" x2="-3.8558" y1="1083.2" y2="1082" gradientTransform="matrix(82 0 0 -127 935 137850)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#2A19AE" offset="0"/>
-					<stop stop-color="#2B2CA3" offset="1"/>
-				</linearGradient>
-				<polygon points="603.33 309.9 502.78 370.04 597.2 465.78" fill="url(#wf)"/>
-					<linearGradient id="wg" x1="-4.6304" x2="-3.4033" y1="1083.4" y2="1082.2" gradientTransform="matrix(100 0 0 -113 726 122590)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#533E67" offset="0"/>
-					<stop stop-color="#6A4666" offset="1"/>
-				</linearGradient>
-				<polygon points="369.11 155.26 268.56 293.95 391.18 273.08" fill="url(#wg)"/>
-					<linearGradient id="wh" x1="-4.3066" x2="-3.0798" y1="1083.2" y2="1082" gradientTransform="matrix(100 0 0 -133 726 144306)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#4A2E67" offset="0"/>
-					<stop stop-color="#4E216F" offset="1"/>
-				</linearGradient>
-				<polygon points="391.18 273.08 268.56 293.95 383.83 436.32" fill="url(#wh)"/>
-					<linearGradient id="wi" x1="-9.7891" x2="-8.5626" y1="1083.9" y2="1082.7" gradientTransform="matrix(50 0 0 -96 858 104213)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#7E5565" offset="0"/>
-					<stop stop-color="#774767" offset="1"/>
-				</linearGradient>
-				<polygon points="430.43 201.9 369.11 155.26 391.18 273.08" fill="url(#wi)"/>
-					<linearGradient id="wk" x1="-4.7104" x2="-3.4837" y1="1082.8" y2="1081.5" gradientTransform="matrix(97 0 0 -133 823 144306)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#40147F" offset="0"/>
-					<stop stop-color="#482280" offset="1"/>
-				</linearGradient>
-				<polygon points="391.18 273.08 383.83 436.32 502.78 370.04" fill="url(#wk)"/>
-					<linearGradient id="wl" x1="-4.7197" x2="-3.4929" y1="1085.5" y2="1084.3" gradientTransform="matrix(97 0 0 -58 829 63173)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#7D4C6C" offset="0"/>
-					<stop stop-color="#664274" offset="1"/>
-				</linearGradient>
-				<polygon points="510.14 252.22 430.43 201.9 391.18 273.08" fill="url(#wl)"/>
-					<linearGradient id="wm" x1="-4.2617" x2="-3.0349" y1="1084" y2="1082.8" gradientTransform="matrix(97 0 0 -96 829 104292)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#44268C" offset="0"/>
-					<stop stop-color="#5B3C79" offset="1"/>
-				</linearGradient>
-				<polygon points="502.78 370.04 510.14 252.22 391.18 273.08" fill="url(#wm)"/>
-					<linearGradient id="wn" x1="-8.3281" x2="-7.1011" y1="1084.8" y2="1083.6" gradientTransform="matrix(58 0 0 -79 828.97 85757)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#896766" offset="0"/>
-					<stop stop-color="#916664" offset="1"/>
-				</linearGradient>
-				<polygon points="414.48 79.164 343.36 58.298 369.11 155.26" fill="url(#wn)"/>
-					<linearGradient id="wo" x1="-5.627" x2="-4.4005" y1="1084.2" y2="1083" gradientTransform="matrix(83 0 0 -96 804 104055)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#936864" offset="0"/>
-					<stop stop-color="#A96A5F" offset="1"/>
-				</linearGradient>
-				<polygon points="414.48 79.164 435.08 0 404.56 0 343.36 58.298" fill="url(#wo)"/>
-					<linearGradient id="wp" x1="-9.7412" x2="-8.5145" y1="1084" y2="1082.8" gradientTransform="matrix(50 0 0 -100 858 108475)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#895F65" offset="0"/>
-					<stop stop-color="#946166" offset="1"/>
-				</linearGradient>
-				<polygon points="430.43 201.9 414.48 79.164 369.11 155.26" fill="url(#wp)"/>
-					<linearGradient id="wr" x1="-6.1987" x2="-4.9721" y1="1083.9" y2="1082.7" gradientTransform="matrix(74 0 0 -100 871 108475)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#90626B" offset="0"/>
-					<stop stop-color="#977672" offset="1"/>
-				</linearGradient>
-				<polygon points="505.23 112.3 414.48 79.164 430.43 201.9" fill="url(#wr)"/>
-					<linearGradient id="ws" x1="-6.332" x2="-5.1052" y1="1083.4" y2="1082.2" gradientTransform="matrix(74 0 0 -123 871 133242)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#AE7063" offset="0"/>
-					<stop stop-color="#9B7871" offset="1"/>
-				</linearGradient>
-				<polygon points="505.23 112.3 460.53 0 435.08 0 414.48 79.164" fill="url(#ws)"/>
-					<linearGradient id="wt" x1="-8.8613" x2="-7.635" y1="1083.3" y2="1082" gradientTransform="matrix(53 0 0 -109 919 118441)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#2E0CA7" offset="0"/>
-					<stop stop-color="#3011AB" offset="1"/>
-				</linearGradient>
-				<polygon points="512.59 503.82 502.78 370.04 447.59 469.46" fill="url(#wt)"/>
-					<linearGradient id="wu" x1="-5.8662" x2="-4.6396" y1="1083" y2="1081.8" gradientTransform="matrix(77 0 0 -109 940 118441)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#2E15A6" offset="0"/>
-					<stop stop-color="#2E0EB7" offset="1"/>
-				</linearGradient>
-				<polygon points="597.2 465.78 502.78 370.04 512.59 503.82" fill="url(#wu)"/>
-					<linearGradient id="ww" x1="-3.9229" x2="-2.696" y1="1082.5" y2="1081.3" gradientTransform="matrix(101 0 0 -164 924 177974)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#3E0FC0" offset="0"/>
-					<stop stop-color="#6C11CD" offset="1"/>
-				</linearGradient>
-				<polygon points="512.59 503.82 636.44 667.06 597.2 465.78" fill="url(#ww)"/>
-					<linearGradient id="wx" x1="-4.5562" x2="-3.3296" y1="1082.3" y2="1081.1" gradientTransform="matrix(90 0 0 -128 991 139313)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#E443E5" offset="0"/>
-					<stop stop-color="#F360E8" offset="1"/>
-				</linearGradient>
-				<polygon points="581.26 778.75 624.18 935.85 691.62 841.34" fill="url(#wx)"/>
-					<linearGradient id="wy" x1="-4.4297" x2="-3.203" y1="1082.8" y2="1081.6" gradientTransform="matrix(90 0 0 -108 991 117636)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#E237E6" offset="0"/>
-					<stop stop-color="#EE43E7" offset="1"/>
-				</linearGradient>
-				<polygon points="581.26 778.75 691.62 841.34 684.27 708.79" fill="url(#wy)"/>
-					<linearGradient id="wz" x1="-8.1523" x2="-6.9256" y1="1082.6" y2="1081.4" gradientTransform="matrix(53 0 0 -108 1112 117636)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#ED37E7" offset="0"/>
-					<stop stop-color="#F54EE7" offset="1"/>
-				</linearGradient>
-				<polygon points="684.27 708.79 691.62 841.34 749.26 759.11" fill="url(#wz)"/>
-					<linearGradient id="xa" x1="-4.458" x2="-3.2311" y1="1082.9" y2="1081.6" gradientTransform="matrix(89 0 0 -88 1082 96057)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#F753E6" offset="0"/>
-					<stop stop-color="#F865E6" offset="1"/>
-				</linearGradient>
-				<polygon points="691.62 841.34 800.76 867.11 749.26 759.11" fill="url(#xa)"/>
-					<linearGradient id="xb" x1="-2.5776" x2="-1.351" y1="1082.5" y2="1081.3" gradientTransform="matrix(98 0 0 -156 1630 169284)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#1296C7" offset="0"/>
-					<stop stop-color="#0D9ECE" offset="1"/>
-				</linearGradient>
-				<polygon points="1374.7 527.14 1494.8 605.69 1456.8 414.23" fill="url(#xb)"/>
-					<linearGradient id="xc" x1="-4.7197" x2="-3.4927" y1="1083.5" y2="1082.3" gradientTransform="matrix(60 0 0 -103 1706 1.1189e5)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#1799D5" offset="0"/>
-					<stop stop-color="#13B3DD" offset="1"/>
-				</linearGradient>
-				<polygon points="1494.8 338.13 1421.3 287.81 1456.8 414.23" fill="url(#xc)"/>
-					<linearGradient id="xd" x1="-2.4082" x2="-1.1813" y1="1084.8" y2="1083.6" gradientTransform="matrix(106 0 0 -62 1689 67608)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#12BCE1" offset="0"/>
-					<stop stop-color="#11C4E1" offset="1"/>
-				</linearGradient>
-				<polygon points="1456.8 414.23 1586.8 413 1494.8 338.13" fill="url(#xd)"/>
-					<linearGradient id="xe" x1="-3.6646" x2="-2.4379" y1="1082.3" y2="1081.1" gradientTransform="matrix(75 0 0 -156 1720 169284)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#0A95C9" offset="0"/>
-					<stop stop-color="#0CABD4" offset="1"/>
-				</linearGradient>
-				<polygon points="1494.8 605.69 1548.8 589.74 1456.8 414.23" fill="url(#xe)"/>
-					<linearGradient id="xf" x1="-1.9746" x2="-.7477" y1="1082.8" y2="1081.6" gradientTransform="matrix(106 0 0 -144 1689 156311)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#0CB0D6" offset="0"/>
-					<stop stop-color="#11C5E0" offset="1"/>
-				</linearGradient>
-				<polygon points="1548.8 589.74 1586.8 413 1456.8 414.23" fill="url(#xf)"/>
-					<linearGradient id="xh" x1="-2.6143" x2="-1.3869" y1="1082.5" y2="1081.3" gradientTransform="matrix(76 0 0 -109 2069 118674)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#1D0581" offset="0"/>
-					<stop stop-color="#22057F" offset="1"/>
-				</linearGradient>
-				<polygon points="1886 789.79 1924 788.29 1924 671.32 1916.7 656.01" fill="url(#xh)"/>
-					<linearGradient id="xi" x1="-3.7222" x2="-2.4951" y1="1083.1" y2="1081.8" gradientTransform="matrix(56 0 0 -95 2100 103445)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#0D158D" offset="0"/>
-					<stop stop-color="#120A82" offset="1"/>
-				</linearGradient>
-				<polygon points="1916.7 656.01 1924 642.51 1924 547.3 1899.5 539.42" fill="url(#xi)"/>
-					<linearGradient id="xj" x1="-2.2881" x2="-1.061" y1="1083" y2="1081.8" gradientTransform="matrix(88 0 0 -97 2068 105528)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#0B1582" offset="0"/>
-					<stop stop-color="#0D0B69" offset="1"/>
-				</linearGradient>
-				<polygon points="1924 547.3 1924 517.38 1899.5 539.42" fill="url(#xj)"/>
-					<linearGradient id="xk" x1="-4.1709" x2="-2.9444" y1="1081.9" y2="1080.7" gradientTransform="matrix(51 0 0 -183 2119 198591)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#180785" offset="0"/>
-					<stop stop-color="#220576" offset="1"/>
-				</linearGradient>
-				<polygon points="1924 671.32 1924 642.51 1916.7 656.01" fill="url(#xk)"/>
-					<linearGradient id="xl" x1="-5.7715" x2="-4.5448" y1="1082.8" y2="1081.5" gradientTransform="matrix(83 0 0 -104 806 113189)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#5C0F7D" offset="0"/>
-					<stop stop-color="#610F91" offset="1"/>
-				</linearGradient>
-				<polygon points="365.43 685.47 447.59 676.88 345.81 557.83" fill="url(#xl)"/>
-					<linearGradient id="xm" x1="-6.769" x2="-5.5422" y1="1083.2" y2="1081.9" gradientTransform="matrix(67 0 0 -98 837.97 1.068e5)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#69118A" offset="0"/>
-					<stop stop-color="#7013A8" offset="1"/>
-				</linearGradient>
-				<polygon points="446.37 797.16 447.59 676.88 365.43 685.47" fill="url(#xm)"/>
-					<linearGradient id="xn" x1="-4.0308" x2="-2.804" y1="1082.6" y2="1081.4" gradientTransform="matrix(110 0 0 -98 861 106800)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#8F19B9" offset="0"/>
-					<stop stop-color="#9A1DC8" offset="1"/>
-				</linearGradient>
-				<polygon points="446.37 797.16 581.26 778.75 447.59 676.88" fill="url(#xn)"/>
-					<linearGradient id="xo" x1="-2.189" x2="-.9622" y1="1083.3" y2="1082" gradientTransform="matrix(154 0 0 -91 818 99225)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#C225DF" offset="0"/>
-					<stop stop-color="#9B16CF" offset="1"/>
-				</linearGradient>
-				<polygon points="447.59 676.88 581.26 778.75 636.44 667.06" fill="url(#xo)"/>
-					<linearGradient id="xp" x1="-3.71" x2="-2.4828" y1="1083.5" y2="1082.2" gradientTransform="matrix(116 0 0 -90 773 97983)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#4D0D89" offset="0"/>
-					<stop stop-color="#3B0AAC" offset="1"/>
-				</linearGradient>
-				<polygon points="447.59 469.46 345.81 557.83 488.06 579.92" fill="url(#xp)"/>
-					<linearGradient id="xq" x1="-3.5205" x2="-2.2936" y1="1083.3" y2="1082.1" gradientTransform="matrix(116 0 0 -97 773 105622)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#540E8B" offset="0"/>
-					<stop stop-color="#4F0CB2" offset="1"/>
-				</linearGradient>
-				<polygon points="345.81 557.83 447.59 676.88 488.06 579.92" fill="url(#xq)"/>
-					<linearGradient id="xu" x1="-8.7998" x2="-7.573" y1="1083.6" y2="1082.4" gradientTransform="matrix(53 0 0 -90 919 97983)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#320AAD" offset="0"/>
-					<stop stop-color="#380ABC" offset="1"/>
-				</linearGradient>
-				<polygon points="488.06 579.92 512.59 503.82 447.59 469.46" fill="url(#xu)"/>
-					<linearGradient id="xv" x1="-2.647" x2="-1.4202" y1="1083.3" y2="1082.1" gradientTransform="matrix(154 0 0 -79 818 86182)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#670FC1" offset="0"/>
-					<stop stop-color="#7D11D1" offset="1"/>
-				</linearGradient>
-				<polygon points="447.59 676.88 636.44 667.06 488.06 579.92" fill="url(#xv)"/>
-					<linearGradient id="xw" x1="-3.3647" x2="-2.1378" y1="1082.5" y2="1081.3" gradientTransform="matrix(121 0 0 -133 884 144494)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#440CC6" offset="0"/>
-					<stop stop-color="#7510D0" offset="1"/>
-				</linearGradient>
-				<polygon points="488.06 579.92 636.44 667.06 512.59 503.82" fill="url(#xw)"/>
-					<linearGradient id="xx" x1="-6.5078" x2="-5.2811" y1="1083.6" y2="1082.3" gradientTransform="matrix(77 0 0 -74 683 80809)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#D0433B" offset="0"/>
-					<stop stop-color="#BE3543" offset="1"/>
-				</linearGradient>
-				<polygon points="221.96 619.19 187.62 710.02 282.05 641.28" fill="url(#xx)"/>
-					<linearGradient id="xy" x1="-4.6035" x2="-3.3768" y1="1082.4" y2="1081.2" gradientTransform="matrix(100 0 0 -149 660 161902)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#C13A3D" offset="0"/>
-					<stop stop-color="#94214E" offset="1"/>
-				</linearGradient>
-				<polygon points="282.05 641.28 187.62 710.02 310.25 824.16" fill="url(#xy)"/>
-					<linearGradient id="xz" x1="-4.5244" x2="-3.2979" y1="1084.1" y2="1082.9" gradientTransform="matrix(101 0 0 -68 687 74273)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#B63146" offset="0"/>
-					<stop stop-color="#8B1D59" offset="1"/>
-				</linearGradient>
-				<polygon points="345.81 557.83 221.96 619.19 282.05 641.28" fill="url(#xz)"/>
-					<linearGradient id="ya" x1="-7.1313" x2="-5.9041" y1="1082.3" y2="1081.1" gradientTransform="matrix(68 0 0 -149 768.97 1.619e5)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#781659" offset="0"/>
-					<stop stop-color="#861A5F" offset="1"/>
-				</linearGradient>
-				<polygon points="282.05 641.28 310.25 824.16 365.43 685.47" fill="url(#ya)"/>
-					<linearGradient id="yb" x1="-7.127" x2="-5.9005" y1="1083" y2="1081.8" gradientTransform="matrix(68 0 0 -104 768.9688 113189)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#6B146A" offset="0"/>
-					<stop stop-color="#821A63" offset="1"/>
-				</linearGradient>
-				<polygon points="345.81 557.83 282.05 641.28 365.43 685.47" fill="url(#yb)"/>
-					<linearGradient id="yc" x1="-8.8848" x2="-7.6582" y1="1082.6" y2="1081.4" gradientTransform="matrix(56 0 0 -95 804 103677)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#631364" offset="0"/>
-					<stop stop-color="#58127B" offset="1"/>
-				</linearGradient>
-				<polygon points="321.29 940.76 378.92 868.34 310.25 824.16" fill="url(#yc)"/>
-					<linearGradient id="yd" x1="-3.7983" x2="-2.5714" y1="1084" y2="1082.7" gradientTransform="matrix(111 0 0 -58 749 63658)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#6C146C" offset="0"/>
-					<stop stop-color="#751691" offset="1"/>
-				</linearGradient>
-				<polygon points="310.25 824.16 378.92 868.34 446.37 797.16" fill="url(#yd)"/>
-					<linearGradient id="yf" x1="-2.2339" x2="-1.0071" y1="1082.4" y2="1081.1" gradientTransform="matrix(169 0 0 -114 747 124194)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#9920B6" offset="0"/>
-					<stop stop-color="#AA33B9" offset="1"/>
-				</linearGradient>
-				<polygon points="378.92 868.34 586.16 937.07 446.37 797.16" fill="url(#yf)"/>
-					<linearGradient id="yg" x1="-6.311" x2="-5.0838" y1="1082.9" y2="1081.7" gradientTransform="matrix(81 0 0 -90 615 98179)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#C13834" offset="0"/>
-					<stop stop-color="#C13B37" offset="1"/>
-				</linearGradient>
-				<polygon points="187.62 710.02 109.14 820.48 208.47 803.29" fill="url(#yg)"/>
-					<linearGradient id="yh" x1="-4.9229" x2="-3.696" y1="1082.7" y2="1081.5" gradientTransform="matrix(100 0 0 -93 660 101422)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#BF393A" offset="0"/>
-					<stop stop-color="#932246" offset="1"/>
-				</linearGradient>
-				<polygon points="187.62 710.02 208.47 803.29 310.25 824.16" fill="url(#yh)"/>
-					<linearGradient id="yi" x1="-5.6855" x2="-4.4587" y1="1082.1" y2="1080.9" gradientTransform="matrix(72 0 0 -149 1044 1.6214e5)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#F16BE9" offset="0"/>
-					<stop stop-color="#EC63E5" offset="1"/>
-				</linearGradient>
-				<polygon points="624.18 935.85 651.56 1080 666.38 1080 712.47 927.26" fill="url(#yi)"/>
-					<linearGradient id="yj" x1="-5.9043" x2="-4.6773" y1="1082.9" y2="1081.7" gradientTransform="matrix(72 0 0 -77 1044 84233)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#F46DE8" offset="0"/>
-					<stop stop-color="#F76DE7" offset="1"/>
-				</linearGradient>
-				<polygon points="624.18 935.85 712.47 927.26 691.62 841.34" fill="url(#yj)"/>
-					<linearGradient id="yk" x1="-2.916" x2="-1.6892" y1="1081.8" y2="1080.6" gradientTransform="matrix(128 0 0 -149 1015 162135)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#E753E3" offset="0"/>
-					<stop stop-color="#F25FE5" offset="1"/>
-				</linearGradient>
-				<polygon points="712.47 927.26 666.38 1080 724.89 1080 814.25 1040.2" fill="url(#yk)"/>
-					<linearGradient id="yl" x1="-4.4204" x2="-3.1939" y1="1083.2" y2="1081.9" gradientTransform="matrix(89 0 0 -70 1082 76666)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#F86AE6" offset="0"/>
-					<stop stop-color="#F872E5" offset="1"/>
-				</linearGradient>
-				<polygon points="691.62 841.34 712.47 927.26 800.76 867.11" fill="url(#yl)"/>
-					<linearGradient id="ym" x1="-2.8506" x2="-1.6239" y1="1082.6" y2="1081.4" gradientTransform="matrix(123 0 0 -92 1065 100469)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#F96FE3" offset="0"/>
-					<stop stop-color="#F665E3" offset="1"/>
-				</linearGradient>
-				<polygon points="712.47 927.26 863.3 980.03 800.76 867.11" fill="url(#ym)"/>
-					<linearGradient id="yn" x1="-2.8027" x2="-1.5757" y1="1082.6" y2="1081.3" gradientTransform="matrix(123 0 0 -92 1065 100518)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#F154E4" offset="0"/>
-					<stop stop-color="#F460E4" offset="1"/>
-				</linearGradient>
-				<polygon points="814.25 1040.2 863.3 980.03 712.47 927.26" fill="url(#yn)"/>
-					<linearGradient id="yo" x1="-11.079" x2="-9.8521" y1="1082.2" y2="1081" gradientTransform="matrix(41 0 0 -126 1034 137279)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#E65FE5" offset="0"/>
-					<stop stop-color="#E45BE3" offset="1"/>
-				</linearGradient>
-				<polygon points="573.9 975.12 593.97 1080 597.89 1080 624.18 935.85" fill="url(#yo)"/>
-					<linearGradient id="yq" x1="-9.0435" x2="-7.8164" y1="1081.9" y2="1080.6" gradientTransform="matrix(50 0 0 -142 1043 154575)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#EB62E7" offset="0"/>
-					<stop stop-color="#DC4EE1" offset="1"/>
-				</linearGradient>
-				<polygon points="597.89 1080 651.56 1080 624.18 935.85" fill="url(#yq)"/>
-					<linearGradient id="yr" x1="-5.6621" x2="-4.4355" y1="1083" y2="1081.7" gradientTransform="matrix(84 0 0 -65 785 71342)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#49138D" offset="0"/>
-					<stop stop-color="#571AA6" offset="1"/>
-				</linearGradient>
-				<polygon points="353.17 1020.5 424.29 1002.1 321.29 940.76" fill="url(#yr)"/>
-					<linearGradient id="yt" x1="-5.5161" x2="-4.2893" y1="1082.4" y2="1081.2" gradientTransform="matrix(84 0 0 -109 785 118847)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#511489" offset="0"/>
-					<stop stop-color="#6B1B9D" offset="1"/>
-				</linearGradient>
-				<polygon points="321.29 940.76 424.29 1002.1 378.92 868.34" fill="url(#yt)"/>
-					<linearGradient id="yu" x1="-8.083" x2="-6.8564" y1="1082.3" y2="1081.1" gradientTransform="matrix(58 0 0 -120 836.9688 130847)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#4617A5" offset="0"/>
-					<stop stop-color="#551CAC" offset="1"/>
-				</linearGradient>
-				<polygon points="353.17 1020.5 379.77 1080 417.16 1080 424.29 1002.1" fill="url(#yu)"/>
-					<linearGradient id="yv" x1="-2.2695" x2="-1.0429" y1="1082.3" y2="1081.1" gradientTransform="matrix(169 0 0 -109 747 118847)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#8922A5" offset="0"/>
-					<stop stop-color="#AF3CCB" offset="1"/>
-				</linearGradient>
-				<polygon points="378.92 868.34 424.29 1002.1 586.16 937.07" fill="url(#yv)"/>
-					<linearGradient id="yw" x1="-2.5586" x2="-1.3319" y1="1082" y2="1080.8" gradientTransform="matrix(151 0 0 -120 791 130847)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#6322B2" offset="0"/>
-					<stop stop-color="#9E35C9" offset="1"/>
-				</linearGradient>
-				<polygon points="417.16 1080 575.59 1080 424.29 1002.1" fill="url(#yw)"/>
-					<linearGradient id="yx" x1="-3.0063" x2="-1.7785" y1="1083.6" y2="1082.4" gradientTransform="matrix(132 0 0 -53 821 58367)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#DC54E0" offset="0"/>
-					<stop stop-color="#BD45D3" offset="1"/>
-				</linearGradient>
-				<polygon points="424.29 1002.1 573.9 975.12 586.16 937.07" fill="url(#yx)"/>
-					<linearGradient id="yy" x1="-2.5815" x2="-1.355" y1="1082.6" y2="1081.3" gradientTransform="matrix(140 0 0 -94 813 102719)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#D854E0" offset="0"/>
-					<stop stop-color="#B33ED0" offset="1"/>
-				</linearGradient>
-				<polygon points="424.29 1002.1 575.59 1080 593.97 1080 573.9 975.12" fill="url(#yy)"/>
-					<linearGradient id="yz" x1="-9.0542" x2="-7.8282" y1="1082.4" y2="1081.1" gradientTransform="matrix(55 0 0 -98 751 107102)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#1C0473" offset="0"/>
-					<stop stop-color="#210782" offset="1"/>
-				</linearGradient>
-				<polygon points="253.88 1080 306.74 1080 257.52 1047.5" fill="url(#yz)"/>
-					<linearGradient id="za" x1="-6.0005" x2="-4.7736" y1="1083.6" y2="1082.3" gradientTransform="matrix(78 0 0 -51 739 56273)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#250884" offset="0"/>
-					<stop stop-color="#2D0C93" offset="1"/>
-				</linearGradient>
-				<polygon points="257.52 1047.5 306.74 1080 313.56 1080 353.17 1020.5" fill="url(#za)"/>
-					<linearGradient id="zc" x1="-5.792" x2="-4.5651" y1="1082.2" y2="1080.9" gradientTransform="matrix(81 0 0 -105 780 114647)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#37129D" offset="0"/>
-					<stop stop-color="#2F0F99" offset="1"/>
-				</linearGradient>
-				<polygon points="313.56 1080 379.77 1080 353.17 1020.5" fill="url(#zc)"/>
-					<linearGradient id="zd" x1="-1.3403" x2="-.1133" y1="1083.8" y2="1082.6" gradientTransform="matrix(142 0 0 -109 1602.9 1.1821e5)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#2D5FCC" offset="0"/>
-					<stop stop-color="#413FC1" offset="1"/>
-				</linearGradient>
-				<polygon points="1464.2 217.85 1569.6 84.073 1395.5 155.26" fill="url(#zd)"/>
-					<linearGradient id="ze" x1="-2.4146" x2="-1.1876" y1="1085.5" y2="1084.3" gradientTransform="matrix(113 0 0 -58 1540 63185)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#4764A6" offset="0"/>
-					<stop stop-color="#2B66B7" offset="1"/>
-				</linearGradient>
-				<polygon points="1345.2 216.62 1282.7 280.45 1421.3 287.81" fill="url(#ze)"/>
-					<linearGradient id="zf" x1="-2.8711" x2="-1.644" y1="1086.4" y2="1085.1" gradientTransform="matrix(97 0 0 -51 1607 55568)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#3544B5" offset="0"/>
-					<stop stop-color="#2C58BB" offset="1"/>
-				</linearGradient>
-				<polygon points="1464.2 217.85 1395.5 155.26 1345.2 216.62" fill="url(#zf)"/>
-					<linearGradient id="zg" x1="-2.5073" x2="-1.2804" y1="1085.9" y2="1084.6" gradientTransform="matrix(97 0 0 -58 1607 63185)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#1F77C9" offset="0"/>
-					<stop stop-color="#2961BE" offset="1"/>
-				</linearGradient>
-				<polygon points="1421.3 287.81 1464.2 217.85 1345.2 216.62" fill="url(#zg)"/>
-					<linearGradient id="zh" x1="-3.1577" x2="-1.9307" y1="1083.2" y2="1082" gradientTransform="matrix(96 0 0 -129 1507 139781)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#4C367C" offset="0"/>
-					<stop stop-color="#362388" offset="1"/>
-				</linearGradient>
-				<polygon points="1339.1 125.8 1269.2 26.388 1221.4 184.72" fill="url(#zh)"/>
-					<linearGradient id="zi" x1="-5.4019" x2="-4.175" y1="1084.9" y2="1083.7" gradientTransform="matrix(57 0 0 -81 1585 87893)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#341B86" offset="0"/>
-					<stop stop-color="#412194" offset="1"/>
-				</linearGradient>
-				<polygon points="1337.9 79.164 1269.2 26.388 1339.1 125.8" fill="url(#zi)"/>
-					<linearGradient id="zj" x1="-6.8906" x2="-5.6641" y1="1084.8" y2="1083.6" gradientTransform="matrix(46 0 0 -74 1653 80407)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#3841A6" offset="0"/>
-					<stop stop-color="#3C33A4" offset="1"/>
-				</linearGradient>
-				<polygon points="1395.5 155.26 1339.1 125.8 1345.2 216.62" fill="url(#zj)"/>
-					<linearGradient id="zk" x1="-10.527" x2="-9.3005" y1="1088.5" y2="1087.3" gradientTransform="matrix(32 0 0 -38 1666 41453)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#442199" offset="0"/>
-					<stop stop-color="#43289E" offset="1"/>
-				</linearGradient>
-				<polygon points="1377.1 122.12 1337.9 79.164 1339.1 125.8" fill="url(#zk)"/>
-					<linearGradient id="zl" x1="-.7627" x2=".4642" y1="1083.9" y2="1082.7" gradientTransform="matrix(204 0 0 -108 1494 117050)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#571EA6" offset="0"/>
-					<stop stop-color="#641DB2" offset="1"/>
-				</linearGradient>
-				<polygon points="1377.1 122.12 1571.4 0 1558.9 0 1337.9 79.164" fill="url(#zl)"/>
-					<linearGradient id="zn" x1="-6.6519" x2="-5.4252" y1="1091.8" y2="1090.6" gradientTransform="matrix(46 0 0 -27 1653 29597)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#402B9E" offset="0"/>
-					<stop stop-color="#4031A9" offset="1"/>
-				</linearGradient>
-				<polygon points="1395.5 155.26 1377.1 122.12 1339.1 125.8" fill="url(#zn)"/>
-					<linearGradient id="zo" x1="-1.2183" x2=".0088" y1="1086.1" y2="1084.9" gradientTransform="matrix(157 0 0 -58 1573 63077)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#4338B7" offset="0"/>
-					<stop stop-color="#4B32BA" offset="1"/>
-				</linearGradient>
-				<polygon points="1569.6 84.073 1377.1 122.12 1395.5 155.26" fill="url(#zo)"/>
-					<linearGradient id="zp" x1="-1.0796" x2=".1477" y1="1083.9" y2="1082.6" gradientTransform="matrix(172 0 0 -108 1558 117050)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#5E2FC8" offset="0"/>
-					<stop stop-color="#6521B7" offset="1"/>
-				</linearGradient>
-				<polygon points="1569.6 84.073 1586 0 1571.4 0 1377.1 122.12" fill="url(#zp)"/>
-					<linearGradient id="zq" x1="-5.3779" x2="-4.1511" y1="1084.7" y2="1083.5" gradientTransform="matrix(58 0 0 -78 1545 84779)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#5E4980" offset="0"/>
-					<stop stop-color="#565290" offset="1"/>
-				</linearGradient>
-				<polygon points="1292.5 204.35 1221.4 184.72 1282.7 280.45" fill="url(#zq)"/>
-					<linearGradient id="zr" x1="-2.8989" x2="-1.6724" y1="1085.6" y2="1084.3" gradientTransform="matrix(96 0 0 -64 1507 69597)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#523E7F" offset="0"/>
-					<stop stop-color="#44368F" offset="1"/>
-				</linearGradient>
-				<polygon points="1339.1 125.8 1221.4 184.72 1292.5 204.35" fill="url(#zr)"/>
-					<linearGradient id="zs" x1="-6.311" x2="-5.0845" y1="1085.3" y2="1084.1" gradientTransform="matrix(51 0 0 -62 1602 67499)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#525B9A" offset="0"/>
-					<stop stop-color="#424A9A" offset="1"/>
-				</linearGradient>
-				<polygon points="1292.5 204.35 1282.7 280.45 1345.2 216.62" fill="url(#zs)"/>
-					<linearGradient id="zu" x1="-7.564" x2="-6.3377" y1="1084.9" y2="1083.7" gradientTransform="matrix(43 0 0 -74 1618 80407)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#3E3298" offset="0"/>
-					<stop stop-color="#3E439A" offset="1"/>
-				</linearGradient>
-				<polygon points="1345.2 216.62 1339.1 125.8 1292.5 204.35" fill="url(#zu)"/>
-					<linearGradient id="zv" x1="-4.3052" x2="-3.0783" y1="1086.1" y2="1084.8" gradientTransform="matrix(73 0 0 -46 1550 50351)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#7295A7" offset="0"/>
-					<stop stop-color="#5795B0" offset="1"/>
-				</linearGradient>
-				<polygon points="1258.2 386 1245.9 419.14 1335.4 442.46" fill="url(#zv)"/>
-					<linearGradient id="zw" x1="-4.9194" x2="-3.6927" y1="1084.4" y2="1083.2" gradientTransform="matrix(63 0 0 -72 1570 78431)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#6693AB" offset="0"/>
-					<stop stop-color="#4692B5" offset="1"/>
-				</linearGradient>
-				<polygon points="1293.7 354.09 1258.2 386 1335.4 442.46" fill="url(#zw)"/>
-					<linearGradient id="zx" x1="-2.4424" x2="-1.2154" y1="1083.1" y2="1081.9" gradientTransform="matrix(104 0 0 -126 1558 136751)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#408EB8" offset="0"/>
-					<stop stop-color="#2691C6" offset="1"/>
-				</linearGradient>
-				<polygon points="1335.4 442.46 1421.3 287.81 1293.7 354.09" fill="url(#zx)"/>
-					<linearGradient id="zz" x1="-2.5444" x2="-1.3175" y1="1083.6" y2="1082.4" gradientTransform="matrix(99 0 0 -92 1597 100100)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#1796C5" offset="0"/>
-					<stop stop-color="#1CA8CE" offset="1"/>
-				</linearGradient>
-				<polygon points="1335.4 442.46 1374.7 527.14 1456.8 414.23" fill="url(#zz)"/>
-					<linearGradient id="aaa" x1="-2.7329" x2="-1.5059" y1="1083" y2="1081.7" gradientTransform="matrix(99 0 0 -126 1597 136751)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#1A95D1" offset="0"/>
-					<stop stop-color="#1DA8D0" offset="1"/>
-				</linearGradient>
-				<polygon points="1456.8 414.23 1421.3 287.81 1335.4 442.46" fill="url(#aaa)"/>
-					<linearGradient id="aab" x1="-4.5156" x2="-3.2887" y1="1083.2" y2="1082" gradientTransform="matrix(72 0 0 -97 1526 1.0551e5)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#7C7891" offset="0"/>
-					<stop stop-color="#6385A1" offset="1"/>
-				</linearGradient>
-				<polygon points="1303.5 528.37 1245.9 419.14 1215.2 538.19" fill="url(#aab)"/>
-					<linearGradient id="aac" x1="-4.0337" x2="-2.8067" y1="1083.7" y2="1082.5" gradientTransform="matrix(73 0 0 -89 1550 96861)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#6694A9" offset="0"/>
-					<stop stop-color="#388BB2" offset="1"/>
-				</linearGradient>
-				<polygon points="1335.4 442.46 1245.9 419.14 1303.5 528.37" fill="url(#aac)"/>
-					<linearGradient id="aad" x1="-3.5361" x2="-2.3083" y1="1082.7" y2="1081.5" gradientTransform="matrix(82 0 0 -125 1564 135865)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#49368E" offset="0"/>
-					<stop stop-color="#2A70AA" offset="1"/>
-				</linearGradient>
-				<polygon points="1274.1 680.56 1374.7 527.14 1303.5 528.37" fill="url(#aad)"/>
-					<linearGradient id="aae" x1="-5.4873" x2="-4.2602" y1="1084.1" y2="1082.9" gradientTransform="matrix(58 0 0 -70 1612 76341)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#2893BC" offset="0"/>
-					<stop stop-color="#2682B4" offset="1"/>
-				</linearGradient>
-				<polygon points="1303.5 528.37 1374.7 527.14 1335.4 442.46" fill="url(#aae)"/>
-					<linearGradient id="aaf" x1="-4.2295" x2="-3.0024" y1="1084.5" y2="1083.2" gradientTransform="matrix(72 0 0 -63 1526 68844)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#786689" offset="0"/>
-					<stop stop-color="#575B91" offset="1"/>
-				</linearGradient>
-				<polygon points="1239.8 605.69 1303.5 528.37 1215.2 538.19" fill="url(#aaf)"/>
-					<linearGradient id="aag" x1="-6.1221" x2="-4.8954" y1="1082.9" y2="1081.6" gradientTransform="matrix(52 0 0 -124 1566 134785)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#592C84" offset="0"/>
-					<stop stop-color="#51508F" offset="1"/>
-				</linearGradient>
-				<polygon points="1239.8 605.69 1274.1 680.56 1303.5 528.37" fill="url(#aag)"/>
-					<linearGradient id="aah" x1="-2.9961" x2="-1.7692" y1="1083.3" y2="1082.1" gradientTransform="matrix(102 0 0 -89 1414 96958)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#B43E81" offset="0"/>
-					<stop stop-color="#885080" offset="1"/>
-				</linearGradient>
-				<polygon points="1215.2 538.19 1114.7 647.42 1239.8 605.69" fill="url(#aah)"/>
-					<linearGradient id="aai" x1="-2.0181" x2="-.7913" y1="1084.3" y2="1083.1" gradientTransform="matrix(130 0 0 -61 1386 66745)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#AA2F83" offset="0"/>
-					<stop stop-color="#732B80" offset="1"/>
-				</linearGradient>
-				<polygon points="1114.7 647.42 1274.1 680.56 1239.8 605.69" fill="url(#aai)"/>
-					<linearGradient id="aak" x1="-3.8506" x2="-2.6236" y1="1084" y2="1082.8" gradientTransform="matrix(89 0 0 -65 1338 71038)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#E64A94" offset="0"/>
-					<stop stop-color="#DB5184" offset="1"/>
-				</linearGradient>
-				<polygon points="1005.6 641.28 1114.7 647.42 1065.6 567.64" fill="url(#aak)"/>
-					<linearGradient id="aal" x1="-2.2637" x2="-1.0366" y1="1083.5" y2="1082.2" gradientTransform="matrix(122 0 0 -89 1354 96958)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#CA4780" offset="0"/>
-					<stop stop-color="#C1687E" offset="1"/>
-				</linearGradient>
-				<polygon points="1065.6 567.64 1114.7 647.42 1215.2 538.19" fill="url(#aal)"/>
-					<linearGradient id="aam" x1="-2.5156" x2="-1.2887" y1="1084.3" y2="1083.1" gradientTransform="matrix(122 0 0 -64 1354 69893)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#D58B7C" offset="0"/>
-					<stop stop-color="#C3747E" offset="1"/>
-				</linearGradient>
-				<polygon points="1065.6 567.64 1215.2 538.19 1141.7 489.1" fill="url(#aam)"/>
-					<linearGradient id="aan" x1="-2.625" x2="-1.398" y1="1082.6" y2="1081.4" gradientTransform="matrix(122 0 0 -143 1185 155263)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#E46B7B" offset="0"/>
-					<stop stop-color="#F1738B" offset="1"/>
-				</linearGradient>
-				<polygon points="858.4 486.64 884.15 629.01 1008 453.5" fill="url(#aan)"/>
-					<linearGradient id="aao" x1="-2.7266" x2="-1.4992" y1="1084" y2="1082.8" gradientTransform="matrix(122 0 0 -78 1185 84947)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#E58276" offset="0"/>
-					<stop stop-color="#F3A775" offset="1"/>
-				</linearGradient>
-				<polygon points="1008 453.5 984.71 390.91 858.4 486.64" fill="url(#aao)"/>
-					<linearGradient id="aap" x1="-3.374" x2="-2.1478" y1="1082.5" y2="1081.3" gradientTransform="matrix(101 0 0 -153 1227 166073)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#F1539D" offset="0"/>
-					<stop stop-color="#F17289" offset="1"/>
-				</linearGradient>
-				<polygon points="884.15 629.01 1005.6 641.28 1008 453.5" fill="url(#aap)"/>
-					<linearGradient id="aaq" x1="-4.4487" x2="-3.2217" y1="1084.5" y2="1083.3" gradientTransform="matrix(77 0 0 -70 1333 76280)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#F4AF79" offset="0"/>
-					<stop stop-color="#F4AD79" offset="1"/>
-				</linearGradient>
-				<polygon points="1079.1 367.59 984.71 390.91 1008 453.5" fill="url(#aaq)"/>
-					<linearGradient id="aar" x1="-7.7876" x2="-6.561" y1="1082.3" y2="1081.1" gradientTransform="matrix(49 0 0 -153 1378 166073)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#ED618D" offset="0"/>
-					<stop stop-color="#EF8779" offset="1"/>
-				</linearGradient>
-				<polygon points="1008 453.5 1005.6 641.28 1065.6 567.64" fill="url(#aar)"/>
-					<linearGradient id="aas" x1="-2.8262" x2="-1.5993" y1="1083.5" y2="1082.2" gradientTransform="matrix(109 0 0 -93 1320 101213)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#EB8678" offset="0"/>
-					<stop stop-color="#EA9E78" offset="1"/>
-				</linearGradient>
-				<polygon points="1141.7 489.1 1008 453.5 1065.6 567.64" fill="url(#aas)"/>
-					<linearGradient id="aat" x1="-2.9165" x2="-1.6895" y1="1083.4" y2="1082.2" gradientTransform="matrix(109 0 0 -99 1320 107629)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#F1AD7B" offset="0"/>
-					<stop stop-color="#EBA579" offset="1"/>
-				</linearGradient>
-				<polygon points="1079.1 367.59 1008 453.5 1141.7 489.1" fill="url(#aat)"/>
-					<linearGradient id="aaw" x1="-8.0337" x2="-6.8063" y1="1084.1" y2="1082.8" gradientTransform="matrix(55 0 0 -79 1039 86010)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#2D18B0" offset="0"/>
-					<stop stop-color="#2E28A8" offset="1"/>
-				</linearGradient>
-				<polygon points="664.65 368.82 597.2 465.78 659.74 452.28" fill="url(#aaw)"/>
-					<linearGradient id="aax" x1="-5.4365" x2="-4.2098" y1="1082.6" y2="1081.4" gradientTransform="matrix(75 0 0 -163 1019 176882)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#4512B9" offset="0"/>
-					<stop stop-color="#7719C0" offset="1"/>
-				</linearGradient>
-				<polygon points="597.2 465.78 689.17 652.33 659.74 452.28" fill="url(#aax)"/>
-					<linearGradient id="aay" x1="-5.8906" x2="-4.6638" y1="1084.3" y2="1083.1" gradientTransform="matrix(73 0 0 -68 1072 74119)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#2F36A2" offset="0"/>
-					<stop stop-color="#472F9D" offset="1"/>
-				</linearGradient>
-				<polygon points="749.26 435.09 664.65 368.82 659.74 452.28" fill="url(#aay)"/>
-					<linearGradient id="aaz" x1="-5.7969" x2="-4.5698" y1="1082.4" y2="1081.2" gradientTransform="matrix(71 0 0 -163 1074 1.7688e5)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#A91BC8" offset="0"/>
-					<stop stop-color="#6B20A7" offset="1"/>
-				</linearGradient>
-				<polygon points="659.74 452.28 689.17 652.33 746.81 495.23" fill="url(#aaz)"/>
-					<linearGradient id="aba" x1="-5.4282" x2="-4.2014" y1="1085.9" y2="1084.7" gradientTransform="matrix(73 0 0 -49 1072 53634)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#732B99" offset="0"/>
-					<stop stop-color="#532D9B" offset="1"/>
-				</linearGradient>
-				<polygon points="746.81 495.23 749.26 435.09 659.74 452.28" fill="url(#aba)"/>
-					<linearGradient id="abb" x1="-2.7188" x2="-1.4919" y1="1089.3" y2="1088.1" gradientTransform="matrix(85 0 0 -23 1876 25681)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#056DC7" offset="0"/>
-					<stop stop-color="#0556C1" offset="1"/>
-				</linearGradient>
-				<polygon points="1666.5 641.28 1764.6 651.1 1660.4 622.88" fill="url(#abb)"/>
-					<linearGradient id="abc" x1="-2.6074" x2="-1.3805" y1="1083.3" y2="1082" gradientTransform="matrix(85 0 0 -90 1876 98041)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#0576CA" offset="0"/>
-					<stop stop-color="#066DC7" offset="1"/>
-				</linearGradient>
-				<polygon points="1764.6 651.1 1714.3 540.64 1660.4 622.88" fill="url(#abc)"/>
-					<linearGradient id="abd" x1="-2.6997" x2="-1.4725" y1="1082.3" y2="1081.1" gradientTransform="matrix(80 0 0 -148 1886 160821)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#064CBC" offset="0"/>
-					<stop stop-color="#0B27A9" offset="1"/>
-				</linearGradient>
-				<polygon points="1686.1 822.93 1764.6 651.1 1666.5 641.28" fill="url(#abd)"/>
-					<linearGradient id="abe" x1="-1.0352" x2=".1918" y1="1082.9" y2="1081.7" gradientTransform="matrix(124 0 0 -113 1922 122994)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#150B8E" offset="0"/>
-					<stop stop-color="#0D1CA0" offset="1"/>
-				</linearGradient>
-				<polygon points="1886 789.79 1916.7 656.01 1764.6 651.1" fill="url(#abe)"/>
-					<linearGradient id="abf" x1="-1.291" x2="-.0639" y1="1083.2" y2="1082" gradientTransform="matrix(124 0 0 -95 1922 103445)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#0A1D9B" offset="0"/>
-					<stop stop-color="#0C20A2" offset="1"/>
-				</linearGradient>
-				<polygon points="1916.7 656.01 1899.5 539.42 1764.6 651.1" fill="url(#abf)"/>
-					<linearGradient id="abh" x1="-3.8501" x2="-2.6233" y1="1084.1" y2="1082.9" gradientTransform="matrix(62 0 0 -69 1943 75271)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#0796D2" offset="0"/>
-					<stop stop-color="#0687CD" offset="1"/>
-				</linearGradient>
-				<polygon points="1790.4 534.51 1749.9 455.96 1714.3 540.64" fill="url(#abh)"/>
-					<linearGradient id="abi" x1="-3.4854" x2="-2.2584" y1="1083.4" y2="1082.2" gradientTransform="matrix(62 0 0 -95 1943 1.0344e5)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#0682CD" offset="0"/>
-					<stop stop-color="#0658C1" offset="1"/>
-				</linearGradient>
-				<polygon points="1790.4 534.51 1714.3 540.64 1764.6 651.1" fill="url(#abi)"/>
-					<linearGradient id="abj" x1="-1.5347" x2="-.3079" y1="1084.1" y2="1082.9" gradientTransform="matrix(122 0 0 -68 1912 74190)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#067EC9" offset="0"/>
-					<stop stop-color="#0749B1" offset="1"/>
-				</linearGradient>
-				<polygon points="1899.5 539.42 1749.9 455.96 1790.4 534.51" fill="url(#abj)"/>
-					<linearGradient id="abk" x1="-1.5713" x2="-.345" y1="1083.2" y2="1082" gradientTransform="matrix(110 0 0 -95 1936 103441)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#073DB6" offset="0"/>
-					<stop stop-color="#0740AE" offset="1"/>
-				</linearGradient>
-				<polygon points="1764.6 651.1 1899.5 539.42 1790.4 534.51" fill="url(#abk)"/>
-					<linearGradient id="abl" x1="-2.4521" x2="-1.2251" y1="1082.9" y2="1081.7" gradientTransform="matrix(82 0 0 -92 1900 100418)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#16088B" offset="0"/>
-					<stop stop-color="#200685" offset="1"/>
-				</linearGradient>
-				<polygon points="1686.1 822.93 1737.6 917.44 1786.7 804.52" fill="url(#abl)"/>
-					<linearGradient id="abm" x1="-2.6772" x2="-1.45" y1="1082.3" y2="1081.1" gradientTransform="matrix(82 0 0 -140 1900 152181)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#0F0F98" offset="0"/>
-					<stop stop-color="#0C1EA3" offset="1"/>
-				</linearGradient>
-				<polygon points="1786.7 804.52 1764.6 651.1 1686.1 822.93" fill="url(#abm)"/>
-					<linearGradient id="abn" x1="-2.7764" x2="-1.5493" y1="1082.6" y2="1081.4" gradientTransform="matrix(79 0 0 -92 1945 100418)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#2D037B" offset="0"/>
-					<stop stop-color="#260580" offset="1"/>
-				</linearGradient>
-				<polygon points="1737.6 917.44 1834.5 913.75 1786.7 804.52" fill="url(#abn)"/>
-					<linearGradient id="abo" x1="-2.0635" x2="-.8366" y1="1082.3" y2="1081.1" gradientTransform="matrix(99 0 0 -125 1947 135966)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#0A25AA" offset="0"/>
-					<stop stop-color="#130A8F" offset="1"/>
-				</linearGradient>
-				<polygon points="1786.7 804.52 1886 789.79 1764.6 651.1" fill="url(#abo)"/>
-					<linearGradient id="abp" x1="-2.2773" x2="-1.0502" y1="1082.8" y2="1081.5" gradientTransform="matrix(81 0 0 -101 1983 110135)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#2C047A" offset="0"/>
-					<stop stop-color="#190786" offset="1"/>
-				</linearGradient>
-				<polygon points="1834.5 913.75 1886 789.79 1786.7 804.52" fill="url(#abp)"/>
-					<linearGradient id="abq" x1="-4.1226" x2="-2.8953" y1="1082.8" y2="1081.6" gradientTransform="matrix(82 0 0 -71 1300 77905)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#CF12D1" offset="0"/>
-					<stop stop-color="#D00FCE" offset="1"/>
-				</linearGradient>
-				<polygon points="982.59 1080 1040.7 1080 1016.6 1035.3" fill="url(#abq)"/>
-					<linearGradient id="abs" x1="-2.6484" x2="-1.4216" y1="1083.2" y2="1082" gradientTransform="matrix(117 0 0 -52 1319 57366)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#D40ECE" offset="0"/>
-					<stop stop-color="#CC0AC8" offset="1"/>
-				</linearGradient>
-				<polygon points="1016.6 1035.3 1040.7 1080 1150.7 1080 1160.1 1078.2" fill="url(#abs)"/>
-					<linearGradient id="abt" x1="-3.062" x2="-1.8341" y1="1083.2" y2="1081.9" gradientTransform="matrix(89 0 0 -70 1375 76859)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#BA07BE" offset="0"/>
-					<stop stop-color="#C809C6" offset="1"/>
-				</linearGradient>
-				<polygon points="1150.7 1080 1159.5 1080 1160.1 1078.2" fill="url(#abt)"/>
-					<linearGradient id="abu" x1="-1.2373" x2="-.0118" y1="1082.6" y2="1081.4" gradientTransform="matrix(172 0 0 -73 1357 80102)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#BC07C0" offset="0"/>
-					<stop stop-color="#C408C7" offset="1"/>
-				</linearGradient>
-				<polygon points="1159.5 1080 1163.7 1080 1160.1 1078.2" fill="url(#abu)"/>
-					<linearGradient id="abw" x1="-1.4458" x2="-.2194" y1="1082.7" y2="1081.5" gradientTransform="matrix(148 0 0 -73 1405 80102)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#D20BCB" offset="0"/>
-					<stop stop-color="#CB0BCA" offset="1"/>
-				</linearGradient>
-				<polygon points="1163.7 1080 1287.4 1080 1160.1 1078.2" fill="url(#abw)"/>
-					<linearGradient id="abx" x1="-4.1216" x2="-2.8947" y1="1083.8" y2="1082.5" gradientTransform="matrix(116 0 0 -50 637 55080)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#4D0D54" offset="0"/>
-					<stop stop-color="#4F1060" offset="1"/>
-				</linearGradient>
-				<polygon points="179.04 944.44 321.29 940.76 241.58 883.07" fill="url(#abx)"/>
-					<linearGradient id="aby" x1="-5.8311" x2="-4.604" y1="1083.5" y2="1082.3" gradientTransform="matrix(83 0 0 -65 694 71230)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#912141" offset="0"/>
-					<stop stop-color="#6D154F" offset="1"/>
-				</linearGradient>
-				<polygon points="310.25 824.16 208.47 803.29 241.58 883.07" fill="url(#aby)"/>
-					<linearGradient id="abz" x1="-7.5425" x2="-6.316" y1="1082.8" y2="1081.5" gradientTransform="matrix(65 0 0 -95 738.9688 103677)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#61125A" offset="0"/>
-					<stop stop-color="#541161" offset="1"/>
-				</linearGradient>
-				<polygon points="241.58 883.07 321.29 940.76 310.25 824.16" fill="url(#abz)"/>
-					<linearGradient id="aca" x1="-6.1704" x2="-4.9431" y1="1083.6" y2="1082.4" gradientTransform="matrix(81 0 0 -63 615 69068)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#B32E36" offset="0"/>
-					<stop stop-color="#A1253A" offset="1"/>
-				</linearGradient>
-				<polygon points="208.47 803.29 109.14 820.48 133.66 880.62" fill="url(#aca)"/>
-					<linearGradient id="acb" x1="-5.5" x2="-4.273" y1="1084" y2="1082.7" gradientTransform="matrix(88 0 0 -52 628 57240)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#5E0F4B" offset="0"/>
-					<stop stop-color="#731545" offset="1"/>
-				</linearGradient>
-				<polygon points="133.66 880.62 179.04 944.44 241.58 883.07" fill="url(#acb)"/>
-					<linearGradient id="acc" x1="-5.7041" x2="-4.477" y1="1083.4" y2="1082.2" gradientTransform="matrix(88 0 0 -65 628 71230)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#99243D" offset="0"/>
-					<stop stop-color="#7E1943" offset="1"/>
-				</linearGradient>
-				<polygon points="208.47 803.29 133.66 880.62 241.58 883.07" fill="url(#acc)"/>
-					<linearGradient id="acf" x1="-6.4033" x2="-5.1761" y1="1082.5" y2="1081.3" gradientTransform="matrix(82 0 0 -102 552 111241)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#951441" offset="0"/>
-					<stop stop-color="#A22339" offset="1"/>
-				</linearGradient>
-				<polygon points="109.14 820.48 33.11 945.67 133.66 880.62" fill="url(#acf)"/>
-					<linearGradient id="acg" x1="-6.2725" x2="-5.046" y1="1083" y2="1081.8" gradientTransform="matrix(82 0 0 -76 552 83184)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#8A0E46" offset="0"/>
-					<stop stop-color="#891144" offset="1"/>
-				</linearGradient>
-				<polygon points="133.66 880.62 33.11 945.67 51.504 973.89" fill="url(#acg)"/>
-					<linearGradient id="ach" x1="-4.8555" x2="-3.6284" y1="1082.8" y2="1081.6" gradientTransform="matrix(104 0 0 -76 545 83184)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#7C0C49" offset="0"/>
-					<stop stop-color="#711246" offset="1"/>
-				</linearGradient>
-				<polygon points="51.504 973.89 179.04 944.44 133.66 880.62" fill="url(#ach)"/>
-	</g>
-</switch>
-</svg>

+ 0 - 1599
web/img/public/mesh-1430107.svg

@@ -1,1599 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE svg  PUBLIC '-//W3C//DTD SVG 1.1//EN'  'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd' [
-	<!ENTITY ns_extend "http://ns.adobe.com/Extensibility/1.0/">
-	<!ENTITY ns_ai "http://ns.adobe.com/AdobeIllustrator/10.0/">
-	<!ENTITY ns_graphs "http://ns.adobe.com/Graphs/1.0/">
-	<!ENTITY ns_vars "http://ns.adobe.com/Variables/1.0/">
-	<!ENTITY ns_imrep "http://ns.adobe.com/ImageReplacement/1.0/">
-	<!ENTITY ns_sfw "http://ns.adobe.com/SaveForWeb/1.0/">
-	<!ENTITY ns_custom "http://ns.adobe.com/GenericCustomNamespace/1.0/">
-	<!ENTITY ns_adobe_xpath "http://ns.adobe.com/XPath/1.0/">
-]>
-<svg enable-background="new 0 0 1920 1080" version="1.1" viewBox="0 0 1920 1080" xml:space="preserve" xmlns="http://www.w3.org/2000/svg">
-<switch>
-	<foreignObject width="1" height="1" requiredExtensions="http://ns.adobe.com/AdobeIllustrator/10.0/">
-	</foreignObject>
-	<g>
-					<linearGradient id="qd" x1="-4.397" x2="-3.1727" y1="1084.1" y2="1082.9" gradientTransform="matrix(134 0 0 -61 822 66791)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#165C96" offset="0"/>
-					<stop stop-color="#1C5F96" offset="1"/>
-				</linearGradient>
-				<polygon points="236.91 734.44 400.95 667.11 314.04 659.77" fill="url(#qd)"/>
-					<linearGradient id="uo" x1="-9.1577" x2="-7.9335" y1="1082.7" y2="1081.5" gradientTransform="matrix(71 0 0 -108 947.97 1.175e5)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#115A94" offset="0"/>
-					<stop stop-color="#0F5B95" offset="1"/>
-				</linearGradient>
-				<polygon points="314.04 659.77 400.95 667.11 331.17 534.9" fill="url(#uo)"/>
-					<linearGradient id="vr" x1="-3.0771" x2="-1.8528" y1="1083.3" y2="1082.1" gradientTransform="matrix(143 0 0 -96 1486.9 1.0445e5)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#0A5592" offset="0"/>
-					<stop stop-color="#0D5894" offset="1"/>
-				</linearGradient>
-				<polygon points="1237.1 553.26 1177.1 439.42 1062 556.94" fill="url(#vr)"/>
-					<linearGradient id="wc" x1="-7.2832" x2="-6.0591" y1="1082.9" y2="1081.7" gradientTransform="matrix(85 0 0 -126 863 136930)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#105C96" offset="0"/>
-					<stop stop-color="#0E5D98" offset="1"/>
-				</linearGradient>
-				<polygon points="227.12 505.52 314.04 659.77 331.17 534.9" fill="url(#wc)"/>
-					<linearGradient id="wo" x1="-3.3662" x2="-2.1421" y1="1083.8" y2="1082.6" gradientTransform="matrix(142 0 0 -114 1084.9 1.2366e5)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#8ABCDB" offset="0"/>
-					<stop stop-color="#8EBBD8" offset="1"/>
-				</linearGradient>
-				<polygon points="727.8 138.27 568.66 143.17 742.49 277.83" fill="url(#wo)"/>
-					<linearGradient id="wz" x1="-6.2856" x2="-5.0614" y1="1084.3" y2="1083.1" gradientTransform="matrix(100 0 0 -73 784 79564)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#12639E" offset="0"/>
-					<stop stop-color="#15649E" offset="1"/>
-				</linearGradient>
-				<polygon points="148.77 485.94 227.12 505.52 271.19 416.16" fill="url(#wz)"/>
-					<linearGradient id="lh" x1="-7.582" x2="-6.3579" y1="1083.3" y2="1082.1" gradientTransform="matrix(85 0 0 -97 863 105508)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#10609B" offset="0"/>
-					<stop stop-color="#13629D" offset="1"/>
-				</linearGradient>
-				<polygon points="271.19 416.16 227.12 505.52 331.17 534.9" fill="url(#lh)"/>
-					<linearGradient id="lw" x1="-5.8984" x2="-4.6742" y1="1083.4" y2="1082.2" gradientTransform="matrix(104 0 0 -97 880 105508)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#105F99" offset="0"/>
-					<stop stop-color="#14639D" offset="1"/>
-				</linearGradient>
-				<polygon points="271.19 416.16 331.17 534.9 398.5 489.61" fill="url(#lw)"/>
-					<linearGradient id="xh" x1="-6.8574" x2="-5.6333" y1="1083.1" y2="1081.8" gradientTransform="matrix(74 0 0 -94 1551 102380)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#0E528F" offset="0"/>
-					<stop stop-color="#0A528F" offset="1"/>
-				</linearGradient>
-				<polygon points="1055.9 672.01 1146.5 619.37 1062 556.94" fill="url(#xh)"/>
-					<linearGradient id="md" x1="-5.1201" x2="-3.896" y1="1082.9" y2="1081.6" gradientTransform="matrix(91 0 0 -115 1534 1.2513e5)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#12548F" offset="0"/>
-					<stop stop-color="#195992" offset="1"/>
-				</linearGradient>
-				<polygon points="1055.9 672.01 1167.3 760.15 1146.5 619.37" fill="url(#md)"/>
-					<linearGradient id="mo" x1="-2.8242" x2="-1.5999" y1="1085" y2="1083.8" gradientTransform="matrix(143 0 0 -54 1486.9 59137)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#095390" offset="0"/>
-					<stop stop-color="#09518F" offset="1"/>
-				</linearGradient>
-				<polygon points="1062 556.94 1146.5 619.37 1237.1 553.26" fill="url(#mo)"/>
-					<linearGradient id="na" x1="-3.4072" x2="-2.1827" y1="1084.3" y2="1083.1" gradientTransform="matrix(144 0 0 -92 1316.9 99720)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#B5D5E9" offset="0"/>
-					<stop stop-color="#A6CEE7" offset="1"/>
-				</linearGradient>
-				<polygon points="967.74 59.926 999.56 3.615 940.28 3.615 855.11 56.253" fill="url(#na)"/>
-					<linearGradient id="nl" x1="-4.9287" x2="-3.7046" y1="1085" y2="1083.8" gradientTransform="matrix(114 0 0 -72 999 78260)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#6EABCF" offset="0"/>
-					<stop stop-color="#72AED2" offset="1"/>
-				</linearGradient>
-				<polygon points="568.66 143.17 429.1 203.15 460.93 231.31" fill="url(#nl)"/>
-					<linearGradient id="nw" x1="-2.6118" x2="-1.3877" y1="1083.6" y2="1082.4" gradientTransform="matrix(137 0 0 -113 1802 122546)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#2E86BE" offset="0"/>
-					<stop stop-color="#2279B3" offset="1"/>
-				</linearGradient>
-				<polygon points="1543.1 238.65 1608 172.55 1440.3 100.32" fill="url(#nw)"/>
-					<linearGradient id="oi" x1="-7.9927" x2="-6.7686" y1="1085.2" y2="1083.9" gradientTransform="matrix(53 0 0 -68 1970 73960)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#1C70AC" offset="0"/>
-					<stop stop-color="#1F75B0" offset="1"/>
-				</linearGradient>
-				<polygon points="1601.9 255.79 1608 172.55 1543.1 238.65" fill="url(#oi)"/>
-					<linearGradient id="ot" x1="-5.7817" x2="-4.5577" y1="1082.4" y2="1081.1" gradientTransform="matrix(102 0 0 -173 1042 187551)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#2571A7" offset="0"/>
-					<stop stop-color="#2E77AC" offset="1"/>
-				</linearGradient>
-				<polygon points="591.92 489.61 480.52 277.83 467.05 400.24" fill="url(#ot)"/>
-					<linearGradient id="pf" x1="-2.0215" x2="-.7974" y1="1082.6" y2="1081.4" gradientTransform="matrix(214 0 0 -173 941 187551)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#488BBA" offset="0"/>
-					<stop stop-color="#4084B3" offset="1"/>
-				</linearGradient>
-				<polygon points="591.92 489.61 742.49 277.83 480.52 277.83" fill="url(#pf)"/>
-					<linearGradient id="pq" x1="-3.8945" x2="-2.6704" y1="1082.7" y2="1081.5" gradientTransform="matrix(97 0 0 -78 1862 85487)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#3A597F" offset="0"/>
-					<stop stop-color="#315076" offset="1"/>
-				</linearGradient>
-				<polygon points="1464.7 1050.3 1492 1080.3 1581 1080.3 1583.5 1074.8" fill="url(#pq)"/>
-					<linearGradient id="qc" x1="-3.2998" x2="-2.0756" y1="1082.7" y2="1081.5" gradientTransform="matrix(113 0 0 -83 1846 90829)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#3A5A81" offset="0"/>
-					<stop stop-color="#32537A" offset="1"/>
-				</linearGradient>
-				<polygon points="1464.7 1050.3 1583.5 1074.8 1603.1 973.15" fill="url(#qc)"/>
-					<linearGradient id="qo" x1="-12.077" x2="-10.853" y1="1083.7" y2="1082.5" gradientTransform="matrix(56 0 0 -96 792 104388)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#1B6BA4" offset="0"/>
-					<stop stop-color="#1A69A3" offset="1"/>
-				</linearGradient>
-				<polygon points="104.7 394.12 148.77 485.94 173.26 368.42" fill="url(#qo)"/>
-					<linearGradient id="qz" x1="-6.4766" x2="-5.2523" y1="1083.4" y2="1082.2" gradientTransform="matrix(100 0 0 -96 784 104388)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#14659F" offset="0"/>
-					<stop stop-color="#1D6CA4" offset="1"/>
-				</linearGradient>
-				<polygon points="173.26 368.42 148.77 485.94 271.19 416.16" fill="url(#qz)"/>
-					<linearGradient id="rl" x1="-4.9839" x2="-3.7597" y1="1082.2" y2="1081" gradientTransform="matrix(98 0 0 -137 1520 148957)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#215D93" offset="0"/>
-					<stop stop-color="#41739F" offset="1"/>
-				</linearGradient>
-				<polygon points="1047.3 839.72 1167.3 760.15 1055.9 672.01" fill="url(#rl)"/>
-					<linearGradient id="rw" x1="-5.3662" x2="-4.1421" y1="1083.2" y2="1081.9" gradientTransform="matrix(73 0 0 -58 1957 63887)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#304D74" offset="0"/>
-					<stop stop-color="#2F4D74" offset="1"/>
-				</linearGradient>
-				<polygon points="1581 1080.3 1588.9 1080.3 1583.5 1074.8" fill="url(#rw)"/>
-					<linearGradient id="si" x1="-11.228" x2="-10.003" y1="1084" y2="1082.8" gradientTransform="matrix(39 0 0 -88 2032 95580)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#1A6DA9" offset="0"/>
-					<stop stop-color="#186DAA" offset="1"/>
-				</linearGradient>
-				<polygon points="1649.6 280.28 1608 172.55 1601.9 255.79" fill="url(#si)"/>
-					<linearGradient id="st" x1="-4.582" x2="-3.3579" y1="1083.9" y2="1082.7" gradientTransform="matrix(82 0 0 -100 1994 108540)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#1971AF" offset="0"/>
-					<stop stop-color="#166CAA" offset="1"/>
-				</linearGradient>
-				<polygon points="1708.4 157.86 1608 172.55 1649.6 280.28" fill="url(#st)"/>
-					<linearGradient id="tf" x1="-5.9619" x2="-4.7377" y1="1082.7" y2="1081.5" gradientTransform="matrix(66 0 0 -154 2044 1.6701e5)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#0B5593" offset="0"/>
-					<stop stop-color="#0F5F9D" offset="1"/>
-				</linearGradient>
-				<polygon points="1730.4 314.55 1649.6 280.28 1668 468.8" fill="url(#tf)"/>
-					<linearGradient id="tq" x1="-4.5293" x2="-3.3051" y1="1083.8" y2="1082.6" gradientTransform="matrix(82 0 0 -100 2028 108568)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#0D5F9E" offset="0"/>
-					<stop stop-color="#1266A4" offset="1"/>
-				</linearGradient>
-				<polygon points="1750 192.14 1649.6 280.28 1730.4 314.55" fill="url(#tq)"/>
-					<linearGradient id="ub" x1="-6.1821" x2="-4.9579" y1="1082.4" y2="1081.1" gradientTransform="matrix(68 0 0 -83 1988 90829)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#305077" offset="0"/>
-					<stop stop-color="#305077" offset="1"/>
-				</linearGradient>
-				<polygon points="1583.5 1074.8 1666.7 1052.7 1603.1 973.15" fill="url(#ub)"/>
-					<linearGradient id="un" x1="-5.7275" x2="-4.5035" y1="1083" y2="1081.8" gradientTransform="matrix(68 0 0 -66 1988 72517)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#304E75" offset="0"/>
-					<stop stop-color="#2F4C73" offset="1"/>
-				</linearGradient>
-				<polygon points="1583.5 1074.8 1588.9 1080.3 1658 1080.3 1666.7 1052.7" fill="url(#un)"/>
-					<linearGradient id="uz" x1="-2.228" x2="-1.0038" y1="1083.6" y2="1082.4" gradientTransform="matrix(155 0 0 -102 2167 110509)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#4A93C5" offset="0"/>
-					<stop stop-color="#3D8FC4" offset="1"/>
-				</linearGradient>
-				<polygon points="1921.4 45.908 1921.4 34.455 1909.1 46.46" fill="url(#uz)"/>
-					<linearGradient id="vi" x1="-5.2109" x2="-3.9867" y1="1084.4" y2="1083.2" gradientTransform="matrix(90 0 0 -95 1568 102969)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#82BDDF" offset="0"/>
-					<stop stop-color="#8EC0DF" offset="1"/>
-				</linearGradient>
-				<polygon points="1185.9 3.615 1110.3 3.615 1206.4 70.943" fill="url(#vi)"/>
-					<linearGradient id="vj" x1="-4.7734" x2="-3.5492" y1="1084.3" y2="1083.1" gradientTransform="matrix(105 0 0 -92 1448 99720)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#B0D3E8" offset="0"/>
-					<stop stop-color="#9BC9E5" offset="1"/>
-				</linearGradient>
-				<polygon points="1077.2 3.615 999.56 3.615 967.74 59.926" fill="url(#vj)"/>
-					<linearGradient id="vk" x1="-5.3818" x2="-4.1578" y1="1082.6" y2="1081.4" gradientTransform="matrix(88 0 0 -115 1611 1.2513e5)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#0E528E" offset="0"/>
-					<stop stop-color="#1C5A91" offset="1"/>
-				</linearGradient>
-				<polygon points="1146.5 619.37 1167.3 760.15 1254.2 694.04" fill="url(#vk)"/>
-					<linearGradient id="vl" x1="-5.165" x2="-3.941" y1="1082.9" y2="1081.7" gradientTransform="matrix(88 0 0 -115 1611 1.2508e5)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#0A508E" offset="0"/>
-					<stop stop-color="#0C528E" offset="1"/>
-				</linearGradient>
-				<polygon points="1146.5 619.37 1254.2 694.04 1237.1 553.26" fill="url(#vl)"/>
-					<linearGradient id="vm" x1="-4.8242" x2="-3.6" y1="1082.8" y2="1081.6" gradientTransform="matrix(93 0 0 -105 1623 114383)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#2B6597" offset="0"/>
-					<stop stop-color="#296396" offset="1"/>
-				</linearGradient>
-				<polygon points="1167.3 760.15 1281.1 822.58 1254.2 694.04" fill="url(#vm)"/>
-					<linearGradient id="vn" x1="-8.1436" x2="-6.9194" y1="1082.8" y2="1081.5" gradientTransform="matrix(59 0 0 -115 1714 1.2508e5)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#09508D" offset="0"/>
-					<stop stop-color="#0C508C" offset="1"/>
-				</linearGradient>
-				<polygon points="1237.1 553.26 1254.2 694.04 1309.3 614.47" fill="url(#vn)"/>
-					<linearGradient id="vo" x1="-1.9438" x2="-.7198" y1="1082.2" y2="1081" gradientTransform="matrix(190 0 0 -136 1235 148160)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#7A94AD" offset="0"/>
-					<stop stop-color="#7E96AD" offset="1"/>
-				</linearGradient>
-				<polygon points="881.48 1080.3 983.04 1080.3 1043.6 1019.7" fill="url(#vo)"/>
-					<linearGradient id="vp" x1="-5.5942" x2="-4.3702" y1="1084.3" y2="1083" gradientTransform="matrix(116 0 0 -88 711 95493)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#6CA6CE" offset="0"/>
-					<stop stop-color="#77B0D5" offset="1"/>
-				</linearGradient>
-				<polygon points="78.995 173.77 221 117.46 145.1 66.047" fill="url(#vp)"/>
-					<linearGradient id="vq" x1="-14.696" x2="-13.472" y1="1086.1" y2="1084.9" gradientTransform="matrix(35 0 0 -58 1678 63067)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#8AB8D8" offset="0"/>
-					<stop stop-color="#8DBBDA" offset="1"/>
-				</linearGradient>
-				<polygon points="1204 124.81 1206.4 70.943 1163.6 141.94" fill="url(#vq)"/>
-					<linearGradient id="vs" x1="-9.2275" x2="-8.0033" y1="1084.7" y2="1083.4" gradientTransform="matrix(53 0 0 -82 1660 89055)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#85B3D4" offset="0"/>
-					<stop stop-color="#7EADCF" offset="1"/>
-				</linearGradient>
-				<polygon points="1204 124.81 1163.6 141.94 1228.5 225.19" fill="url(#vs)"/>
-					<linearGradient id="vt" x1="-3.4834" x2="-2.2593" y1="1082.1" y2="1080.9" gradientTransform="matrix(164 0 0 -150 792 163061)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#3E719D" offset="0"/>
-					<stop stop-color="#6286A8" offset="1"/>
-				</linearGradient>
-				<polygon points="306.69 918.06 437.67 856.86 236.91 734.44" fill="url(#vt)"/>
-					<linearGradient id="vu" x1="-3.2441" x2="-2.0199" y1="1082.4" y2="1081.1" gradientTransform="matrix(164 0 0 -155 792 168411)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#2B6799" offset="0"/>
-					<stop stop-color="#336C9C" offset="1"/>
-				</linearGradient>
-				<polygon points="236.91 734.44 437.67 856.86 400.95 667.11" fill="url(#vu)"/>
-					<linearGradient id="vv" x1="-3.6138" x2="-2.3895" y1="1082.3" y2="1081" gradientTransform="matrix(148 0 0 -155 942 168411)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#1C5F96" offset="0"/>
-					<stop stop-color="#306A9B" offset="1"/>
-				</linearGradient>
-				<polygon points="400.95 667.11 437.67 856.86 582.12 679.35" fill="url(#vv)"/>
-					<linearGradient id="vw" x1="-5.1104" x2="-3.8862" y1="1082" y2="1080.8" gradientTransform="matrix(116 0 0 -151 861 164292)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#90A6BF" offset="0"/>
-					<stop stop-color="#94AAC1" offset="1"/>
-				</linearGradient>
-				<polygon points="262.62 946.22 384.1 1080.3 392.62 1080.3 306.69 918.06" fill="url(#vw)"/>
-					<linearGradient id="vx" x1="-5.373" x2="-4.1489" y1="1082" y2="1080.8" gradientTransform="matrix(107 0 0 -201 906 218292)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#809AB4" offset="0"/>
-					<stop stop-color="#839EB9" offset="1"/>
-				</linearGradient>
-				<polygon points="306.69 918.06 392.62 1080.3 407.66 1080.3 437.67 856.86" fill="url(#vx)"/>
-					<linearGradient id="vy" x1="-6.4365" x2="-5.2124" y1="1082.7" y2="1081.5" gradientTransform="matrix(105 0 0 -98 574 106892)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#9DBAD2" offset="0"/>
-					<stop stop-color="#94B2CD" offset="1"/>
-				</linearGradient>
-				<polygon points="0 870.67 0 892.74 26.356 907.05" fill="url(#vy)"/>
-					<linearGradient id="vz" x1="-5.2476" x2="-4.0234" y1="1081.6" y2="1080.4" gradientTransform="matrix(113 0 0 -201 980 218292)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#9AAFC5" offset="0"/>
-					<stop stop-color="#7A97B3" offset="1"/>
-				</linearGradient>
-				<polygon points="437.67 856.86 407.66 1080.3 438.29 1080.3 542.95 1009.9" fill="url(#vz)"/>
-					<linearGradient id="wa" x1="-2.4541" x2="-1.2298" y1="1082.2" y2="1081" gradientTransform="matrix(197 0 0 -125 923 136136)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#6588A9" offset="0"/>
-					<stop stop-color="#7797B3" offset="1"/>
-				</linearGradient>
-				<polygon points="542.95 1009.9 678.84 919.29 437.67 856.86" fill="url(#wa)"/>
-					<linearGradient id="wb" x1="-4.6299" x2="-3.4057" y1="1082.1" y2="1080.9" gradientTransform="matrix(115 0 0 -142 1091 154564)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#8BA4BB" offset="0"/>
-					<stop stop-color="#839FB9" offset="1"/>
-				</linearGradient>
-				<polygon points="542.95 1009.9 661.99 1080.3 683.37 1080.3 678.84 919.29" fill="url(#wb)"/>
-					<linearGradient id="wd" x1="-5.1621" x2="-3.938" y1="1081.7" y2="1080.5" gradientTransform="matrix(108 0 0 -153 1209 166455)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#8EA6BC" offset="0"/>
-					<stop stop-color="#7997B3" offset="1"/>
-				</linearGradient>
-				<polygon points="683.37 1080.3 792.46 1080.3 678.84 919.29" fill="url(#wd)"/>
-					<linearGradient id="we" x1="-1.9229" x2="-.6987" y1="1083.9" y2="1082.6" gradientTransform="matrix(164 0 0 -102 2098 110509)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#5599C7" offset="0"/>
-					<stop stop-color="#519BCA" offset="1"/>
-				</linearGradient>
-				<polygon points="1909.1 46.46 1921.4 34.455 1921.4 3.615 1876.3 3.615 1835.7 24.425" fill="url(#we)"/>
-					<linearGradient id="wf" x1="-3.02" x2="-1.7958" y1="1082.2" y2="1081" gradientTransform="matrix(174 0 0 -145 946 157611)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#43749F" offset="0"/>
-					<stop stop-color="#236297" offset="1"/>
-				</linearGradient>
-				<polygon points="582.12 679.35 437.67 856.86 650.68 762.6" fill="url(#wf)"/>
-					<linearGradient id="wh" x1="-2.3784" x2="-1.1541" y1="1082.4" y2="1081.2" gradientTransform="matrix(197 0 0 -128 923 139302)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#547EA4" offset="0"/>
-					<stop stop-color="#4A7BA4" offset="1"/>
-				</linearGradient>
-				<polygon points="437.67 856.86 678.84 919.29 650.68 762.6" fill="url(#wh)"/>
-					<linearGradient id="wi" x1="-7.0029" x2="-5.7788" y1="1083.9" y2="1082.7" gradientTransform="matrix(80 0 0 -68 1158 74374)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#165B93" offset="0"/>
-					<stop stop-color="#1C5E94" offset="1"/>
-				</linearGradient>
-				<polygon points="582.12 679.35 650.68 762.6 680.06 684.25" fill="url(#wi)"/>
-					<linearGradient id="wj" x1="-7.1479" x2="-5.9237" y1="1082.2" y2="1081" gradientTransform="matrix(80 0 0 -128 1214 139302)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#5985A9" offset="0"/>
-					<stop stop-color="#3E739F" offset="1"/>
-				</linearGradient>
-				<polygon points="650.68 762.6 678.84 919.29 748.61 861.75" fill="url(#wj)"/>
-					<linearGradient id="wk" x1="-7.0854" x2="-5.8613" y1="1082.2" y2="1081" gradientTransform="matrix(80 0 0 -145 1214 157615)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#1E5E94" offset="0"/>
-					<stop stop-color="#346C9B" offset="1"/>
-				</linearGradient>
-				<polygon points="650.68 762.6 748.61 861.75 680.06 684.25" fill="url(#wk)"/>
-					<linearGradient id="wl" x1="-14.186" x2="-12.962" y1="1114.4" y2="1113.2" gradientTransform="matrix(31 0 0 -4 2041 5426)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#31537C" offset="0"/>
-					<stop stop-color="#30517B" offset="1"/>
-				</linearGradient>
-				<polygon points="1603.1 973.15 1641 970.7 1633.7 968.25" fill="url(#wl)"/>
-					<linearGradient id="wm" x1="-7.8438" x2="-6.6196" y1="1083.2" y2="1081.9" gradientTransform="matrix(52 0 0 -67 2020 73531)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#30527A" offset="0"/>
-					<stop stop-color="#304F77" offset="1"/>
-				</linearGradient>
-				<polygon points="1603.1 973.15 1666.7 1052.7 1641 970.7" fill="url(#wm)"/>
-					<linearGradient id="wn" x1="-4.1436" x2="-2.9206" y1="1082.2" y2="1081" gradientTransform="matrix(90 0 0 -137 2007 149064)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#2D517D" offset="0"/>
-					<stop stop-color="#264E7E" offset="1"/>
-				</linearGradient>
-				<polygon points="1641 970.7 1743.9 802.99 1633.7 968.25" fill="url(#wn)"/>
-					<linearGradient id="wp" x1="-3.7021" x2="-2.478" y1="1082.9" y2="1081.6" gradientTransform="matrix(101 0 0 -67 2002 73531)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#2E4D74" offset="0"/>
-					<stop stop-color="#2D4D76" offset="1"/>
-				</linearGradient>
-				<polygon points="1666.7 1052.7 1764.7 1022.1 1641 970.7" fill="url(#wp)"/>
-					<linearGradient id="wq" x1="-3.4414" x2="-2.2173" y1="1082.7" y2="1081.5" gradientTransform="matrix(104 0 0 -178 2054 192680)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#2F82BA" offset="0"/>
-					<stop stop-color="#4D9ACA" offset="1"/>
-				</linearGradient>
-				<polygon points="1835.7 24.425 1811.2 3.615 1728.3 3.615 1708.4 157.86" fill="url(#wq)"/>
-					<linearGradient id="wr" x1="-1.1216" x2=".1028" y1="1084.6" y2="1083.3" gradientTransform="matrix(245 0 0 -84 1936 91051)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#5EA1CD" offset="0"/>
-					<stop stop-color="#52A0CF" offset="1"/>
-				</linearGradient>
-				<polygon points="1876.3 3.615 1811.2 3.615 1835.7 24.425" fill="url(#wr)"/>
-					<linearGradient id="ws" x1="-1.8721" x2="-.6476" y1="1082" y2="1080.8" gradientTransform="matrix(156 0 0 -144 2048 156688)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#2A4A73" offset="0"/>
-					<stop stop-color="#244975" offset="1"/>
-				</linearGradient>
-				<polygon points="1854 1049 1921.4 932.24 1921.4 899.58 1764.7 1022.1" fill="url(#ws)"/>
-					<linearGradient id="wt" x1="-4.3027" x2="-3.0784" y1="1081.8" y2="1080.6" gradientTransform="matrix(83 0 0 -144 2194 156688)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#2A4972" offset="0"/>
-					<stop stop-color="#244976" offset="1"/>
-				</linearGradient>
-				<polygon points="1921.4 1047 1921.4 932.24 1854 1049" fill="url(#wt)"/>
-					<linearGradient id="wu" x1="-3.5938" x2="-2.3694" y1="1083.7" y2="1082.5" gradientTransform="matrix(98 0 0 -100 2078 108568)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#0C5F9E" offset="0"/>
-					<stop stop-color="#1265A5" offset="1"/>
-				</linearGradient>
-				<polygon points="1730.4 314.55 1850.4 210.5 1750 192.14" fill="url(#wu)"/>
-					<linearGradient id="wv" x1="-3.2646" x2="-2.0403" y1="1084.2" y2="1083" gradientTransform="matrix(105 0 0 -85 2071 92368)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#0A5C9C" offset="0"/>
-					<stop stop-color="#0C5E9D" offset="1"/>
-				</linearGradient>
-				<polygon points="1730.4 314.55 1858.9 313.33 1850.4 210.5" fill="url(#wv)"/>
-					<linearGradient id="ww" x1="-20.257" x2="-19.033" y1="1084.2" y2="1082.9" gradientTransform="matrix(20 0 0 -84 2254 91287)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#0A5B9B" offset="0"/>
-					<stop stop-color="#0E5F9F" offset="1"/>
-				</linearGradient>
-				<polygon points="1858.9 313.33 1874.8 271.71 1850.4 210.5" fill="url(#ww)"/>
-					<linearGradient id="wx" x1="-10.443" x2="-9.2188" y1="1086.5" y2="1085.2" gradientTransform="matrix(37 0 0 -50 2237 54533)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#0B5E9F" offset="0"/>
-					<stop stop-color="#0F62A1" offset="1"/>
-				</linearGradient>
-				<polygon points="1874.8 271.71 1895.6 242.33 1850.4 210.5" fill="url(#wx)"/>
-					<linearGradient id="wy" x1="-32.804" x2="-31.58" y1="1088.2" y2="1086.9" gradientTransform="matrix(20 0 0 -38 1119 41578)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#609EC7" offset="0"/>
-					<stop stop-color="#5999C4" offset="1"/>
-				</linearGradient>
-				<polygon points="485.42 253.34 460.93 231.31 480.52 277.83" fill="url(#wy)"/>
-					<linearGradient id="xa" x1="-6.6455" x2="-5.4213" y1="1084.2" y2="1083" gradientTransform="matrix(88 0 0 -90 1051 97718)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#68A5CC" offset="0"/>
-					<stop stop-color="#6EAAD0" offset="1"/>
-				</linearGradient>
-				<polygon points="485.42 253.34 568.66 143.17 460.93 231.31" fill="url(#xa)"/>
-					<linearGradient id="xb" x1="-2.4521" x2="-1.228" y1="1093.9" y2="1092.7" gradientTransform="matrix(214 0 0 -20 941 22138)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#5898C2" offset="0"/>
-					<stop stop-color="#65A0C7" offset="1"/>
-				</linearGradient>
-				<polygon points="742.49 277.83 485.42 253.34 480.52 277.83" fill="url(#xb)"/>
-					<linearGradient id="xc" x1="-2.3594" x2="-1.1353" y1="1083.4" y2="1082.2" gradientTransform="matrix(210 0 0 -110 949 119338)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#7BB4D6" offset="0"/>
-					<stop stop-color="#6CA6CB" offset="1"/>
-				</linearGradient>
-				<polygon points="742.49 277.83 568.66 143.17 485.42 253.34" fill="url(#xc)"/>
-					<linearGradient id="xd" x1="-2.9399" x2="-1.7157" y1="1083.4" y2="1082.1" gradientTransform="matrix(135 0 0 -103 1589 112003)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#115D98" offset="0"/>
-					<stop stop-color="#0E5895" offset="1"/>
-				</linearGradient>
-				<polygon points="1342.3 427.17 1177.1 439.42 1237.1 553.26" fill="url(#xd)"/>
-					<linearGradient id="xe" x1="-5.1318" x2="-3.9077" y1="1082.6" y2="1081.4" gradientTransform="matrix(86 0 0 -153 1687 166053)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#095390" offset="0"/>
-					<stop stop-color="#0C5592" offset="1"/>
-				</linearGradient>
-				<polygon points="1309.3 614.47 1342.3 427.17 1237.1 553.26" fill="url(#xe)"/>
-					<linearGradient id="xf" x1="-7.0591" x2="-5.8349" y1="1083.5" y2="1082.3" gradientTransform="matrix(70 0 0 -94 1490 1.0238e5)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#0E528F" offset="0"/>
-					<stop stop-color="#0A5390" offset="1"/>
-				</linearGradient>
-				<polygon points="976.31 566.73 1055.9 672.01 1062 556.94" fill="url(#xf)"/>
-					<linearGradient id="xg" x1="-4.0576" x2="-2.8332" y1="1082.6" y2="1081.4" gradientTransform="matrix(133 0 0 -86 960 94102)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#A7BBCD" offset="0"/>
-					<stop stop-color="#9FB4C6" offset="1"/>
-				</linearGradient>
-				<polygon points="438.29 1080.3 559.32 1080.3 542.95 1009.9" fill="url(#xg)"/>
-					<linearGradient id="le" x1="-4.8813" x2="-3.6572" y1="1082.3" y2="1081.1" gradientTransform="matrix(115 0 0 -86 1091 94102)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#95ABC0" offset="0"/>
-					<stop stop-color="#A0B4C6" offset="1"/>
-				</linearGradient>
-				<polygon points="559.32 1080.3 661.99 1080.3 542.95 1009.9" fill="url(#le)"/>
-					<linearGradient id="lf" x1="-6.2432" x2="-5.0187" y1="1083.8" y2="1082.5" gradientTransform="matrix(64 0 0 -100 2046 1.0854e5)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#1468A6" offset="0"/>
-					<stop stop-color="#176EAB" offset="1"/>
-				</linearGradient>
-				<polygon points="1727.9 177.44 1708.4 157.86 1649.6 280.28" fill="url(#lf)"/>
-					<linearGradient id="lg" x1="-4.6592" x2="-3.4348" y1="1084.3" y2="1083" gradientTransform="matrix(82 0 0 -84 2028 91260)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#1366A5" offset="0"/>
-					<stop stop-color="#146AA9" offset="1"/>
-				</linearGradient>
-				<polygon points="1727.9 177.44 1649.6 280.28 1750 192.14" fill="url(#lg)"/>
-					<linearGradient id="li" x1="-5.6289" x2="-4.4048" y1="1084.5" y2="1083.3" gradientTransform="matrix(104 0 0 -72 880 78471)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#1968A1" offset="0"/>
-					<stop stop-color="#18669F" offset="1"/>
-				</linearGradient>
-				<polygon points="386.26 401.47 271.19 416.16 398.5 489.61" fill="url(#li)"/>
-					<linearGradient id="lj" x1="-9.4341" x2="-8.2098" y1="1084.3" y2="1083.1" gradientTransform="matrix(66 0 0 -73 1012 79551)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#15639D" offset="0"/>
-					<stop stop-color="#1F6BA4" offset="1"/>
-				</linearGradient>
-				<polygon points="467.05 400.24 386.26 401.47 398.5 489.61" fill="url(#lj)"/>
-					<linearGradient id="lk" x1="-7.9834" x2="-6.7593" y1="1083.6" y2="1082.4" gradientTransform="matrix(77 0 0 -101 1001 109719)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#2974A9" offset="0"/>
-					<stop stop-color="#367EB0" offset="1"/>
-				</linearGradient>
-				<polygon points="480.52 277.83 386.26 401.47 467.05 400.24" fill="url(#lk)"/>
-					<linearGradient id="ll" x1="-10.29" x2="-9.0659" y1="1091.6" y2="1090.4" gradientTransform="matrix(37 0 0 -26 2237 28589)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#1264A3" offset="0"/>
-					<stop stop-color="#0F62A1" offset="1"/>
-				</linearGradient>
-				<polygon points="1895.6 242.33 1893.2 223.96 1850.4 210.5" fill="url(#ll)"/>
-					<linearGradient id="lm" x1="-3.667" x2="-2.4428" y1="1084.1" y2="1082.9" gradientTransform="matrix(90 0 0 -85 2219 92379)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#0C5E9F" offset="0"/>
-					<stop stop-color="#0C5C9C" offset="1"/>
-				</linearGradient>
-				<polygon points="1895.6 242.33 1921.4 262.78 1921.4 250.56 1893.2 223.96" fill="url(#lm)"/>
-					<linearGradient id="ln" x1="-1.7534" x2="-.5291" y1="1082.7" y2="1081.5" gradientTransform="matrix(168 0 0 -152 2141 164654)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#4089BD" offset="0"/>
-					<stop stop-color="#2677B1" offset="1"/>
-				</linearGradient>
-				<polygon points="1893.2 223.96 1921.4 198.49 1921.4 45.908 1909.1 46.46" fill="url(#ln)"/>
-					<linearGradient id="lo" x1="-1.7983" x2="-.5743" y1="1082" y2="1080.7" gradientTransform="matrix(168 0 0 -237 2141 256539)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#0D5D9D" offset="0"/>
-					<stop stop-color="#1C6FAC" offset="1"/>
-				</linearGradient>
-				<polygon points="1921.4 250.56 1921.4 198.49 1893.2 223.96" fill="url(#lo)"/>
-					<linearGradient id="lp" x1="-5.3184" x2="-4.0943" y1="1082.6" y2="1081.4" gradientTransform="matrix(116 0 0 -193 711 209040)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#619CC7" offset="0"/>
-					<stop stop-color="#5695C1" offset="1"/>
-				</linearGradient>
-				<polygon points="138.98 353.72 221 117.46 78.995 173.77" fill="url(#lp)"/>
-					<linearGradient id="lq" x1="-12.386" x2="-11.162" y1="1088.4" y2="1087.1" gradientTransform="matrix(56 0 0 -33 792 36273)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#206FA7" offset="0"/>
-					<stop stop-color="#2672A9" offset="1"/>
-				</linearGradient>
-				<polygon points="173.26 368.42 138.98 353.72 104.7 394.12" fill="url(#lq)"/>
-					<linearGradient id="lr" x1="-2.084" x2="-.86" y1="1082.6" y2="1081.4" gradientTransform="matrix(171 0 0 -137 1661 148782)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#084E8C" offset="0"/>
-					<stop stop-color="#094E8C" offset="1"/>
-				</linearGradient>
-				<polygon points="1518.6 625.49 1486.8 457.78 1309.3 614.47" fill="url(#lr)"/>
-					<linearGradient id="mx" x1="-4.2393" x2="-3.0146" y1="1082.5" y2="1081.2" gradientTransform="matrix(94 0 0 -179 1883 194005)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#2171AA" offset="0"/>
-					<stop stop-color="#1765A0" offset="1"/>
-				</linearGradient>
-				<polygon points="1601.9 255.79 1543.1 238.65 1486.8 457.78" fill="url(#mx)"/>
-					<linearGradient id="ny" x1="-2.7227" x2="-1.4986" y1="1082.6" y2="1081.3" gradientTransform="matrix(133 0 0 -165 1844 178885)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#1A6AA5" offset="0"/>
-					<stop stop-color="#13619D" offset="1"/>
-				</linearGradient>
-				<polygon points="1649.6 280.28 1601.9 255.79 1486.8 457.78" fill="url(#ny)"/>
-					<linearGradient id="oz" x1="-2.3262" x2="-1.1022" y1="1082.7" y2="1081.4" gradientTransform="matrix(148 0 0 -154 1829 167014)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#12609D" offset="0"/>
-					<stop stop-color="#0D5592" offset="1"/>
-				</linearGradient>
-				<polygon points="1668 468.8 1649.6 280.28 1486.8 457.78" fill="url(#oz)"/>
-					<linearGradient id="qa" x1="-22.738" x2="-21.514" y1="1087.5" y2="1086.2" gradientTransform="matrix(31 0 0 -48 850 52205)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#74B3D9" offset="0"/>
-					<stop stop-color="#72B4DA" offset="1"/>
-				</linearGradient>
-				<polygon points="164.69 59.926 183.05 7.287 145.1 66.047" fill="url(#qa)"/>
-					<linearGradient id="rb" x1="-10.822" x2="-9.5981" y1="1087.4" y2="1086.2" gradientTransform="matrix(62 0 0 -47 818.97 51167)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#77B3D8" offset="0"/>
-					<stop stop-color="#79B3D7" offset="1"/>
-				</linearGradient>
-				<polygon points="145.1 66.047 221 117.46 164.69 59.926" fill="url(#rb)"/>
-					<linearGradient id="sc" x1="-14.967" x2="-13.743" y1="1084.4" y2="1083.2" gradientTransform="matrix(46 0 0 -90 851 97607)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#72B5DA" offset="0"/>
-					<stop stop-color="#79B3D7" offset="1"/>
-				</linearGradient>
-				<polygon points="221 117.46 183.05 7.287 164.69 59.926" fill="url(#sc)"/>
-					<linearGradient id="td" x1="-2.0527" x2="-.8285" y1="1082.8" y2="1081.6" gradientTransform="matrix(151 0 0 -66 1952 72517)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#2D4A71" offset="0"/>
-					<stop stop-color="#2C4970" offset="1"/>
-				</linearGradient>
-				<polygon points="1658 1080.3 1754.1 1080.3 1666.7 1052.7" fill="url(#td)"/>
-					<linearGradient id="ue" x1="-2.4453" x2="-1.2212" y1="1083" y2="1081.7" gradientTransform="matrix(130 0 0 -66 1994 72492)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#2E4B72" offset="0"/>
-					<stop stop-color="#2A4870" offset="1"/>
-				</linearGradient>
-				<polygon points="1666.7 1052.7 1754.1 1080.3 1808.7 1080.3 1764.7 1022.1" fill="url(#ue)"/>
-					<linearGradient id="vf" x1="-4.8838" x2="-3.6596" y1="1083" y2="1081.8" gradientTransform="matrix(73 0 0 -66 2131 72492)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#2B4871" offset="0"/>
-					<stop stop-color="#29466E" offset="1"/>
-				</linearGradient>
-				<polygon points="1764.7 1022.1 1808.7 1080.3 1837.7 1080.3 1854 1049" fill="url(#vf)"/>
-					<linearGradient id="wg" x1="-3.6953" x2="-2.471" y1="1083.7" y2="1082.5" gradientTransform="matrix(89 0 0 -46 2165 50892)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#2A476E" offset="0"/>
-					<stop stop-color="#29466E" offset="1"/>
-				</linearGradient>
-				<polygon points="1837.7 1080.3 1869.7 1080.3 1921.4 1053.6 1921.4 1047 1854 1049" fill="url(#wg)"/>
-					<linearGradient id="ls" x1="-.8574" x2=".3667" y1="1081.9" y2="1080.7" gradientTransform="matrix(220 0 0 -147 2034 160073)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#28466D" offset="0"/>
-					<stop stop-color="#224268" offset="1"/>
-				</linearGradient>
-				<polygon points="1921.4 1080.3 1921.4 1053.6 1869.7 1080.3" fill="url(#ls)"/>
-					<linearGradient id="lt" x1="-5.0894" x2="-3.8653" y1="1084.9" y2="1083.7" gradientTransform="matrix(104 0 0 -77 1253 83584)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#A7CDE4" offset="0"/>
-					<stop stop-color="#A8CFE7" offset="1"/>
-				</linearGradient>
-				<polygon points="855.11 56.253 752.28 44.012 727.8 138.27" fill="url(#lt)"/>
-					<linearGradient id="lu" x1="-7.7119" x2="-6.4879" y1="1082.5" y2="1081.2" gradientTransform="matrix(60 0 0 -159 1772 1.7253e5)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#0A5290" offset="0"/>
-					<stop stop-color="#115B97" offset="1"/>
-				</linearGradient>
-				<polygon points="1309.3 614.47 1382.7 419.83 1342.3 427.17" fill="url(#lu)"/>
-					<linearGradient id="lv" x1="-2.665" x2="-1.441" y1="1082.4" y2="1081.2" gradientTransform="matrix(145 0 0 -159 1686.9 1.7253e5)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#0A518F" offset="0"/>
-					<stop stop-color="#0E5894" offset="1"/>
-				</linearGradient>
-				<polygon points="1486.8 457.78 1382.7 419.83 1309.3 614.47" fill="url(#lv)"/>
-					<linearGradient id="lx" x1="-2.835" x2="-1.6109" y1="1082.5" y2="1081.3" gradientTransform="matrix(131 0 0 -179 1761 194005)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#135E99" offset="0"/>
-					<stop stop-color="#1B69A2" offset="1"/>
-				</linearGradient>
-				<polygon points="1486.8 457.78 1543.1 238.65 1382.7 419.83" fill="url(#lx)"/>
-					<linearGradient id="ly" x1="-6.0205" x2="-4.7962" y1="1084.2" y2="1083" gradientTransform="matrix(71 0 0 -99 1797 1.0741e5)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#4291C4" offset="0"/>
-					<stop stop-color="#3788BE" offset="1"/>
-				</linearGradient>
-				<polygon points="1440.3 100.32 1353.3 119.91 1418.2 221.52" fill="url(#ly)"/>
-					<linearGradient id="lz" x1="-2.916" x2="-1.6919" y1="1082.6" y2="1081.4" gradientTransform="matrix(131 0 0 -162 1761 175614)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#1E69A3" offset="0"/>
-					<stop stop-color="#2A78B0" offset="1"/>
-				</linearGradient>
-				<polygon points="1382.7 419.83 1543.1 238.65 1418.2 221.52" fill="url(#lz)"/>
-					<linearGradient id="ma" x1="-4.1445" x2="-2.9203" y1="1083.4" y2="1082.2" gradientTransform="matrix(102 0 0 -113 1819 122546)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#3388BF" offset="0"/>
-					<stop stop-color="#2D7DB5" offset="1"/>
-				</linearGradient>
-				<polygon points="1543.1 238.65 1440.3 100.32 1418.2 221.52" fill="url(#ma)"/>
-					<linearGradient id="mb" x1="-4.5947" x2="-3.3706" y1="1082.7" y2="1081.5" gradientTransform="matrix(88 0 0 -158 1982 171092)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#1F7BB7" offset="0"/>
-					<stop stop-color="#2482BD" offset="1"/>
-				</linearGradient>
-				<polygon points="1708.4 157.86 1615.4 3.615 1601.6 3.615 1608 172.55" fill="url(#mb)"/>
-					<linearGradient id="mc" x1="-3.0947" x2="-1.8706" y1="1082.9" y2="1081.7" gradientTransform="matrix(111 0 0 -178 1959 192680)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#2882BA" offset="0"/>
-					<stop stop-color="#3C97CB" offset="1"/>
-				</linearGradient>
-				<polygon points="1728.3 3.615 1615.4 3.615 1708.4 157.86" fill="url(#mc)"/>
-					<linearGradient id="me" x1="-15.421" x2="-14.197" y1="1082.6" y2="1081.4" gradientTransform="matrix(35 0 0 -107 1548 116664)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#8CA9C1" offset="0"/>
-					<stop stop-color="#83A1BC" offset="1"/>
-				</linearGradient>
-				<polygon points="1004.5 924.18 1024 970.7 1047.3 839.72" fill="url(#me)"/>
-					<linearGradient id="mf" x1="-2.1436" x2="-.9195" y1="1082.3" y2="1081.1" gradientTransform="matrix(190 0 0 -111 1235 121095)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#879FB7" offset="0"/>
-					<stop stop-color="#98AEC3" offset="1"/>
-				</linearGradient>
-				<polygon points="1024 970.7 852.3 1080.3 881.48 1080.3 1043.6 1019.7" fill="url(#mf)"/>
-					<linearGradient id="mg" x1="-3.2275" x2="-2.0034" y1="1084.5" y2="1083.3" gradientTransform="matrix(144 0 0 -66 1435.9 71950)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#3578AA" offset="0"/>
-					<stop stop-color="#2068A0" offset="1"/>
-				</linearGradient>
-				<polygon points="1177.1 439.42 1010.6 358.62 1000.8 417.38" fill="url(#mg)"/>
-					<linearGradient id="mh" x1="-2.9634" x2="-1.7391" y1="1083.1" y2="1081.9" gradientTransform="matrix(144 0 0 -114 1435.9 1.2389e5)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#0E5894" offset="0"/>
-					<stop stop-color="#19639C" offset="1"/>
-				</linearGradient>
-				<polygon points="1177.1 439.42 1000.8 417.38 1062 556.94" fill="url(#mh)"/>
-					<linearGradient id="mi" x1="-4.6504" x2="-3.4263" y1="1083.1" y2="1081.8" gradientTransform="matrix(104 0 0 -122 1372 132534)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#105C96" offset="0"/>
-					<stop stop-color="#155F98" offset="1"/>
-				</linearGradient>
-				<polygon points="873.48 496.95 976.31 566.73 1000.8 417.38" fill="url(#mi)"/>
-					<linearGradient id="mj" x1="-7.5576" x2="-6.3334" y1="1082.7" y2="1081.5" gradientTransform="matrix(70 0 0 -122 1490 1.3253e5)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#0B5692" offset="0"/>
-					<stop stop-color="#145E98" offset="1"/>
-				</linearGradient>
-				<polygon points="1000.8 417.38 976.31 566.73 1062 556.94" fill="url(#mj)"/>
-					<linearGradient id="mk" x1="-6.5132" x2="-5.289" y1="1087.5" y2="1086.3" gradientTransform="matrix(75 0 0 -44 1671 47933)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#80B3D6" offset="0"/>
-					<stop stop-color="#74AED3" offset="1"/>
-				</linearGradient>
-				<polygon points="1295.8 121.13 1206.4 70.943 1204 124.81" fill="url(#mk)"/>
-					<linearGradient id="ml" x1="-6.1465" x2="-4.9223" y1="1084.5" y2="1083.3" gradientTransform="matrix(75 0 0 -85 1671 92295)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#7BAED2" offset="0"/>
-					<stop stop-color="#65A0C9" offset="1"/>
-				</linearGradient>
-				<polygon points="1295.8 121.13 1204 124.81 1228.5 225.19" fill="url(#ml)"/>
-					<linearGradient id="mm" x1="-2.666" x2="-1.4419" y1="1084.2" y2="1083" gradientTransform="matrix(155 0 0 -85 1611 92295)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#5895C1" offset="0"/>
-					<stop stop-color="#4A90C0" offset="1"/>
-				</linearGradient>
-				<polygon points="1418.2 221.52 1295.8 121.13 1228.5 225.19" fill="url(#mm)"/>
-					<linearGradient id="mn" x1="-4.1133" x2="-2.8891" y1="1084.6" y2="1083.4" gradientTransform="matrix(100 0 0 -83 1721 90132)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#4893C4" offset="0"/>
-					<stop stop-color="#4890C1" offset="1"/>
-				</linearGradient>
-				<polygon points="1353.3 119.91 1295.8 121.13 1418.2 221.52" fill="url(#mn)"/>
-					<linearGradient id="mp" x1="-4.7534" x2="-3.5293" y1="1084.6" y2="1083.4" gradientTransform="matrix(110 0 0 -57 1340 62334)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#0D5995" offset="0"/>
-					<stop stop-color="#0A5592" offset="1"/>
-				</linearGradient>
-				<polygon points="841.65 564.28 976.31 566.73 873.48 496.95" fill="url(#mp)"/>
-					<linearGradient id="mq" x1="-2.5352" x2="-1.311" y1="1082.5" y2="1081.2" gradientTransform="matrix(134 0 0 -161 1991 174609)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#08508E" offset="0"/>
-					<stop stop-color="#085290" offset="1"/>
-				</linearGradient>
-				<polygon points="1668 468.8 1832 511.64 1730.4 314.55" fill="url(#mq)"/>
-					<linearGradient id="mr" x1="-3.0029" x2="-1.7787" y1="1082.8" y2="1081.6" gradientTransform="matrix(105 0 0 -162 2071 175689)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#095897" offset="0"/>
-					<stop stop-color="#075290" offset="1"/>
-				</linearGradient>
-				<polygon points="1832 511.64 1858.9 313.33 1730.4 314.55" fill="url(#mr)"/>
-					<linearGradient id="ms" x1="-3.9834" x2="-2.7594" y1="1082.2" y2="1081" gradientTransform="matrix(93 0 0 -137 2010 149064)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#29507D" offset="0"/>
-					<stop stop-color="#1B4C81" offset="1"/>
-				</linearGradient>
-				<polygon points="1641 970.7 1754.9 811.56 1743.9 802.99" fill="url(#ms)"/>
-					<linearGradient id="mt" x1="-3.5239" x2="-2.2997" y1="1082" y2="1080.8" gradientTransform="matrix(101 0 0 -172 2002 186906)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#2D507A" offset="0"/>
-					<stop stop-color="#244B7A" offset="1"/>
-				</linearGradient>
-				<polygon points="1764.7 1022.1 1754.9 811.56 1641 970.7" fill="url(#mt)"/>
-					<linearGradient id="mu" x1="-1.8008" x2="-.5768" y1="1081.8" y2="1080.6" gradientTransform="matrix(164 0 0 -172 2032 186906)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#274B77" offset="0"/>
-					<stop stop-color="#1C4B7D" offset="1"/>
-				</linearGradient>
-				<polygon points="1764.7 1022.1 1921.4 899.58 1921.4 862.32 1754.9 811.56" fill="url(#mu)"/>
-					<linearGradient id="mv" x1="-1.6177" x2="-.3935" y1="1082.5" y2="1081.3" gradientTransform="matrix(164 0 0 -122 2032 132784)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#0D4480" offset="0"/>
-					<stop stop-color="#17497F" offset="1"/>
-				</linearGradient>
-				<polygon points="1921.4 862.32 1921.4 723.42 1754.9 811.56" fill="url(#mv)"/>
-					<linearGradient id="mw" x1="-1.603" x2="-.379" y1="1084.2" y2="1082.9" gradientTransform="matrix(228 0 0 -95 1491 102969)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#6FB2DA" offset="0"/>
-					<stop stop-color="#60A8D3" offset="1"/>
-				</linearGradient>
-				<polygon points="1450.1 45.236 1321.8 3.615 1185.9 3.615 1206.4 70.943" fill="url(#mw)"/>
-					<linearGradient id="my" x1="-.5669" x2=".6573" y1="1085.3" y2="1084.1" gradientTransform="matrix(351 0 0 -74 1367.8 80268)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#5EAAD7" offset="0"/>
-					<stop stop-color="#3996CD" offset="1"/>
-				</linearGradient>
-				<polygon points="1544.9 3.615 1321.8 3.615 1450.1 45.236" fill="url(#my)"/>
-					<linearGradient id="mz" x1="-1.6094" x2="-.3852" y1="1086" y2="1084.8" gradientTransform="matrix(199 0 0 -62 1549 67370)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#6EADD5" offset="0"/>
-					<stop stop-color="#4F9CCC" offset="1"/>
-				</linearGradient>
-				<polygon points="1450.1 45.236 1206.4 70.943 1295.8 121.13" fill="url(#mz)"/>
-					<linearGradient id="nb" x1="-3.1689" x2="-1.9449" y1="1085.9" y2="1084.7" gradientTransform="matrix(126 0 0 -62 1695 67370)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#539BC9" offset="0"/>
-					<stop stop-color="#4395C8" offset="1"/>
-				</linearGradient>
-				<polygon points="1353.3 119.91 1450.1 45.236 1295.8 121.13" fill="url(#nb)"/>
-					<linearGradient id="nc" x1="-5.5151" x2="-4.2911" y1="1086" y2="1084.7" gradientTransform="matrix(79 0 0 -61 1789 66289)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#4394C7" offset="0"/>
-					<stop stop-color="#3991C7" offset="1"/>
-				</linearGradient>
-				<polygon points="1440.3 100.32 1450.1 45.236 1353.3 119.91" fill="url(#nc)"/>
-					<linearGradient id="nd" x1="-2.7559" x2="-1.5316" y1="1083.8" y2="1082.6" gradientTransform="matrix(137 0 0 -104 1802 112772)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#328BC3" offset="0"/>
-					<stop stop-color="#2B86BF" offset="1"/>
-				</linearGradient>
-				<polygon points="1608 172.55 1450.1 45.236 1440.3 100.32" fill="url(#nd)"/>
-					<linearGradient id="ne" x1="-2.7026" x2="-1.4784" y1="1083.1" y2="1081.9" gradientTransform="matrix(129 0 0 -158 1818 171092)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#2D8FC9" offset="0"/>
-					<stop stop-color="#2A86C0" offset="1"/>
-				</linearGradient>
-				<polygon points="1608 172.55 1601.6 3.615 1544.9 3.615 1450.1 45.236" fill="url(#ne)"/>
-					<linearGradient id="nf" x1="-4.4038" x2="-3.1797" y1="1086.2" y2="1085" gradientTransform="matrix(110 0 0 -48 1368 52492)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#2D72A6" offset="0"/>
-					<stop stop-color="#397BAC" offset="1"/>
-				</linearGradient>
-				<polygon points="1010.6 358.62 875.92 403.92 1000.8 417.38" fill="url(#nf)"/>
-					<linearGradient id="ng" x1="-4.8389" x2="-3.6146" y1="1084.1" y2="1082.9" gradientTransform="matrix(104 0 0 -76 1372 82797)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#18639C" offset="0"/>
-					<stop stop-color="#286FA4" offset="1"/>
-				</linearGradient>
-				<polygon points="1000.8 417.38 875.92 403.92 873.48 496.95" fill="url(#ng)"/>
-					<linearGradient id="nh" x1="-3.7217" x2="-2.4973" y1="1082.5" y2="1081.3" gradientTransform="matrix(92 0 0 -162 2167 175689)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#074E8C" offset="0"/>
-					<stop stop-color="#075695" offset="1"/>
-				</linearGradient>
-				<polygon points="1832 511.64 1921.4 365.94 1921.4 324.03 1858.9 313.33" fill="url(#nh)"/>
-					<linearGradient id="ni" x1="-3.458" x2="-2.2338" y1="1082.5" y2="1081.3" gradientTransform="matrix(99 0 0 -150 2160 162729)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#064B89" offset="0"/>
-					<stop stop-color="#064E8E" offset="1"/>
-				</linearGradient>
-				<polygon points="1921.4 507.13 1921.4 365.94 1832 511.64" fill="url(#ni)"/>
-					<linearGradient id="nj" x1="-5.1992" x2="-3.975" y1="1086.5" y2="1085.3" gradientTransform="matrix(70 0 0 -46 2211 50259)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#085998" offset="0"/>
-					<stop stop-color="#085999" offset="1"/>
-				</linearGradient>
-				<polygon points="1858.9 313.33 1921.4 324.03 1921.4 309.25 1874.8 271.71" fill="url(#nj)"/>
-					<linearGradient id="nk" x1="-6.3672" x2="-5.1431" y1="1084.8" y2="1083.6" gradientTransform="matrix(57 0 0 -70 2237 76179)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#0A5C9D" offset="0"/>
-					<stop stop-color="#0A5C9B" offset="1"/>
-				</linearGradient>
-				<polygon points="1874.8 271.71 1921.4 309.25 1921.4 287.31 1895.6 242.33" fill="url(#nk)"/>
-					<linearGradient id="nm" x1="-3.8086" x2="-2.5845" y1="1084.7" y2="1083.5" gradientTransform="matrix(88 0 0 -70 2223 76179)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#0B5D9C" offset="0"/>
-					<stop stop-color="#085797" offset="1"/>
-				</linearGradient>
-				<polygon points="1921.4 287.31 1921.4 262.78 1895.6 242.33" fill="url(#nm)"/>
-					<linearGradient id="nn" x1="-5.3257" x2="-4.1015" y1="1087.4" y2="1086.2" gradientTransform="matrix(92 0 0 -49 1369 53326)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#B6D5E9" offset="0"/>
-					<stop stop-color="#BCD8E9" offset="1"/>
-				</linearGradient>
-				<polygon points="967.74 59.926 855.11 56.253 957.94 116.24" fill="url(#nn)"/>
-					<linearGradient id="no" x1="-3.1689" x2="-1.9448" y1="1083.3" y2="1082" gradientTransform="matrix(135 0 0 -107 1589 116230)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#17639D" offset="0"/>
-					<stop stop-color="#206AA2" offset="1"/>
-				</linearGradient>
-				<polygon points="1278.7 308.43 1177.1 439.42 1342.3 427.17" fill="url(#no)"/>
-					<linearGradient id="np" x1="-2.3872" x2="-1.1632" y1="1084.9" y2="1083.7" gradientTransform="matrix(155 0 0 -71 1611 77243)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#518FBC" offset="0"/>
-					<stop stop-color="#377FB3" offset="1"/>
-				</linearGradient>
-				<polygon points="1418.2 221.52 1228.5 225.19 1278.7 308.43" fill="url(#np)"/>
-					<linearGradient id="nq" x1="-5.3154" x2="-4.0912" y1="1083.5" y2="1082.3" gradientTransform="matrix(85 0 0 -97 1722 105420)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#16629C" offset="0"/>
-					<stop stop-color="#206AA2" offset="1"/>
-				</linearGradient>
-				<polygon points="1342.3 427.17 1382.7 419.83 1278.7 308.43" fill="url(#nq)"/>
-					<linearGradient id="nr" x1="-3.4639" x2="-2.2398" y1="1082.8" y2="1081.6" gradientTransform="matrix(114 0 0 -162 1693 175614)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#1E68A1" offset="0"/>
-					<stop stop-color="#2F79AE" offset="1"/>
-				</linearGradient>
-				<polygon points="1382.7 419.83 1418.2 221.52 1278.7 308.43" fill="url(#nr)"/>
-					<linearGradient id="ns" x1="-3.9375" x2="-2.7134" y1="1082.4" y2="1081.2" gradientTransform="matrix(132 0 0 -148 1186 160710)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#0F5792" offset="0"/>
-					<stop stop-color="#0C5795" offset="1"/>
-				</linearGradient>
-				<polygon points="680.06 684.25 841.65 564.28 740.04 503.07" fill="url(#ns)"/>
-					<linearGradient id="nt" x1="-4.52" x2="-3.2959" y1="1085.2" y2="1084" gradientTransform="matrix(109 0 0 -55 1258 60172)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#0C5794" offset="0"/>
-					<stop stop-color="#0F5B97" offset="1"/>
-				</linearGradient>
-				<polygon points="740.04 503.07 841.65 564.28 873.48 496.95" fill="url(#nt)"/>
-					<linearGradient id="nu" x1="-6.0845" x2="-4.8603" y1="1084.2" y2="1083" gradientTransform="matrix(99 0 0 -69 934 75300)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#0D5C97" offset="0"/>
-					<stop stop-color="#0E5C98" offset="1"/>
-				</linearGradient>
-				<polygon points="331.17 534.9 452.36 574.07 398.5 489.61" fill="url(#nu)"/>
-					<linearGradient id="nv" x1="-6.0049" x2="-4.7806" y1="1083.1" y2="1081.8" gradientTransform="matrix(99 0 0 -108 934 117496)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#0D5B96" offset="0"/>
-					<stop stop-color="#0F5995" offset="1"/>
-				</linearGradient>
-				<polygon points="331.17 534.9 400.95 667.11 452.36 574.07" fill="url(#nv)"/>
-					<linearGradient id="nx" x1="-11.165" x2="-9.9409" y1="1082.8" y2="1081.6" gradientTransform="matrix(56 0 0 -142 1032 154140)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#105F9A" offset="0"/>
-					<stop stop-color="#15629D" offset="1"/>
-				</linearGradient>
-				<polygon points="398.5 489.61 452.36 574.07 467.05 400.24" fill="url(#nx)"/>
-					<linearGradient id="nz" x1="-3.8398" x2="-2.6156" y1="1083.2" y2="1082" gradientTransform="matrix(148 0 0 -86 942 93746)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#105A93" offset="0"/>
-					<stop stop-color="#0F5994" offset="1"/>
-				</linearGradient>
-				<polygon points="400.95 667.11 582.12 679.35 452.36 574.07" fill="url(#nz)"/>
-					<linearGradient id="oa" x1="-5.1191" x2="-3.895" y1="1082.5" y2="1081.3" gradientTransform="matrix(114 0 0 -142 1018 154140)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#1967A0" offset="0"/>
-					<stop stop-color="#0F5D99" offset="1"/>
-				</linearGradient>
-				<polygon points="467.05 400.24 452.36 574.07 591.92 489.61" fill="url(#oa)"/>
-					<linearGradient id="ob" x1="-4.5967" x2="-3.3726" y1="1083.6" y2="1082.3" gradientTransform="matrix(128 0 0 -106 776 115131)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#2974A9" offset="0"/>
-					<stop stop-color="#3179AD" offset="1"/>
-				</linearGradient>
-				<polygon points="329.95 286.4 173.26 368.42 271.19 416.16" fill="url(#ob)"/>
-					<linearGradient id="oc" x1="-6.7329" x2="-5.5087" y1="1083.3" y2="1082.1" gradientTransform="matrix(94 0 0 -106 890 115131)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#236FA6" offset="0"/>
-					<stop stop-color="#3279AD" offset="1"/>
-				</linearGradient>
-				<polygon points="386.26 401.47 329.95 286.4 271.19 416.16" fill="url(#oc)"/>
-					<linearGradient id="od" x1="-4.5928" x2="-3.3688" y1="1083.7" y2="1082.5" gradientTransform="matrix(123 0 0 -101 909 109719)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#2F78AC" offset="0"/>
-					<stop stop-color="#498BBA" offset="1"/>
-				</linearGradient>
-				<polygon points="480.52 277.83 329.95 286.4 386.26 401.47" fill="url(#od)"/>
-					<linearGradient id="oe" x1="-5.6348" x2="-4.4108" y1="1085" y2="1083.7" gradientTransform="matrix(107 0 0 -68 925 73985)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#67A3CA" offset="0"/>
-					<stop stop-color="#5B99C3" offset="1"/>
-				</linearGradient>
-				<polygon points="460.93 231.31 429.1 203.15 329.95 286.4" fill="url(#oe)"/>
-					<linearGradient id="of" x1="-4.748" x2="-3.524" y1="1086.9" y2="1085.7" gradientTransform="matrix(123 0 0 -45 909 49145)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#5D9CC5" offset="0"/>
-					<stop stop-color="#5292BE" offset="1"/>
-				</linearGradient>
-				<polygon points="460.93 231.31 329.95 286.4 480.52 277.83" fill="url(#of)"/>
-					<linearGradient id="og" x1="-5.9883" x2="-4.7641" y1="1082.1" y2="1080.9" gradientTransform="matrix(74 0 0 -145 1720 157852)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#597697" offset="0"/>
-					<stop stop-color="#547496" offset="1"/>
-				</linearGradient>
-				<polygon points="1282.8 1080.3 1338.7 1080.3 1353.3 974.38" fill="url(#og)"/>
-					<linearGradient id="oh" x1="-3.6631" x2="-2.4389" y1="1081.9" y2="1080.7" gradientTransform="matrix(111 0 0 -145 1737 157852)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#58789A" offset="0"/>
-					<stop stop-color="#46668A" offset="1"/>
-				</linearGradient>
-				<polygon points="1353.3 974.38 1338.7 1080.3 1424.6 1080.3 1464.7 1050.3" fill="url(#oh)"/>
-					<linearGradient id="oj" x1="-3.6069" x2="-2.3827" y1="1082.6" y2="1081.4" gradientTransform="matrix(122 0 0 -140 1381 152197)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#4273A0" offset="0"/>
-					<stop stop-color="#16568F" offset="1"/>
-				</linearGradient>
-				<polygon points="906.53 668.33 1047.3 839.72 1055.9 672.01" fill="url(#oj)"/>
-					<linearGradient id="ok" x1="-2.3564" x2="-1.1322" y1="1082.3" y2="1081.1" gradientTransform="matrix(185 0 0 -158 1133 171655)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#195A91" offset="0"/>
-					<stop stop-color="#296496" offset="1"/>
-				</linearGradient>
-				<polygon points="748.61 861.75 906.53 668.33 680.06 684.25" fill="url(#ok)"/>
-					<linearGradient id="ol" x1="-2.5361" x2="-1.312" y1="1083" y2="1081.8" gradientTransform="matrix(185 0 0 -98 1133 106710)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#115690" offset="0"/>
-					<stop stop-color="#0E5490" offset="1"/>
-				</linearGradient>
-				<polygon points="680.06 684.25 906.53 668.33 841.65 564.28" fill="url(#ol)"/>
-					<linearGradient id="om" x1="-4.3892" x2="-3.1651" y1="1083.6" y2="1082.4" gradientTransform="matrix(110 0 0 -85 1340 92657)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#0A5391" offset="0"/>
-					<stop stop-color="#0C538F" offset="1"/>
-				</linearGradient>
-				<polygon points="841.65 564.28 906.53 668.33 976.31 566.73" fill="url(#om)"/>
-					<linearGradient id="on" x1="-4.042" x2="-2.8176" y1="1083.3" y2="1082" gradientTransform="matrix(122 0 0 -86 1381 93740)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#0B528F" offset="0"/>
-					<stop stop-color="#10538E" offset="1"/>
-				</linearGradient>
-				<polygon points="976.31 566.73 906.53 668.33 1055.9 672.01" fill="url(#on)"/>
-					<linearGradient id="oo" x1="-2.8311" x2="-1.607" y1="1082.7" y2="1081.5" gradientTransform="matrix(106 0 0 -141 2153 153145)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#054785" offset="0"/>
-					<stop stop-color="#054584" offset="1"/>
-				</linearGradient>
-				<polygon points="1921.4 626.3 1921.4 507.13 1832 511.64" fill="url(#oo)"/>
-					<linearGradient id="op" x1="-3.8853" x2="-2.6609" y1="1083.1" y2="1081.8" gradientTransform="matrix(150 0 0 -134 726 145332)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#327BAE" offset="0"/>
-					<stop stop-color="#4589B7" offset="1"/>
-				</linearGradient>
-				<polygon points="322.6 204.38 138.98 353.72 173.26 368.42" fill="url(#op)"/>
-					<linearGradient id="oq" x1="-4.0264" x2="-2.8023" y1="1082.4" y2="1081.2" gradientTransform="matrix(150 0 0 -193 726 209040)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#4588B6" offset="0"/>
-					<stop stop-color="#6FA7CC" offset="1"/>
-				</linearGradient>
-				<polygon points="322.6 204.38 221 117.46 138.98 353.72" fill="url(#oq)"/>
-					<linearGradient id="or" x1="-4.7231" x2="-3.499" y1="1083" y2="1081.8" gradientTransform="matrix(128 0 0 -134 776 145332)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#377EB0" offset="0"/>
-					<stop stop-color="#5795BF" offset="1"/>
-				</linearGradient>
-				<polygon points="329.95 286.4 322.6 204.38 173.26 368.42" fill="url(#or)"/>
-					<linearGradient id="os" x1="-4.9756" x2="-3.7514" y1="1085.3" y2="1084" gradientTransform="matrix(117 0 0 -71 826 77158)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#7EB3D4" offset="0"/>
-					<stop stop-color="#7BB2D3" offset="1"/>
-				</linearGradient>
-				<polygon points="364.22 123.58 221 117.46 322.6 204.38" fill="url(#os)"/>
-					<linearGradient id="ou" x1="-7.0635" x2="-5.8393" y1="1085" y2="1083.8" gradientTransform="matrix(87 0 0 -68 939 73985)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#5896C0" offset="0"/>
-					<stop stop-color="#6BA5CA" offset="1"/>
-				</linearGradient>
-				<polygon points="429.1 203.15 322.6 204.38 329.95 286.4" fill="url(#ou)"/>
-					<linearGradient id="ov" x1="-7.2725" x2="-6.0482" y1="1085.2" y2="1084" gradientTransform="matrix(87 0 0 -66 939 71758)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#7DB5D6" offset="0"/>
-					<stop stop-color="#71ABCF" offset="1"/>
-				</linearGradient>
-				<polygon points="429.1 203.15 364.22 123.58 322.6 204.38" fill="url(#ov)"/>
-					<linearGradient id="ow" x1="-4.0889" x2="-2.8647" y1="1098.4" y2="1097.2" gradientTransform="matrix(93 0 0 -16 2065 17736)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#1971AE" offset="0"/>
-					<stop stop-color="#186DAB" offset="1"/>
-				</linearGradient>
-				<polygon points="1822.2 177.44 1708.4 157.86 1727.9 177.44" fill="url(#ow)"/>
-					<linearGradient id="ox" x1="-3.2852" x2="-2.0609" y1="1083.5" y2="1082.3" gradientTransform="matrix(104 0 0 -125 2054 135456)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#2378B2" offset="0"/>
-					<stop stop-color="#3481B7" offset="1"/>
-				</linearGradient>
-				<polygon points="1835.7 24.425 1708.4 157.86 1822.2 177.44" fill="url(#ox)"/>
-					<linearGradient id="oy" x1="-4.7222" x2="-3.498" y1="1104.3" y2="1103.1" gradientTransform="matrix(77 0 0 -12 2097 13428)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#166CAA" offset="0"/>
-					<stop stop-color="#176BA9" offset="1"/>
-				</linearGradient>
-				<polygon points="1822.2 177.44 1727.9 177.44 1750 192.14" fill="url(#oy)"/>
-					<linearGradient id="pa" x1="-4.3057" x2="-3.0815" y1="1091.4" y2="1090.2" gradientTransform="matrix(82 0 0 -27 2110 29643)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#1569A8" offset="0"/>
-					<stop stop-color="#1669A7" offset="1"/>
-				</linearGradient>
-				<polygon points="1850.4 210.5 1822.2 177.44 1750 192.14" fill="url(#pa)"/>
-					<linearGradient id="pb" x1="-5.0835" x2="-3.8592" y1="1083.4" y2="1082.2" gradientTransform="matrix(71 0 0 -125 2180 1.3546e5)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#4B92C2" offset="0"/>
-					<stop stop-color="#3883B9" offset="1"/>
-				</linearGradient>
-				<polygon points="1909.1 46.46 1835.7 24.425 1822.2 177.44" fill="url(#pb)"/>
-					<linearGradient id="pc" x1="-6.4873" x2="-5.2632" y1="1088.2" y2="1087" gradientTransform="matrix(58 0 0 -38 2193 41534)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#1465A5" offset="0"/>
-					<stop stop-color="#1567A6" offset="1"/>
-				</linearGradient>
-				<polygon points="1850.4 210.5 1893.2 223.96 1822.2 177.44" fill="url(#pc)"/>
-					<linearGradient id="pd" x1="-4.959" x2="-3.7348" y1="1083.2" y2="1081.9" gradientTransform="matrix(71 0 0 -145 2180 1.5709e5)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#1B6CA8" offset="0"/>
-					<stop stop-color="#2F7CB4" offset="1"/>
-				</linearGradient>
-				<polygon points="1893.2 223.96 1909.1 46.46 1822.2 177.44" fill="url(#pd)"/>
-					<linearGradient id="pe" x1="-6.6914" x2="-5.4672" y1="1084.9" y2="1083.7" gradientTransform="matrix(84 0 0 -76 1293 82437)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#9CCAE6" offset="0"/>
-					<stop stop-color="#98CAE6" offset="1"/>
-				</linearGradient>
-				<polygon points="855.11 56.253 801.09 3.615 755.96 3.615 752.28 44.012" fill="url(#pe)"/>
-					<linearGradient id="pg" x1="-1.9614" x2="-.7373" y1="1084.5" y2="1083.2" gradientTransform="matrix(222 0 0 -89 1161 96477)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#A6CFE7" offset="0"/>
-					<stop stop-color="#8FC6E4" offset="1"/>
-				</linearGradient>
-				<polygon points="940.28 3.615 801.09 3.615 855.11 56.253" fill="url(#pg)"/>
-					<linearGradient id="ph" x1="-5.6816" x2="-4.4573" y1="1083.8" y2="1082.5" gradientTransform="matrix(87 0 0 -102 1539 110642)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#A5C5DC" offset="0"/>
-					<stop stop-color="#A6C8E0" offset="1"/>
-				</linearGradient>
-				<polygon points="1163.6 141.94 1077.9 84.409 1057.1 209.27" fill="url(#ph)"/>
-					<linearGradient id="pi" x1="-4.6426" x2="-3.4183" y1="1085" y2="1083.7" gradientTransform="matrix(105 0 0 -74 1538 80300)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#9DC8E3" offset="0"/>
-					<stop stop-color="#9DC7E1" offset="1"/>
-				</linearGradient>
-				<polygon points="1206.4 70.943 1110.3 3.615 1094.3 3.615 1077.9 84.409" fill="url(#pi)"/>
-					<linearGradient id="pj" x1="-4.1777" x2="-2.9537" y1="1086.3" y2="1085.1" gradientTransform="matrix(105 0 0 -58 1538 63067)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#9AC1DC" offset="0"/>
-					<stop stop-color="#9DC6E0" offset="1"/>
-				</linearGradient>
-				<polygon points="1206.4 70.943 1077.9 84.409 1163.6 141.94" fill="url(#pj)"/>
-					<linearGradient id="pk" x1="-4.7627" x2="-3.5385" y1="1084.1" y2="1082.9" gradientTransform="matrix(98 0 0 -102 1447 110642)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#BCD6E6" offset="0"/>
-					<stop stop-color="#AECCE1" offset="1"/>
-				</linearGradient>
-				<polygon points="1057.1 209.27 1077.9 84.409 957.94 116.24" fill="url(#pk)"/>
-					<linearGradient id="pl" x1="-5.124" x2="-3.8999" y1="1087.4" y2="1086.2" gradientTransform="matrix(98 0 0 -46 1447 50086)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#BED8E8" offset="0"/>
-					<stop stop-color="#B9D5E8" offset="1"/>
-				</linearGradient>
-				<polygon points="1077.9 84.409 967.74 59.926 957.94 116.24" fill="url(#pl)"/>
-					<linearGradient id="pm" x1="-4.5288" x2="-3.3046" y1="1085.3" y2="1084" gradientTransform="matrix(105 0 0 -74 1448 80300)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#B6D5E8" offset="0"/>
-					<stop stop-color="#AACEE6" offset="1"/>
-				</linearGradient>
-				<polygon points="1077.9 84.409 1094.3 3.615 1077.2 3.615 967.74 59.926" fill="url(#pm)"/>
-					<linearGradient id="pn" x1="-10.641" x2="-9.4164" y1="1083.7" y2="1082.4" gradientTransform="matrix(64 0 0 -121 783.9688 131045)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#70B4DA" offset="0"/>
-					<stop stop-color="#6BB6DD" offset="1"/>
-				</linearGradient>
-				<polygon points="183.05 7.287 179.83 3.615 128.07 3.615 145.1 66.047" fill="url(#pn)"/>
-					<linearGradient id="po" x1="-2.98" x2="-1.7558" y1="1082.2" y2="1081" gradientTransform="matrix(125 0 0 -138 1743 150209)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#537599" offset="0"/>
-					<stop stop-color="#3C6189" offset="1"/>
-				</linearGradient>
-				<polygon points="1353.3 974.38 1464.7 1050.3 1506.4 881.34" fill="url(#po)"/>
-					<linearGradient id="pp" x1="-3.5405" x2="-2.3164" y1="1081.9" y2="1080.7" gradientTransform="matrix(113 0 0 -138 1846 150209)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#3B5D84" offset="0"/>
-					<stop stop-color="#325882" offset="1"/>
-				</linearGradient>
-				<polygon points="1506.4 881.34 1464.7 1050.3 1603.1 973.15" fill="url(#pp)"/>
-					<linearGradient id="pr" x1="-3.7363" x2="-2.5122" y1="1082.9" y2="1081.7" gradientTransform="matrix(104 0 0 -75 1889 82106)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#30547E" offset="0"/>
-					<stop stop-color="#2F5581" offset="1"/>
-				</linearGradient>
-				<polygon points="1506.4 881.34 1603.1 973.15 1633.7 968.25" fill="url(#pr)"/>
-					<linearGradient id="ps" x1="-1.3486" x2="-.1245" y1="1082.4" y2="1081.2" gradientTransform="matrix(194 0 0 -135 1799 146902)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#2C517E" offset="0"/>
-					<stop stop-color="#245283" offset="1"/>
-				</linearGradient>
-				<polygon points="1633.7 968.25 1743.9 802.99 1506.4 881.34" fill="url(#ps)"/>
-					<linearGradient id="pt" x1="-3.0649" x2="-1.8408" y1="1082.5" y2="1081.2" gradientTransform="matrix(127 0 0 -137 1850 148782)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#09508E" offset="0"/>
-					<stop stop-color="#064786" offset="1"/>
-				</linearGradient>
-				<polygon points="1518.6 625.49 1642.2 604.68 1486.8 457.78" fill="url(#pt)"/>
-					<linearGradient id="pu" x1="-2.0732" x2="-.8491" y1="1083.1" y2="1081.9" gradientTransform="matrix(148 0 0 -120 1829 130405)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#0A518F" offset="0"/>
-					<stop stop-color="#074A89" offset="1"/>
-				</linearGradient>
-				<polygon points="1642.2 604.68 1668 468.8 1486.8 457.78" fill="url(#pu)"/>
-					<linearGradient id="pv" x1="-3.0127" x2="-1.7886" y1="1083" y2="1081.8" gradientTransform="matrix(144 0 0 -154 1337.9 1.6692e5)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#6E9FC3" offset="0"/>
-					<stop stop-color="#A4C4DB" offset="1"/>
-				</linearGradient>
-				<polygon points="1057.1 209.27 880.82 170.1 1010.6 358.62" fill="url(#pv)"/>
-					<linearGradient id="pw" x1="-4.0737" x2="-2.8494" y1="1083.5" y2="1082.2" gradientTransform="matrix(125 0 0 -114 1232 123658)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#A3C9E0" offset="0"/>
-					<stop stop-color="#9AC0DA" offset="1"/>
-				</linearGradient>
-				<polygon points="880.82 170.1 727.8 138.27 742.49 277.83" fill="url(#pw)"/>
-					<linearGradient id="px" x1="-4" x2="-2.7759" y1="1084.3" y2="1083" gradientTransform="matrix(125 0 0 -93 1232 100890)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#ACCFE4" offset="0"/>
-					<stop stop-color="#B3D2E7" offset="1"/>
-				</linearGradient>
-				<polygon points="880.82 170.1 855.11 56.253 727.8 138.27" fill="url(#px)"/>
-					<linearGradient id="py" x1="-4.3799" x2="-3.1557" y1="1082.6" y2="1081.4" gradientTransform="matrix(113 0 0 -191 1256 206921)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#7AABCC" offset="0"/>
-					<stop stop-color="#77A7C9" offset="1"/>
-				</linearGradient>
-				<polygon points="875.92 403.92 880.82 170.1 742.49 277.83" fill="url(#py)"/>
-					<linearGradient id="pz" x1="-6.2983" x2="-5.0743" y1="1084.1" y2="1082.9" gradientTransform="matrix(84 0 0 -93 1377 100890)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#B6D5E9" offset="0"/>
-					<stop stop-color="#BBD5E7" offset="1"/>
-				</linearGradient>
-				<polygon points="957.94 116.24 855.11 56.253 880.82 170.1" fill="url(#pz)"/>
-					<linearGradient id="qb" x1="-4.7192" x2="-3.495" y1="1082.2" y2="1081" gradientTransform="matrix(110 0 0 -191 1368 206921)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#508CB6" offset="0"/>
-					<stop stop-color="#78A7C8" offset="1"/>
-				</linearGradient>
-				<polygon points="1010.6 358.62 880.82 170.1 875.92 403.92" fill="url(#qb)"/>
-					<linearGradient id="qe" x1="-3.2188" x2="-1.9946" y1="1084.8" y2="1083.5" gradientTransform="matrix(144 0 0 -76 1337.9 82562)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#BCD6E6" offset="0"/>
-					<stop stop-color="#AFCCE0" offset="1"/>
-				</linearGradient>
-				<polygon points="957.94 116.24 880.82 170.1 1057.1 209.27" fill="url(#qe)"/>
-					<linearGradient id="qf" x1="-4.2251" x2="-3.0012" y1="1082.9" y2="1081.6" gradientTransform="matrix(140 0 0 -133 525 144594)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#6393B9" offset="0"/>
-					<stop stop-color="#5288B2" offset="1"/>
-				</linearGradient>
-				<polygon points="0 655.88 0 699.53 52.064 624.26" fill="url(#qf)"/>
-					<linearGradient id="qg" x1="-4.0117" x2="-2.7877" y1="1082.7" y2="1081.5" gradientTransform="matrix(153 0 0 -98 560 106892)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#87A8C5" offset="0"/>
-					<stop stop-color="#82A2C0" offset="1"/>
-				</linearGradient>
-				<polygon points="126.74 825.03 0 799.35 0 870.67 26.356 907.05" fill="url(#qg)"/>
-					<linearGradient id="qh" x1="-8.1133" x2="-6.889" y1="1082.5" y2="1081.3" gradientTransform="matrix(82 0 0 -114 702 124219)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#97B1CA" offset="0"/>
-					<stop stop-color="#87A4C1" offset="1"/>
-				</linearGradient>
-				<polygon points="26.356 907.05 94.91 964.58 126.74 825.03" fill="url(#qh)"/>
-					<linearGradient id="qi" x1="-9.6294" x2="-8.4052" y1="1082" y2="1080.8" gradientTransform="matrix(71 0 0 -141 768.9688 153406)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#9AB2C9" offset="0"/>
-					<stop stop-color="#88A4C0" offset="1"/>
-				</linearGradient>
-				<polygon points="94.91 964.58 181.82 997.63 126.74 825.03" fill="url(#qi)"/>
-					<linearGradient id="qj" x1="-5.751" x2="-4.5268" y1="1082" y2="1080.8" gradientTransform="matrix(111 0 0 -141 755 153406)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#95ADC5" offset="0"/>
-					<stop stop-color="#7D9BB8" offset="1"/>
-				</linearGradient>
-				<polygon points="181.82 997.63 262.62 946.22 126.74 825.03" fill="url(#qj)"/>
-					<linearGradient id="qk" x1="-3.9932" x2="-2.7691" y1="1082.2" y2="1081" gradientTransform="matrix(147 0 0 -150 719 163061)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#3E729E" offset="0"/>
-					<stop stop-color="#668AAC" offset="1"/>
-				</linearGradient>
-				<polygon points="126.74 825.03 306.69 918.06 236.91 734.44" fill="url(#qk)"/>
-					<linearGradient id="ql" x1="-4.0327" x2="-2.8086" y1="1082.6" y2="1081.4" gradientTransform="matrix(147 0 0 -99 719 108004)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#819CB7" offset="0"/>
-					<stop stop-color="#7292B0" offset="1"/>
-				</linearGradient>
-				<polygon points="262.62 946.22 306.69 918.06 126.74 825.03" fill="url(#ql)"/>
-					<linearGradient id="qm" x1="-6.3711" x2="-5.147" y1="1083.1" y2="1081.9" gradientTransform="matrix(105 0 0 -76 574 83151)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#A2BDD4" offset="0"/>
-					<stop stop-color="#A1BBD3" offset="1"/>
-				</linearGradient>
-				<polygon points="0 892.74 0 913.64 26.356 907.05" fill="url(#qm)"/>
-					<linearGradient id="qn" x1="-2.0596" x2="-.8354" y1="1082.4" y2="1081.2" gradientTransform="matrix(230 0 0 -106 483 115775)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#90AFCF" offset="0"/>
-					<stop stop-color="#8BABCD" offset="1"/>
-				</linearGradient>
-				<polygon points="81.152 1080.3 94.402 1080.3 88.789 1074.8" fill="url(#qn)"/>
-					<linearGradient id="qp" x1="-8.9111" x2="-7.6871" y1="1082.4" y2="1081.2" gradientTransform="matrix(76 0 0 -90 759 98389)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#A1B9D0" offset="0"/>
-					<stop stop-color="#9EB7D0" offset="1"/>
-				</linearGradient>
-				<polygon points="88.789 1074.8 181.82 997.63 94.91 964.58" fill="url(#qp)"/>
-					<linearGradient id="qq" x1="-6.4434" x2="-5.2192" y1="1084.7" y2="1083.5" gradientTransform="matrix(98 0 0 -77 568 83858)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#1D6AA5" offset="0"/>
-					<stop stop-color="#1767A2" offset="1"/>
-				</linearGradient>
-				<polygon points="0 385.46 0 388.55 1.873 385.55" fill="url(#qq)"/>
-					<linearGradient id="qr" x1="-5.9395" x2="-4.7154" y1="1082.5" y2="1081.3" gradientTransform="matrix(112 0 0 -173 652 187466)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#4E90BE" offset="0"/>
-					<stop stop-color="#2A76AB" offset="1"/>
-				</linearGradient>
-				<polygon points="78.995 173.77 1.873 385.55 138.98 353.72" fill="url(#qr)"/>
-					<linearGradient id="qs" x1="-5.7412" x2="-4.5169" y1="1088.5" y2="1087.3" gradientTransform="matrix(112 0 0 -33 652 36273)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#1F6EA7" offset="0"/>
-					<stop stop-color="#2270A8" offset="1"/>
-				</linearGradient>
-				<polygon points="138.98 353.72 1.873 385.55 104.7 394.12" fill="url(#qs)"/>
-					<linearGradient id="qt" x1="-6.9795" x2="-5.7552" y1="1082.7" y2="1081.5" gradientTransform="matrix(98 0 0 -162 568 175586)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#2B75AC" offset="0"/>
-					<stop stop-color="#3C83B5" offset="1"/>
-				</linearGradient>
-				<polygon points="0 365.32 0 385.46 1.873 385.55" fill="url(#qt)"/>
-					<linearGradient id="qu" x1="-8.7559" x2="-7.5316" y1="1082.7" y2="1081.4" gradientTransform="matrix(78 0 0 -173 671 187466)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#357DB2" offset="0"/>
-					<stop stop-color="#5B9AC5" offset="1"/>
-				</linearGradient>
-				<polygon points="78.995 173.77 0 184.91 0 365.32 1.873 385.55" fill="url(#qu)"/>
-					<linearGradient id="qv" x1="-6.8496" x2="-5.6255" y1="1083" y2="1081.8" gradientTransform="matrix(91 0 0 -144 969 155932)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#81BDDD" offset="0"/>
-					<stop stop-color="#75BDE0" offset="1"/>
-				</linearGradient>
-				<polygon points="475.62 81.961 437.16 3.615 395.05 3.615 364.22 123.58" fill="url(#qv)"/>
-					<linearGradient id="qw" x1="-6.4678" x2="-5.2434" y1="1084.2" y2="1082.9" gradientTransform="matrix(91 0 0 -99 969 107397)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#80B9D9" offset="0"/>
-					<stop stop-color="#78B5D7" offset="1"/>
-				</linearGradient>
-				<polygon points="475.62 81.961 364.22 123.58 429.1 203.15" fill="url(#qw)"/>
-					<linearGradient id="qx" x1="-5.1533" x2="-3.9291" y1="1083.8" y2="1082.6" gradientTransform="matrix(114 0 0 -99 999 107397)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#73AFD3" offset="0"/>
-					<stop stop-color="#7EBADC" offset="1"/>
-				</linearGradient>
-				<polygon points="568.66 143.17 475.62 81.961 429.1 203.15" fill="url(#qx)"/>
-					<linearGradient id="qy" x1="-2.9448" x2="-1.7207" y1="1083.5" y2="1082.3" gradientTransform="matrix(169 0 0 -128 1045 138624)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#71BDE2" offset="0"/>
-					<stop stop-color="#88C3E3" offset="1"/>
-				</linearGradient>
-				<polygon points="727.08 3.615 600.45 3.615 658.02 89.306" fill="url(#qy)"/>
-					<linearGradient id="ra" x1="-4.1992" x2="-2.9749" y1="1087.6" y2="1086.3" gradientTransform="matrix(130 0 0 -44 1097 47948)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#8CC0DE" offset="0"/>
-					<stop stop-color="#9BC7E2" offset="1"/>
-				</linearGradient>
-				<polygon points="727.8 138.27 658.02 89.306 568.66 143.17" fill="url(#ra)"/>
-					<linearGradient id="rc" x1="-7.1787" x2="-5.9545" y1="1085.1" y2="1083.9" gradientTransform="matrix(77 0 0 -77 1223 83584)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#A2CBE3" offset="0"/>
-					<stop stop-color="#9DCAE4" offset="1"/>
-				</linearGradient>
-				<polygon points="752.28 44.012 658.02 89.306 727.8 138.27" fill="url(#rc)"/>
-					<linearGradient id="rd" x1="-6.8442" x2="-5.6201" y1="1084" y2="1082.8" gradientTransform="matrix(83 0 0 -103 1217 111624)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#9AC9E6" offset="0"/>
-					<stop stop-color="#8FC5E4" offset="1"/>
-				</linearGradient>
-				<polygon points="752.28 44.012 755.96 3.615 727.08 3.615 658.02 89.306" fill="url(#rd)"/>
-					<linearGradient id="re" x1="-5.1572" x2="-3.9332" y1="1083.9" y2="1082.7" gradientTransform="matrix(112 0 0 -110 985 119178)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#6DBCE1" offset="0"/>
-					<stop stop-color="#7DBEE1" offset="1"/>
-				</linearGradient>
-				<polygon points="546.62 20.753 514.63 3.615 437.16 3.615 475.62 81.961" fill="url(#re)"/>
-					<linearGradient id="rf" x1="-4.8486" x2="-3.6246" y1="1085.5" y2="1084.3" gradientTransform="matrix(117 0 0 -72 980 78088)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#66BBE1" offset="0"/>
-					<stop stop-color="#6EBCE2" offset="1"/>
-				</linearGradient>
-				<polygon points="547.82 3.615 514.63 3.615 546.62 20.753" fill="url(#rf)"/>
-					<linearGradient id="rg" x1="-7.8066" x2="-6.5826" y1="1084.2" y2="1082.9" gradientTransform="matrix(76 0 0 -100 1075 108428)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#81BEDF" offset="0"/>
-					<stop stop-color="#81BEDF" offset="1"/>
-				</linearGradient>
-				<polygon points="546.62 20.753 475.62 81.961 568.66 143.17" fill="url(#rg)"/>
-					<linearGradient id="rh" x1="-6.4424" x2="-5.2183" y1="1083.4" y2="1082.1" gradientTransform="matrix(91 0 0 -128 1118 138624)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#70BDE2" offset="0"/>
-					<stop stop-color="#88C2E3" offset="1"/>
-				</linearGradient>
-				<polygon points="658.02 89.306 600.45 3.615 547.82 3.615 546.62 20.753" fill="url(#rh)"/>
-					<linearGradient id="ri" x1="-6.3901" x2="-5.1659" y1="1084" y2="1082.7" gradientTransform="matrix(91 0 0 -100 1118 108428)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#87BFDE" offset="0"/>
-					<stop stop-color="#8BC3E2" offset="1"/>
-				</linearGradient>
-				<polygon points="658.02 89.306 546.62 20.753 568.66 143.17" fill="url(#ri)"/>
-					<linearGradient id="rj" x1="-5.5933" x2="-4.3691" y1="1083.1" y2="1081.8" gradientTransform="matrix(90 0 0 -122 1498 132364)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#5991BA" offset="0"/>
-					<stop stop-color="#77A5C7" offset="1"/>
-				</linearGradient>
-				<polygon points="1120.8 296.19 1057.1 209.27 1010.6 358.62" fill="url(#rj)"/>
-					<linearGradient id="rk" x1="-3.1777" x2="-1.9536" y1="1083.3" y2="1082" gradientTransform="matrix(136 0 0 -117 1452 1.2703e5)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#3C7DAD" offset="0"/>
-					<stop stop-color="#3678AA" offset="1"/>
-				</linearGradient>
-				<polygon points="1120.8 296.19 1010.6 358.62 1177.1 439.42" fill="url(#rk)"/>
-					<linearGradient id="rm" x1="-5.3672" x2="-4.1428" y1="1083.4" y2="1082.2" gradientTransform="matrix(87 0 0 -126 1539 136633)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#96BAD4" offset="0"/>
-					<stop stop-color="#7FABCC" offset="1"/>
-				</linearGradient>
-				<polygon points="1163.6 141.94 1057.1 209.27 1120.8 296.19" fill="url(#rm)"/>
-					<linearGradient id="rn" x1="-5.498" x2="-4.2739" y1="1083.1" y2="1081.9" gradientTransform="matrix(88 0 0 -126 1590 136633)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#87B2D1" offset="0"/>
-					<stop stop-color="#669BC2" offset="1"/>
-				</linearGradient>
-				<polygon points="1228.5 225.19 1163.6 141.94 1120.8 296.19" fill="url(#rn)"/>
-					<linearGradient id="ro" x1="-3.2378" x2="-2.0137" y1="1083.3" y2="1082.1" gradientTransform="matrix(129 0 0 -117 1549 1.2703e5)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#226BA2" offset="0"/>
-					<stop stop-color="#3F80B0" offset="1"/>
-				</linearGradient>
-				<polygon points="1278.7 308.43 1120.8 296.19 1177.1 439.42" fill="url(#ro)"/>
-					<linearGradient id="rp" x1="-3.373" x2="-2.1489" y1="1084.9" y2="1083.7" gradientTransform="matrix(129 0 0 -68 1549 74003)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#5892BD" offset="0"/>
-					<stop stop-color="#4987B5" offset="1"/>
-				</linearGradient>
-				<polygon points="1228.5 225.19 1120.8 296.19 1278.7 308.43" fill="url(#rp)"/>
-					<linearGradient id="rq" x1="-3.4111" x2="-2.187" y1="1082.4" y2="1081.2" gradientTransform="matrix(109 0 0 -145 1995 157439)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#054584" offset="0"/>
-					<stop stop-color="#074886" offset="1"/>
-				</linearGradient>
-				<polygon points="1642.2 604.68 1775.7 646.3 1668 468.8" fill="url(#rq)"/>
-					<linearGradient id="rr" x1="-2.2837" x2="-1.0596" y1="1082.7" y2="1081.5" gradientTransform="matrix(134 0 0 -145 1991 157439)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#074B8A" offset="0"/>
-					<stop stop-color="#064685" offset="1"/>
-				</linearGradient>
-				<polygon points="1775.7 646.3 1832 511.64 1668 468.8" fill="url(#rr)"/>
-					<linearGradient id="rs" x1="-16.029" x2="-14.805" y1="1082.4" y2="1081.2" gradientTransform="matrix(26 0 0 -135 2161 146774)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#134881" offset="0"/>
-					<stop stop-color="#0F4680" offset="1"/>
-				</linearGradient>
-				<polygon points="1754.9 811.56 1775.7 646.3 1743.9 802.99" fill="url(#rs)"/>
-					<linearGradient id="rt" x1="-2.3857" x2="-1.1616" y1="1082.3" y2="1081.1" gradientTransform="matrix(136 0 0 -135 2060 146774)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#114781" offset="0"/>
-					<stop stop-color="#084381" offset="1"/>
-				</linearGradient>
-				<polygon points="1754.9 811.56 1921.4 723.42 1775.7 646.3" fill="url(#rt)"/>
-					<linearGradient id="ru" x1="-2.0327" x2="-.8085" y1="1082.4" y2="1081.2" gradientTransform="matrix(152 0 0 -136 2061 147745)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#054685" offset="0"/>
-					<stop stop-color="#054381" offset="1"/>
-				</linearGradient>
-				<polygon points="1775.7 646.3 1921.4 671.22 1921.4 626.3 1832 511.64" fill="url(#ru)"/>
-					<linearGradient id="rv" x1="-1.8037" x2="-.5794" y1="1084.1" y2="1082.9" gradientTransform="matrix(152 0 0 -63 2061 68942)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#064180" offset="0"/>
-					<stop stop-color="#054280" offset="1"/>
-				</linearGradient>
-				<polygon points="1921.4 723.42 1921.4 671.22 1775.7 646.3" fill="url(#rv)"/>
-					<linearGradient id="rx" x1="-1.5498" x2="-.3255" y1="1082.4" y2="1081.2" gradientTransform="matrix(188 0 0 -140 1713 152231)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#18528A" offset="0"/>
-					<stop stop-color="#1B5085" offset="1"/>
-				</linearGradient>
-				<polygon points="1506.4 881.34 1623.9 709.96 1393.7 761.37" fill="url(#rx)"/>
-					<linearGradient id="ry" x1="-1.8374" x2="-.6133" y1="1082.6" y2="1081.4" gradientTransform="matrix(188 0 0 -111 1713 120813)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#124F89" offset="0"/>
-					<stop stop-color="#0A4884" offset="1"/>
-				</linearGradient>
-				<polygon points="1393.7 761.37 1623.9 709.96 1518.6 625.49" fill="url(#ry)"/>
-					<linearGradient id="rz" x1="-1.6641" x2="-.4399" y1="1082.1" y2="1080.9" gradientTransform="matrix(194 0 0 -140 1799 152231)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#235385" offset="0"/>
-					<stop stop-color="#144A82" offset="1"/>
-				</linearGradient>
-				<polygon points="1743.9 802.99 1623.9 709.96 1506.4 881.34" fill="url(#rz)"/>
-					<linearGradient id="sa" x1="-3.5513" x2="-2.3272" y1="1083.6" y2="1082.4" gradientTransform="matrix(101 0 0 -86 1902 93771)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#074784" offset="0"/>
-					<stop stop-color="#084582" offset="1"/>
-				</linearGradient>
-				<polygon points="1623.9 709.96 1642.2 604.68 1518.6 625.49" fill="url(#sa)"/>
-					<linearGradient id="sb" x1="-2.873" x2="-1.6489" y1="1083.2" y2="1082" gradientTransform="matrix(124 0 0 -86 1965 93771)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#064483" offset="0"/>
-					<stop stop-color="#084482" offset="1"/>
-				</linearGradient>
-				<polygon points="1623.9 709.96 1775.7 646.3 1642.2 604.68" fill="url(#sb)"/>
-					<linearGradient id="sd" x1="-2.5693" x2="-1.3452" y1="1082.7" y2="1081.5" gradientTransform="matrix(124 0 0 -128 1965 139207)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#124881" offset="0"/>
-					<stop stop-color="#094481" offset="1"/>
-				</linearGradient>
-				<polygon points="1743.9 802.99 1775.7 646.3 1623.9 709.96" fill="url(#sd)"/>
-					<linearGradient id="se" x1="-3.4551" x2="-2.2307" y1="1082.8" y2="1081.6" gradientTransform="matrix(128 0 0 -81 1471 88624)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#9DB2C7" offset="0"/>
-					<stop stop-color="#97ADC2" offset="1"/>
-				</linearGradient>
-				<polygon points="1043.6 1019.7 1180.7 920.51 1024 970.7" fill="url(#se)"/>
-					<linearGradient id="sf" x1="-3.6807" x2="-2.4563" y1="1082.3" y2="1081.1" gradientTransform="matrix(128 0 0 -107 1471 116664)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#96AEC4" offset="0"/>
-					<stop stop-color="#7F9FBA" offset="1"/>
-				</linearGradient>
-				<polygon points="1024 970.7 1180.7 920.51 1047.3 839.72" fill="url(#sf)"/>
-					<linearGradient id="sg" x1="-3.9375" x2="-2.7134" y1="1082" y2="1080.8" gradientTransform="matrix(112 0 0 -175 1503 190238)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#97ABBF" offset="0"/>
-					<stop stop-color="#7E97B0" offset="1"/>
-				</linearGradient>
-				<polygon points="1043.6 1019.7 1100.4 1080.3 1158.8 1080.3 1180.7 920.51" fill="url(#sg)"/>
-					<linearGradient id="sh" x1="-4.1133" x2="-2.8891" y1="1082.4" y2="1081.2" gradientTransform="matrix(109 0 0 -131 1509 142543)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#648CAF" offset="0"/>
-					<stop stop-color="#5F89AD" offset="1"/>
-				</linearGradient>
-				<polygon points="1047.3 839.72 1180.7 920.51 1167.3 760.15" fill="url(#sh)"/>
-					<linearGradient id="sj" x1="-11.556" x2="-10.332" y1="1081.8" y2="1080.6" gradientTransform="matrix(44 0 0 -175 1659 190238)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#6C85A1" offset="0"/>
-					<stop stop-color="#758FAB" offset="1"/>
-				</linearGradient>
-				<polygon points="1158.8 1080.3 1199.5 1080.3 1180.7 920.51" fill="url(#sj)"/>
-					<linearGradient id="sk" x1="-4.9839" x2="-3.7599" y1="1082.2" y2="1081" gradientTransform="matrix(93 0 0 -131 1623 142543)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#4375A0" offset="0"/>
-					<stop stop-color="#6189AC" offset="1"/>
-				</linearGradient>
-				<polygon points="1167.3 760.15 1180.7 920.51 1281.1 822.58" fill="url(#sk)"/>
-					<linearGradient id="sl" x1="-7.2954" x2="-6.0713" y1="1081.7" y2="1080.5" gradientTransform="matrix(67 0 0 -170 1660 1.8483e5)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#6882A0" offset="0"/>
-					<stop stop-color="#738FAA" offset="1"/>
-				</linearGradient>
-				<polygon points="1199.5 1080.3 1249.8 1080.3 1180.7 920.51" fill="url(#sl)"/>
-					<linearGradient id="sm" x1="-2.79" x2="-1.5661" y1="1082" y2="1080.8" gradientTransform="matrix(141 0 0 -155 1585.9 1.6862e5)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#6985A3" offset="0"/>
-					<stop stop-color="#7794B0" offset="1"/>
-				</linearGradient>
-				<polygon points="1180.7 920.51 1249.8 1080.3 1282.8 1080.3 1353.3 974.38" fill="url(#sm)"/>
-					<linearGradient id="sn" x1="-2.894" x2="-1.67" y1="1082.3" y2="1081" gradientTransform="matrix(141 0 0 -124 1585.9 1.3503e5)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#5781A6" offset="0"/>
-					<stop stop-color="#7292B0" offset="1"/>
-				</linearGradient>
-				<polygon points="1180.7 920.51 1353.3 974.38 1281.1 822.58" fill="url(#sn)"/>
-					<linearGradient id="so" x1="-3.6748" x2="-2.4506" y1="1083.5" y2="1082.3" gradientTransform="matrix(125 0 0 -62 1349 68064)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#8AA8C0" offset="0"/>
-					<stop stop-color="#80A0BB" offset="1"/>
-				</linearGradient>
-				<polygon points="871.03 894.8 1024 970.7 1004.5 924.18" fill="url(#so)"/>
-					<linearGradient id="sp" x1="-3.0806" x2="-1.8565" y1="1083.4" y2="1082.2" gradientTransform="matrix(144 0 0 -69 1329.9 75586)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#80A0BB" offset="0"/>
-					<stop stop-color="#678EB0" offset="1"/>
-				</linearGradient>
-				<polygon points="1047.3 839.72 871.03 894.8 1004.5 924.18" fill="url(#sp)"/>
-					<linearGradient id="sq" x1="-3.2417" x2="-2.0175" y1="1084.1" y2="1082.9" gradientTransform="matrix(157 0 0 -47 1160 51822)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#608AAD" offset="0"/>
-					<stop stop-color="#5683A8" offset="1"/>
-				</linearGradient>
-				<polygon points="678.84 919.29 871.03 894.8 748.61 861.75" fill="url(#sq)"/>
-					<linearGradient id="sr" x1="-2.8457" x2="-1.6215" y1="1082.1" y2="1080.8" gradientTransform="matrix(157 0 0 -173 1160 188055)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#6F94B3" offset="0"/>
-					<stop stop-color="#7092B0" offset="1"/>
-				</linearGradient>
-				<polygon points="678.84 919.29 792.46 1080.3 818.5 1080.3 871.03 894.8" fill="url(#sr)"/>
-					<linearGradient id="ss" x1="-3.8047" x2="-2.5805" y1="1082.1" y2="1080.8" gradientTransform="matrix(129 0 0 -185 1245 200842)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#3F729D" offset="0"/>
-					<stop stop-color="#376D9B" offset="1"/>
-				</linearGradient>
-				<polygon points="748.61 861.75 871.03 894.8 906.53 668.33" fill="url(#ss)"/>
-					<linearGradient id="su" x1="-2.5894" x2="-1.365" y1="1081.8" y2="1080.6" gradientTransform="matrix(174 0 0 -173 1251 188055)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#819DB5" offset="0"/>
-					<stop stop-color="#80A0BB" offset="1"/>
-				</linearGradient>
-				<polygon points="871.03 894.8 818.5 1080.3 852.3 1080.3 1024 970.7" fill="url(#su)"/>
-					<linearGradient id="sv" x1="-3.4189" x2="-2.1949" y1="1081.8" y2="1080.6" gradientTransform="matrix(144 0 0 -185 1329.9 2.0084e5)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#266194" offset="0"/>
-					<stop stop-color="#5481A7" offset="1"/>
-				</linearGradient>
-				<polygon points="906.53 668.33 871.03 894.8 1047.3 839.72" fill="url(#sv)"/>
-					<linearGradient id="sw" x1="-3.9395" x2="-2.7153" y1="1083.5" y2="1082.3" gradientTransform="matrix(135 0 0 -86 997 93746)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#0D5995" offset="0"/>
-					<stop stop-color="#0F5893" offset="1"/>
-				</linearGradient>
-				<polygon points="452.36 574.07 582.12 679.35 617.63 624.26" fill="url(#sw)"/>
-					<linearGradient id="sx" x1="-3.9678" x2="-2.7437" y1="1083.1" y2="1081.9" gradientTransform="matrix(135 0 0 -110 997 119621)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#0B5996" offset="0"/>
-					<stop stop-color="#0C5A96" offset="1"/>
-				</linearGradient>
-				<polygon points="452.36 574.07 617.63 624.26 591.92 489.61" fill="url(#sx)"/>
-					<linearGradient id="sy" x1="-7.3687" x2="-6.1444" y1="1084.8" y2="1083.6" gradientTransform="matrix(80 0 0 -49 1158 53790)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#125993" offset="0"/>
-					<stop stop-color="#105792" offset="1"/>
-				</linearGradient>
-				<polygon points="617.63 624.26 582.12 679.35 680.06 684.25" fill="url(#sy)"/>
-					<linearGradient id="sz" x1="-4.3838" x2="-3.1596" y1="1083" y2="1081.8" gradientTransform="matrix(121 0 0 -110 1125 119621)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#0E5D99" offset="0"/>
-					<stop stop-color="#0D5996" offset="1"/>
-				</linearGradient>
-				<polygon points="591.92 489.61 617.63 624.26 740.04 503.07" fill="url(#sz)"/>
-					<linearGradient id="ta" x1="-5.3936" x2="-4.1694" y1="1082.6" y2="1081.4" gradientTransform="matrix(100 0 0 -148 1167 160710)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#0F5792" offset="0"/>
-					<stop stop-color="#0D5895" offset="1"/>
-				</linearGradient>
-				<polygon points="617.63 624.26 680.06 684.25 740.04 503.07" fill="url(#ta)"/>
-					<linearGradient id="tb" x1="-3.6895" x2="-2.4654" y1="1082.5" y2="1081.3" gradientTransform="matrix(163 0 0 -133 550 144594)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#5E8FB6" offset="0"/>
-					<stop stop-color="#25699E" offset="1"/>
-				</linearGradient>
-				<polygon points="52.064 624.26 0 699.53 0 753.64 138.98 676.9" fill="url(#tb)"/>
-					<linearGradient id="tc" x1="-3.6006" x2="-2.3765" y1="1082.7" y2="1081.5" gradientTransform="matrix(163 0 0 -121 550 131665)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#6D97BA" offset="0"/>
-					<stop stop-color="#477BA6" offset="1"/>
-				</linearGradient>
-				<polygon points="138.98 676.9 0 753.64 0 799.35 126.74 825.03" fill="url(#tc)"/>
-					<linearGradient id="te" x1="-8.4463" x2="-7.2219" y1="1082.5" y2="1081.3" gradientTransform="matrix(79 0 0 -156 726 169344)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#16629B" offset="0"/>
-					<stop stop-color="#15629B" offset="1"/>
-				</linearGradient>
-				<polygon points="52.064 624.26 138.98 676.9 148.77 485.94" fill="url(#te)"/>
-					<linearGradient id="tg" x1="-7.3335" x2="-6.1093" y1="1082.4" y2="1081.2" gradientTransform="matrix(90 0 0 -121 776 131665)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#4C7BA5" offset="0"/>
-					<stop stop-color="#29679A" offset="1"/>
-				</linearGradient>
-				<polygon points="138.98 676.9 126.74 825.03 236.91 734.44" fill="url(#tg)"/>
-					<linearGradient id="th" x1="-9.2676" x2="-8.0433" y1="1082.4" y2="1081.2" gradientTransform="matrix(72 0 0 -156 803.9688 169344)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#0F609C" offset="0"/>
-					<stop stop-color="#14609A" offset="1"/>
-				</linearGradient>
-				<polygon points="148.77 485.94 138.98 676.9 227.12 505.52" fill="url(#th)"/>
-					<linearGradient id="ti" x1="-4.3057" x2="-3.0816" y1="1082.4" y2="1081.2" gradientTransform="matrix(143 0 0 -140 732.9375 152064)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#105E98" offset="0"/>
-					<stop stop-color="#165E97" offset="1"/>
-				</linearGradient>
-				<polygon points="227.12 505.52 138.98 676.9 314.04 659.77" fill="url(#ti)"/>
-					<linearGradient id="tj" x1="-3.9844" x2="-2.7602" y1="1084.3" y2="1083.1" gradientTransform="matrix(143 0 0 -61 732.94 66791)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#226397" offset="0"/>
-					<stop stop-color="#1A6097" offset="1"/>
-				</linearGradient>
-				<polygon points="314.04 659.77 138.98 676.9 236.91 734.44" fill="url(#tj)"/>
-					<linearGradient id="tk" x1="-4.3545" x2="-3.1303" y1="1082.9" y2="1081.6" gradientTransform="matrix(140 0 0 -129 525 140226)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#4E86B2" offset="0"/>
-					<stop stop-color="#1F679F" offset="1"/>
-				</linearGradient>
-				<polygon points="0 602.45 0 655.88 52.064 624.26" fill="url(#tk)"/>
-					<linearGradient id="tl" x1="-8.3306" x2="-7.1064" y1="1084" y2="1082.8" gradientTransform="matrix(82 0 0 -79 618 86097)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#12609C" offset="0"/>
-					<stop stop-color="#0E5F9C" offset="1"/>
-				</linearGradient>
-				<polygon points="0 514.24 0 541.49 23.909 532.45" fill="url(#tl)"/>
-					<linearGradient id="tm" x1="-6.2075" x2="-4.9834" y1="1084" y2="1082.8" gradientTransform="matrix(105 0 0 -75 595 81821)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#14629C" offset="0"/>
-					<stop stop-color="#13619C" offset="1"/>
-				</linearGradient>
-				<polygon points="23.909 532.45 0 541.49 0 602.45 52.064 624.26" fill="url(#tm)"/>
-					<linearGradient id="tn" x1="-11.095" x2="-9.871" y1="1083.2" y2="1081.9" gradientTransform="matrix(63 0 0 -120 655.9688 130346)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#10619F" offset="0"/>
-					<stop stop-color="#1464A1" offset="1"/>
-				</linearGradient>
-				<polygon points="1.873 385.55 0 388.55 0 514.24 23.909 532.45" fill="url(#tn)"/>
-					<linearGradient id="to" x1="-8.0264" x2="-6.8022" y1="1083.1" y2="1081.8" gradientTransform="matrix(84 0 0 -120 680 130346)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#1969A4" offset="0"/>
-					<stop stop-color="#1566A1" offset="1"/>
-				</linearGradient>
-				<polygon points="1.873 385.55 23.909 532.45 104.7 394.12" fill="url(#to)"/>
-					<linearGradient id="tp" x1="-6.3638" x2="-5.1395" y1="1083" y2="1081.8" gradientTransform="matrix(102 0 0 -113 680 122861)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#14619C" offset="0"/>
-					<stop stop-color="#0F5F9C" offset="1"/>
-				</linearGradient>
-				<polygon points="23.909 532.45 52.064 624.26 148.77 485.94" fill="url(#tp)"/>
-					<linearGradient id="tr" x1="-6.5415" x2="-5.3174" y1="1083" y2="1081.8" gradientTransform="matrix(102 0 0 -113 680 122786)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#1768A3" offset="0"/>
-					<stop stop-color="#0F619E" offset="1"/>
-				</linearGradient>
-				<polygon points="104.7 394.12 23.909 532.45 148.77 485.94" fill="url(#tr)"/>
-					<linearGradient id="ts" x1="-8.7588" x2="-7.5345" y1="1082.9" y2="1081.7" gradientTransform="matrix(76 0 0 -97 632 105909)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#A3BDD6" offset="0"/>
-					<stop stop-color="#9DB8D2" offset="1"/>
-				</linearGradient>
-				<polygon points="0 913.64 0 942.07 26.356 907.05" fill="url(#ts)"/>
-					<linearGradient id="tt" x1="-5.0112" x2="-3.7871" y1="1082.2" y2="1081" gradientTransform="matrix(124 0 0 -128 587 139517)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#94B2D1" offset="0"/>
-					<stop stop-color="#95B2D1" offset="1"/>
-				</linearGradient>
-				<polygon points="0 1046.1 0 1080.3 81.152 1080.3 88.789 1074.8" fill="url(#tt)"/>
-					<linearGradient id="tu" x1="-4.9482" x2="-3.724" y1="1082.5" y2="1081.3" gradientTransform="matrix(129 0 0 -97 582 105909)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#A0B8D1" offset="0"/>
-					<stop stop-color="#9EB8D1" offset="1"/>
-				</linearGradient>
-				<polygon points="26.356 907.05 0 942.07 0 1001.4 94.91 964.58" fill="url(#tu)"/>
-					<linearGradient id="tv" x1="-4.7998" x2="-3.5757" y1="1082.7" y2="1081.5" gradientTransform="matrix(129 0 0 -90 582 98389)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#9BB6D2" offset="0"/>
-					<stop stop-color="#9CB7D1" offset="1"/>
-				</linearGradient>
-				<polygon points="94.91 964.58 0 1001.4 0 1046.1 88.789 1074.8" fill="url(#tv)"/>
-					<linearGradient id="tw" x1="-4.9321" x2="-3.7079" y1="1082.3" y2="1081.1" gradientTransform="matrix(126 0 0 -99 709 108145)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#9CB6D2" offset="0"/>
-					<stop stop-color="#9FB8D0" offset="1"/>
-				</linearGradient>
-				<polygon points="88.789 1074.8 108.07 1080.3 223.56 1080.3 181.82 997.63" fill="url(#tw)"/>
-					<linearGradient id="tx" x1="-4.8989" x2="-3.6748" y1="1082.1" y2="1080.9" gradientTransform="matrix(126 0 0 -106 709 115775)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#95B2D0" offset="0"/>
-					<stop stop-color="#91B0CE" offset="1"/>
-				</linearGradient>
-				<polygon points="94.402 1080.3 108.07 1080.3 88.789 1074.8" fill="url(#tx)"/>
-					<linearGradient id="ty" x1="-9.8335" x2="-8.6093" y1="1082.2" y2="1081" gradientTransform="matrix(66 0 0 -141 844.97 1.535e5)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#A2B7CE" offset="0"/>
-					<stop stop-color="#99B1C9" offset="1"/>
-				</linearGradient>
-				<polygon points="181.82 997.63 223.56 1080.3 247.41 1080.3 262.62 946.22" fill="url(#ty)"/>
-					<linearGradient id="tz" x1="-4.6313" x2="-3.4072" y1="1081.8" y2="1080.6" gradientTransform="matrix(132 0 0 -141 829 153505)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#98AEC6" offset="0"/>
-					<stop stop-color="#A4BAD0" offset="1"/>
-				</linearGradient>
-				<polygon points="247.41 1080.3 384.1 1080.3 262.62 946.22" fill="url(#tz)"/>
-					<linearGradient id="ua" x1="-5.4951" x2="-4.2709" y1="1082.8" y2="1081.6" gradientTransform="matrix(81 0 0 -109 1706 118703)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#16568E" offset="0"/>
-					<stop stop-color="#235E92" offset="1"/>
-				</linearGradient>
-				<polygon points="1254.2 694.04 1281.1 822.58 1353.3 689.14" fill="url(#ua)"/>
-					<linearGradient id="uc" x1="-5.7148" x2="-4.4906" y1="1083.9" y2="1082.7" gradientTransform="matrix(81 0 0 -65 1706 71078)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#0E518D" offset="0"/>
-					<stop stop-color="#0B4F8C" offset="1"/>
-				</linearGradient>
-				<polygon points="1254.2 694.04 1353.3 689.14 1309.3 614.47" fill="url(#uc)"/>
-					<linearGradient id="ud" x1="-4.8491" x2="-3.6249" y1="1082.6" y2="1081.4" gradientTransform="matrix(92 0 0 -109 1717 118703)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#2F6696" offset="0"/>
-					<stop stop-color="#16548C" offset="1"/>
-				</linearGradient>
-				<polygon points="1353.3 689.14 1281.1 822.58 1393.7 761.37" fill="url(#ud)"/>
-					<linearGradient id="uf" x1="-2.0371" x2="-.8131" y1="1084.3" y2="1083" gradientTransform="matrix(171 0 0 -61 1661 66754)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#094E8B" offset="0"/>
-					<stop stop-color="#0A4C89" offset="1"/>
-				</linearGradient>
-				<polygon points="1353.3 689.14 1518.6 625.49 1309.3 614.47" fill="url(#uf)"/>
-					<linearGradient id="ug" x1="-2.7388" x2="-1.5145" y1="1082.8" y2="1081.6" gradientTransform="matrix(135 0 0 -111 1733 120813)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#12518A" offset="0"/>
-					<stop stop-color="#0A4C88" offset="1"/>
-				</linearGradient>
-				<polygon points="1393.7 761.37 1518.6 625.49 1353.3 689.14" fill="url(#ug)"/>
-					<linearGradient id="uh" x1="-5.1216" x2="-3.8974" y1="1082.5" y2="1081.2" gradientTransform="matrix(84 0 0 -124 1725 135027)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#48769F" offset="0"/>
-					<stop stop-color="#4C759D" offset="1"/>
-				</linearGradient>
-				<polygon points="1281.1 822.58 1353.3 974.38 1384 848.29" fill="url(#uh)"/>
-					<linearGradient id="ui" x1="-4.6475" x2="-3.4232" y1="1083.5" y2="1082.3" gradientTransform="matrix(92 0 0 -71 1717 77684)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#386B99" offset="0"/>
-					<stop stop-color="#2A6091" offset="1"/>
-				</linearGradient>
-				<polygon points="1281.1 822.58 1384 848.29 1393.7 761.37" fill="url(#ui)"/>
-					<linearGradient id="uj" x1="-3.1982" x2="-1.9739" y1="1082.4" y2="1081.2" gradientTransform="matrix(125 0 0 -103 1743 112347)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#50769B" offset="0"/>
-					<stop stop-color="#376490" offset="1"/>
-				</linearGradient>
-				<polygon points="1384 848.29 1353.3 974.38 1506.4 881.34" fill="url(#uj)"/>
-					<linearGradient id="uk" x1="-4.2881" x2="-3.0639" y1="1082.6" y2="1081.3" gradientTransform="matrix(100 0 0 -98 1793 106871)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#21588C" offset="0"/>
-					<stop stop-color="#2F5F8D" offset="1"/>
-				</linearGradient>
-				<polygon points="1384 848.29 1506.4 881.34 1393.7 761.37" fill="url(#uk)"/>
-					<linearGradient id="ul" x1="-4.4858" x2="-3.2616" y1="1085.2" y2="1084" gradientTransform="matrix(142 0 0 -73 705.94 79157)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#67B5DE" offset="0"/>
-					<stop stop-color="#6BB5DD" offset="1"/>
-				</linearGradient>
-				<polygon points="183.05 7.287 223.97 3.615 179.83 3.615" fill="url(#ul)"/>
-					<linearGradient id="um" x1="-8.2441" x2="-7.02" y1="1084.3" y2="1083.1" gradientTransform="matrix(78 0 0 -97 834 105167)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#72B6DC" offset="0"/>
-					<stop stop-color="#77B6DA" offset="1"/>
-				</linearGradient>
-				<polygon points="221 117.46 276.16 3.615 223.97 3.615 183.05 7.287" fill="url(#um)"/>
-					<linearGradient id="up" x1="-5.3438" x2="-4.1196" y1="1083.9" y2="1082.7" gradientTransform="matrix(117 0 0 -102 826 110572)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#80B7D8" offset="0"/>
-					<stop stop-color="#7DBADC" offset="1"/>
-				</linearGradient>
-				<polygon points="364.22 123.58 281.9 3.615 276.16 3.615 221 117.46" fill="url(#up)"/>
-					<linearGradient id="uq" x1="-5.5811" x2="-4.3569" y1="1083.3" y2="1082.1" gradientTransform="matrix(107 0 0 -144 883 155932)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#80BDDD" offset="0"/>
-					<stop stop-color="#6FBBE0" offset="1"/>
-				</linearGradient>
-				<polygon points="395.05 3.615 281.9 3.615 364.22 123.58" fill="url(#uq)"/>
-					<linearGradient id="ur" x1="-8.9243" x2="-7.7002" y1="1086.2" y2="1084.9" gradientTransform="matrix(77 0 0 -61 637 66270)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#8CC1E1" offset="0"/>
-					<stop stop-color="#7EB8DC" offset="1"/>
-				</linearGradient>
-				<polygon points="0 45.865 0 76.558 34.925 59.926" fill="url(#ur)"/>
-					<linearGradient id="us" x1="-4.8936" x2="-3.6692" y1="1083.7" y2="1082.5" gradientTransform="matrix(134 0 0 -116 580 1.2564e5)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#8CC2E3" offset="0"/>
-					<stop stop-color="#77B9DF" offset="1"/>
-				</linearGradient>
-				<polygon points="62.596 3.615 0 3.615 0 45.865 34.925 59.926" fill="url(#us)"/>
-					<linearGradient id="ut" x1="-10.96" x2="-9.7359" y1="1084.2" y2="1082.9" gradientTransform="matrix(63 0 0 -104 664.9688 112784)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#79B3D8" offset="0"/>
-					<stop stop-color="#70ACD3" offset="1"/>
-				</linearGradient>
-				<polygon points="0 76.558 0 146.41 34.925 59.926" fill="url(#ut)"/>
-					<linearGradient id="uu" x1="-8.8965" x2="-7.6724" y1="1083.8" y2="1082.6" gradientTransform="matrix(78 0 0 -104 671 112784)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#67A4CC" offset="0"/>
-					<stop stop-color="#6EAAD1" offset="1"/>
-				</linearGradient>
-				<polygon points="34.925 59.926 0 146.41 0 184.91 78.995 173.77" fill="url(#uu)"/>
-					<linearGradient id="uv" x1="-7.2949" x2="-6.0708" y1="1084.3" y2="1083.1" gradientTransform="matrix(90 0 0 -93 701 100893)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#6CA7CF" offset="0"/>
-					<stop stop-color="#76B2D7" offset="1"/>
-				</linearGradient>
-				<polygon points="34.925 59.926 78.995 173.77 145.1 66.047" fill="url(#uv)"/>
-					<linearGradient id="uw" x1="-7.6128" x2="-6.3887" y1="1083.5" y2="1082.3" gradientTransform="matrix(90 0 0 -121 701 131045)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#6EB7DE" offset="0"/>
-					<stop stop-color="#76B5DA" offset="1"/>
-				</linearGradient>
-				<polygon points="145.1 66.047 128.07 3.615 62.596 3.615 34.925 59.926" fill="url(#uw)"/>
-					<linearGradient id="ux" x1="-3.5396" x2="-2.3156" y1="1083.5" y2="1082.3" gradientTransform="matrix(143 0 0 -97 1102.9 1.0548e5)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#13639D" offset="0"/>
-					<stop stop-color="#1F6BA2" offset="1"/>
-				</linearGradient>
-				<polygon points="766.97 384.33 591.92 489.61 740.04 503.07" fill="url(#ux)"/>
-					<linearGradient id="uy" x1="-3.6172" x2="-2.3932" y1="1082.5" y2="1081.2" gradientTransform="matrix(143 0 0 -173 1102.9 1.8755e5)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#216EA5" offset="0"/>
-					<stop stop-color="#4A8BB8" offset="1"/>
-				</linearGradient>
-				<polygon points="766.97 384.33 742.49 277.83 591.92 489.61" fill="url(#uy)"/>
-					<linearGradient id="va" x1="-4.9971" x2="-3.7728" y1="1083.2" y2="1082" gradientTransform="matrix(109 0 0 -97 1258 105482)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#14619B" offset="0"/>
-					<stop stop-color="#206AA1" offset="1"/>
-				</linearGradient>
-				<polygon points="873.48 496.95 766.97 384.33 740.04 503.07" fill="url(#va)"/>
-					<linearGradient id="vb" x1="-4.9492" x2="-3.7251" y1="1083.3" y2="1082.1" gradientTransform="matrix(109 0 0 -103 1260 111881)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#609AC1" offset="0"/>
-					<stop stop-color="#3C80AF" offset="1"/>
-				</linearGradient>
-				<polygon points="875.92 403.92 742.49 277.83 766.97 384.33" fill="url(#vb)"/>
-					<linearGradient id="vc" x1="-5.7432" x2="-4.519" y1="1083.9" y2="1082.6" gradientTransform="matrix(89 0 0 -92 1300 100077)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#1B659D" offset="0"/>
-					<stop stop-color="#2F76A9" offset="1"/>
-				</linearGradient>
-				<polygon points="873.48 496.95 875.92 403.92 766.97 384.33" fill="url(#vc)"/>
-					<linearGradient id="vd" x1="-2.3384" x2="-1.1142" y1="1082.4" y2="1081.2" gradientTransform="matrix(141 0 0 -110 1706.9 1.2008e5)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#3F5E84" offset="0"/>
-					<stop stop-color="#39577D" offset="1"/>
-				</linearGradient>
-				<polygon points="1424.6 1080.3 1472.9 1080.3 1464.7 1050.3" fill="url(#vd)"/>
-					<linearGradient id="ve" x1="-5.9727" x2="-4.7484" y1="1082.1" y2="1080.8" gradientTransform="matrix(71 0 0 -110 1888 1.2008e5)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#3A597F" offset="0"/>
-					<stop stop-color="#314E75" offset="1"/>
-				</linearGradient>
-				<polygon points="1472.9 1080.3 1492 1080.3 1464.7 1050.3" fill="url(#ve)"/>
-					<linearGradient id="vg" x1="-5.2588" x2="-4.0346" y1="1082" y2="1080.8" gradientTransform="matrix(93 0 0 -108 1517 117892)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#889EB4" offset="0"/>
-					<stop stop-color="#667F9C" offset="1"/>
-				</linearGradient>
-				<polygon points="1040.8 1080.3 1100.4 1080.3 1043.6 1019.7" fill="url(#vg)"/>
-					<linearGradient id="vh" x1="-3.0371" x2="-1.813" y1="1082.3" y2="1081.1" gradientTransform="matrix(136 0 0 -136 1343 148160)" gradientUnits="userSpaceOnUse">
-					<stop stop-color="#6D86A0" offset="0"/>
-					<stop stop-color="#7A91AA" offset="1"/>
-				</linearGradient>
-				<polygon points="983.04 1080.3 1040.8 1080.3 1043.6 1019.7" fill="url(#vh)"/>
-	</g>
-</switch>
-</svg>