kokopu-react 1.5.5 → 1.7.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (116) hide show
  1. package/.nycrc.yml +1 -1
  2. package/CHANGELOG.md +18 -0
  3. package/README.md +2 -2
  4. package/dist/lib/ArrowMarkerIcon.js +2 -2
  5. package/dist/lib/Chessboard.js +26 -18
  6. package/dist/lib/Movetext.js +41 -82
  7. package/dist/lib/formatmove.js +119 -0
  8. package/dist/lib/impl/HtmlSanitizer.js +8 -3
  9. package/dist/lib/impl/colorsets.js +44 -44
  10. package/dist/lib/impl/util.js +1 -1
  11. package/dist/lib/index.js +14 -0
  12. package/dist/lib/markers.js +7 -7
  13. package/doc_src/demo/PageChessboardInteraction.js +4 -3
  14. package/doc_src/demo/PageChessboardMove.js +36 -5
  15. package/doc_src/demo/demo.css +4 -0
  16. package/{graphic_test_app → graphic_test_src}/01_marker_icons.js +0 -0
  17. package/{graphic_test_app → graphic_test_src}/02_chessboard_simple.js +0 -0
  18. package/{graphic_test_app → graphic_test_src}/03_chessboard_flipped.js +0 -0
  19. package/{graphic_test_app → graphic_test_src}/04_chessboard_annotations.js +8 -8
  20. package/{graphic_test_app → graphic_test_src}/05_chessboard_move.js +4 -4
  21. package/{graphic_test_app → graphic_test_src}/06_chessboard_theme.js +2 -2
  22. package/{graphic_test_app → graphic_test_src}/07_chessboard_click_squares.js +0 -0
  23. package/{graphic_test_app → graphic_test_src}/08_chessboard_move_pieces.js +1 -1
  24. package/{graphic_test_app → graphic_test_src}/09_chessboard_edit_arrows.js +0 -0
  25. package/{graphic_test_app → graphic_test_src}/10_chessboard_play_moves.js +1 -1
  26. package/{graphic_test_app → graphic_test_src}/11_chessboard_play_promotions.js +0 -0
  27. package/{graphic_test_app → graphic_test_src}/12_movetext_simple.js +0 -0
  28. package/{graphic_test_app → graphic_test_src}/13_movetext_error.js +0 -0
  29. package/{graphic_test_app → graphic_test_src}/14_movetext_html.js +0 -0
  30. package/{graphic_test_app → graphic_test_src}/15_movetext_options.js +0 -4
  31. package/{graphic_test_app → graphic_test_src}/16_movetext_interaction.js +0 -0
  32. package/{graphic_test_app → graphic_test_src}/common/dummy.pgn +0 -0
  33. package/{graphic_test_app → graphic_test_src}/common/games.pgn +11 -5
  34. package/{graphic_test_app → graphic_test_src}/common/heartbeat.txt +0 -0
  35. package/graphic_test_src/common/smiley.png +0 -0
  36. package/{graphic_test_app → graphic_test_src}/common/test_app.css +0 -0
  37. package/{graphic_test_app → graphic_test_src}/common/test_app.js +3 -2
  38. package/graphics/chess_sprites/cburnett/bb.svg +45 -0
  39. package/graphics/chess_sprites/cburnett/bk.svg +47 -0
  40. package/graphics/chess_sprites/cburnett/bn.svg +37 -0
  41. package/graphics/chess_sprites/cburnett/bp.svg +19 -0
  42. package/graphics/chess_sprites/cburnett/bq.svg +58 -0
  43. package/graphics/chess_sprites/cburnett/br.svg +60 -0
  44. package/graphics/chess_sprites/cburnett/bx.svg +56 -0
  45. package/graphics/chess_sprites/cburnett/wb.svg +48 -0
  46. package/graphics/chess_sprites/cburnett/wk.svg +26 -0
  47. package/graphics/chess_sprites/cburnett/wn.svg +37 -0
  48. package/graphics/chess_sprites/cburnett/wp.svg +19 -0
  49. package/graphics/chess_sprites/cburnett/wq.svg +60 -0
  50. package/graphics/chess_sprites/cburnett/wr.svg +44 -0
  51. package/graphics/chess_sprites/cburnett/wx.svg +56 -0
  52. package/graphics/chess_sprites/generate_sprites.sh +135 -0
  53. package/graphics/chess_sprites/mmonge/celtic-bx.svg +112 -0
  54. package/graphics/chess_sprites/mmonge/celtic-wx.svg +111 -0
  55. package/graphics/chess_sprites/mmonge/celtic.svg +1576 -0
  56. package/graphics/chess_sprites/mmonge/eyes-spatial-bx.svg +101 -0
  57. package/graphics/chess_sprites/mmonge/eyes-spatial-wx.svg +100 -0
  58. package/graphics/chess_sprites/mmonge/eyes.svg +2538 -0
  59. package/graphics/chess_sprites/mmonge/fantasy-bx.svg +112 -0
  60. package/graphics/chess_sprites/mmonge/fantasy-wx.svg +111 -0
  61. package/graphics/chess_sprites/mmonge/fantasy.svg +5497 -0
  62. package/graphics/chess_sprites/mmonge/fantasy_alt.svg +3742 -0
  63. package/graphics/chess_sprites/mmonge/freak.svg +3479 -0
  64. package/graphics/chess_sprites/mmonge/prmi.svg +6776 -0
  65. package/graphics/chess_sprites/mmonge/skulls-bx.svg +124 -0
  66. package/graphics/chess_sprites/mmonge/skulls-wx.svg +111 -0
  67. package/graphics/chess_sprites/mmonge/skulls.svg +12978 -0
  68. package/graphics/chess_sprites/mmonge/spatial.svg +1223 -0
  69. package/package.json +28 -22
  70. package/scripts/{test_graphic/clean-graphic-output.js → clean-graphic-output.js} +1 -1
  71. package/scripts/docker-compose.yml +14 -0
  72. package/scripts/{test_graphic/webpack-config.js → test-graphic.webpack.config.js} +9 -5
  73. package/scripts/{test_headless.webpack-config.js → test-headless.webpack.config.js} +2 -1
  74. package/src/Chessboard.js +24 -16
  75. package/src/Movetext.js +37 -59
  76. package/src/formatmove.js +91 -0
  77. package/src/impl/HtmlSanitizer.js +8 -2
  78. package/src/impl/colorsets.js +44 -44
  79. package/src/impl/util.js +1 -1
  80. package/src/index.js +1 -0
  81. package/src/markers.js +7 -7
  82. package/test/1_markers.js +14 -14
  83. package/test/common/graphic.js +2 -2
  84. package/test/references/04_chessboard_annotations/0.png +0 -0
  85. package/test/references/04_chessboard_annotations/1.png +0 -0
  86. package/test/references/04_chessboard_annotations/2.png +0 -0
  87. package/test/references/04_chessboard_annotations/3.png +0 -0
  88. package/test/references/04_chessboard_annotations/4.png +0 -0
  89. package/test/references/04_chessboard_annotations/5.png +0 -0
  90. package/test/references/05_chessboard_move/3.png +0 -0
  91. package/test/references/05_chessboard_move/4.png +0 -0
  92. package/test/references/05_chessboard_move/5.png +0 -0
  93. package/test/references/05_chessboard_move/6.png +0 -0
  94. package/test/references/06_chessboard_theme/0.png +0 -0
  95. package/test/references/06_chessboard_theme/1.png +0 -0
  96. package/test/references/06_chessboard_theme/2.png +0 -0
  97. package/test/references/06_chessboard_theme/3.png +0 -0
  98. package/test/references/06_chessboard_theme/4.png +0 -0
  99. package/test/references/06_chessboard_theme/5.png +0 -0
  100. package/test/references/06_chessboard_theme/6.png +0 -0
  101. package/test/references/06_chessboard_theme/7.png +0 -0
  102. package/test/references/06_chessboard_theme/8.png +0 -0
  103. package/test/references/08_chessboard_move_pieces/over_arrow_marker.png +0 -0
  104. package/test/references/08_chessboard_move_pieces/over_square_marker.png +0 -0
  105. package/test/references/08_chessboard_move_pieces/over_text_marker.png +0 -0
  106. package/test/references/09_chessboard_edit_arrows/base_1.png +0 -0
  107. package/test/references/09_chessboard_edit_arrows/base_2.png +0 -0
  108. package/test/references/09_chessboard_edit_arrows/null_vector.png +0 -0
  109. package/test/references/09_chessboard_edit_arrows/over_arrow_marker.png +0 -0
  110. package/test/references/09_chessboard_edit_arrows/over_square_marker.png +0 -0
  111. package/test/references/10_chessboard_play_moves/castling_move.png +0 -0
  112. package/test/references/10_chessboard_play_moves/regular_move_2.png +0 -0
  113. package/test/references/14_movetext_html/0.png +0 -0
  114. package/test/references/14_movetext_html/1.png +0 -0
  115. package/test/references/14_movetext_html/2.png +0 -0
  116. package/scripts/test_graphic/docker-compose.yml +0 -14
@@ -0,0 +1,2538 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
+
4
+ <svg
5
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
6
+ xmlns:cc="http://creativecommons.org/ns#"
7
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
8
+ xmlns:svg="http://www.w3.org/2000/svg"
9
+ xmlns="http://www.w3.org/2000/svg"
10
+ xmlns:xlink="http://www.w3.org/1999/xlink"
11
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
12
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
13
+ width="1200"
14
+ height="400"
15
+ id="svg10114"
16
+ version="1.1"
17
+ inkscape:version="0.48.1 r9760"
18
+ sodipodi:docname="eyes.svg">
19
+ <defs
20
+ id="defs10116">
21
+ <linearGradient
22
+ id="linearGradientWhitePiecesBorder">
23
+ <stop
24
+ id="stop11900"
25
+ offset="0"
26
+ style="stop-color:#000000;stop-opacity:1" />
27
+ <stop
28
+ id="stop11902"
29
+ offset="1"
30
+ style="stop-color:#000000;stop-opacity:1" />
31
+ </linearGradient>
32
+ <linearGradient
33
+ id="linearGradientBlackPiecesBorder">
34
+ <stop
35
+ style="stop-color:#808080;stop-opacity:1;"
36
+ offset="0"
37
+ id="stop11490" />
38
+ <stop
39
+ style="stop-color:#808080;stop-opacity:1;"
40
+ offset="1"
41
+ id="stop11492" />
42
+ </linearGradient>
43
+ <linearGradient
44
+ inkscape:collect="always"
45
+ xlink:href="#linearGradientBlackPieces"
46
+ id="linearGradient10272"
47
+ gradientUnits="userSpaceOnUse"
48
+ gradientTransform="matrix(0.22762766,0,0,0.19465417,2.74708,37.31243)"
49
+ x1="43.573158"
50
+ y1="333.44388"
51
+ x2="800.5191"
52
+ y2="598.4873" />
53
+ <linearGradient
54
+ id="linearGradientBlackPieces">
55
+ <stop
56
+ style="stop-color:#000000;stop-opacity:1"
57
+ offset="0"
58
+ id="stop2509-4" />
59
+ <stop
60
+ style="stop-color:#505070;stop-opacity:1"
61
+ offset="1"
62
+ id="stop2511-6" />
63
+ </linearGradient>
64
+ <linearGradient
65
+ id="linearGradientWhitePieces">
66
+ <stop
67
+ id="stop12734"
68
+ offset="0"
69
+ style="stop-color:#ffffff;stop-opacity:1" />
70
+ <stop
71
+ id="stop12736"
72
+ offset="1"
73
+ style="stop-color:#d0b090;stop-opacity:1" />
74
+ </linearGradient>
75
+ <linearGradient
76
+ inkscape:collect="always"
77
+ xlink:href="#linearGradientBlackPieces"
78
+ id="linearGradient10266"
79
+ gradientUnits="userSpaceOnUse"
80
+ x1="331.76324"
81
+ y1="305.12201"
82
+ x2="423.26685"
83
+ y2="338.0408" />
84
+ <linearGradient
85
+ inkscape:collect="always"
86
+ xlink:href="#linearGradientBlackPieces"
87
+ id="linearGradient10276"
88
+ gradientUnits="userSpaceOnUse"
89
+ gradientTransform="matrix(0.22857143,0,0,0.22857143,-0.06024,0.97226)"
90
+ x1="323.8295"
91
+ y1="142.8746"
92
+ x2="554.56183"
93
+ y2="278.80081" />
94
+ <linearGradient
95
+ inkscape:collect="always"
96
+ xlink:href="#linearGradientBlackPieces"
97
+ id="linearGradient10262"
98
+ gradientUnits="userSpaceOnUse"
99
+ x1="340.95712"
100
+ y1="313.54886"
101
+ x2="473.57257"
102
+ y2="397.77173" />
103
+ <linearGradient
104
+ inkscape:collect="always"
105
+ xlink:href="#linearGradientBlackPieces"
106
+ id="linearGradient10260"
107
+ gradientUnits="userSpaceOnUse"
108
+ x1="340.95712"
109
+ y1="313.54886"
110
+ x2="473.57257"
111
+ y2="397.77173" />
112
+ <linearGradient
113
+ inkscape:collect="always"
114
+ xlink:href="#linearGradientBlackPieces"
115
+ id="linearGradient1342"
116
+ gradientUnits="userSpaceOnUse"
117
+ x1="31.999996"
118
+ y1="245.83333"
119
+ x2="120.35538"
120
+ y2="290.53751" />
121
+ <linearGradient
122
+ inkscape:collect="always"
123
+ xlink:href="#linearGradientBlackPieces"
124
+ id="linearGradient1338"
125
+ gradientUnits="userSpaceOnUse"
126
+ x1="31.999996"
127
+ y1="245.83333"
128
+ x2="126.04134"
129
+ y2="285.82776" />
130
+ <linearGradient
131
+ inkscape:collect="always"
132
+ xlink:href="#linearGradientBlackPieces"
133
+ id="linearGradient1334"
134
+ gradientUnits="userSpaceOnUse"
135
+ x1="31.999996"
136
+ y1="245.83333"
137
+ x2="127.46282"
138
+ y2="290.53751" />
139
+ <linearGradient
140
+ inkscape:collect="always"
141
+ xlink:href="#linearGradientBlackPieces"
142
+ id="linearGradient10327"
143
+ x1="31.999996"
144
+ y1="245.83333"
145
+ x2="128.88431"
146
+ y2="288.96759"
147
+ gradientUnits="userSpaceOnUse" />
148
+ <linearGradient
149
+ inkscape:collect="always"
150
+ xlink:href="#linearGradientBlackPieces"
151
+ id="linearGradient10007"
152
+ gradientUnits="userSpaceOnUse"
153
+ gradientTransform="matrix(0.19287063,0,0,0.2151728,214.47626,9.1749504)"
154
+ x1="32"
155
+ y1="385"
156
+ x2="733.7486"
157
+ y2="624.01056" />
158
+ <linearGradient
159
+ inkscape:collect="always"
160
+ xlink:href="#linearGradientBlackPieces"
161
+ id="linearGradient5799-3"
162
+ gradientUnits="userSpaceOnUse"
163
+ x1="290.95712"
164
+ y1="590.21552"
165
+ x2="448.875"
166
+ y2="663.43127"
167
+ gradientTransform="matrix(0.22857143,0,0,0.22857143,200,-0.76189959)" />
168
+ <linearGradient
169
+ inkscape:collect="always"
170
+ xlink:href="#linearGradientBlackPieces"
171
+ id="linearGradient2229-2"
172
+ x1="460.95712"
173
+ y1="666.4375"
174
+ x2="617.15698"
175
+ y2="756.83856"
176
+ gradientUnits="userSpaceOnUse"
177
+ gradientTransform="matrix(0.22857143,0,0,0.22857143,200,-0.76189959)" />
178
+ <linearGradient
179
+ inkscape:collect="always"
180
+ xlink:href="#linearGradientBlackPieces"
181
+ id="linearGradient13034"
182
+ gradientUnits="userSpaceOnUse"
183
+ gradientTransform="matrix(0.22857143,0,0,0.18124526,403.44481,17.3959)"
184
+ x1="296.44843"
185
+ y1="-160.70204"
186
+ x2="739.72266"
187
+ y2="253.50563" />
188
+ <linearGradient
189
+ inkscape:collect="always"
190
+ xlink:href="#linearGradientBlackPieces"
191
+ id="linearGradient5753"
192
+ gradientUnits="userSpaceOnUse"
193
+ gradientTransform="matrix(0.22857143,0,0,0.20145326,401.52381,17.30008)"
194
+ x1="102"
195
+ y1="801.66663"
196
+ x2="769.66669"
197
+ y2="801.66663" />
198
+ <linearGradient
199
+ inkscape:collect="always"
200
+ xlink:href="#linearGradientBlackPieces"
201
+ id="linearGradient2446"
202
+ gradientUnits="userSpaceOnUse"
203
+ x1="442.08737"
204
+ y1="413.31122"
205
+ x2="667.427"
206
+ y2="504.29163"
207
+ gradientTransform="matrix(0.21522263,0,0,0.20736686,356.41691,-3.8030696)" />
208
+ <linearGradient
209
+ inkscape:collect="always"
210
+ xlink:href="#linearGradientBlackPieces"
211
+ id="linearGradient2440"
212
+ x1="458.29816"
213
+ y1="411.12521"
214
+ x2="667.42706"
215
+ y2="514.29163"
216
+ gradientUnits="userSpaceOnUse"
217
+ gradientTransform="matrix(0.21522263,0,0,0.20013074,407.06586,2.0553804)" />
218
+ <linearGradient
219
+ inkscape:collect="always"
220
+ xlink:href="#linearGradientBlackPieces"
221
+ id="linearGradient4315"
222
+ x1="13.155726"
223
+ y1="426.90005"
224
+ x2="759.8902"
225
+ y2="674.65308"
226
+ gradientUnits="userSpaceOnUse"
227
+ gradientTransform="matrix(0.20569692,0,0,0.22857143,410.35042,-1.0774996)" />
228
+ <linearGradient
229
+ inkscape:collect="always"
230
+ xlink:href="#linearGradientBlackPieces"
231
+ id="linearGradient3723"
232
+ gradientUnits="userSpaceOnUse"
233
+ gradientTransform="matrix(0.07645234,-0.00589498,0.00961476,0.12635223,713.60462,43.303528)"
234
+ x1="-685.27356"
235
+ y1="274.73871"
236
+ x2="-199.66586"
237
+ y2="439.2937" />
238
+ <linearGradient
239
+ inkscape:collect="always"
240
+ xlink:href="#linearGradientBlackPieces"
241
+ id="linearGradient3939"
242
+ gradientUnits="userSpaceOnUse"
243
+ gradientTransform="matrix(0.23799086,0,0,0.22261783,599.37953,-6.7335617)"
244
+ x1="193.54391"
245
+ y1="362.5"
246
+ x2="641.33331"
247
+ y2="550.2157" />
248
+ <linearGradient
249
+ inkscape:collect="always"
250
+ xlink:href="#linearGradientBlackPieces"
251
+ id="linearGradient7567"
252
+ gradientUnits="userSpaceOnUse"
253
+ x1="500.21057"
254
+ y1="376.73962"
255
+ x2="216.33333"
256
+ y2="486.99237"
257
+ gradientTransform="matrix(-0.23799086,0,0,0.22261783,800.05591,-8.9597417)" />
258
+ <linearGradient
259
+ inkscape:collect="always"
260
+ xlink:href="#linearGradientBlackPieces"
261
+ id="linearGradient7571"
262
+ gradientUnits="userSpaceOnUse"
263
+ gradientTransform="matrix(0.23799086,0,0,0.22261783,601.75944,15.027408)"
264
+ x1="193.54391"
265
+ y1="362.5"
266
+ x2="628"
267
+ y2="362.5" />
268
+ <linearGradient
269
+ inkscape:collect="always"
270
+ xlink:href="#linearGradientBlackPieces"
271
+ id="linearGradient4957"
272
+ gradientUnits="userSpaceOnUse"
273
+ gradientTransform="matrix(0.21342286,0,0,0.20212617,605.15097,23.395808)"
274
+ x1="300.95712"
275
+ y1="606.8822"
276
+ x2="470.23923"
277
+ y2="701.10504" />
278
+ <linearGradient
279
+ inkscape:collect="always"
280
+ xlink:href="#linearGradientBlackPieces"
281
+ id="linearGradient4955"
282
+ gradientUnits="userSpaceOnUse"
283
+ gradientTransform="matrix(0.21342286,0,0,0.20212617,604.44534,23.622228)"
284
+ x1="470.95712"
285
+ y1="633.10419"
286
+ x2="616.90588"
287
+ y2="694.43842" />
288
+ <linearGradient
289
+ inkscape:collect="always"
290
+ xlink:href="#linearGradientBlackPieces"
291
+ id="linearGradient2229-6"
292
+ x1="340.95712"
293
+ y1="313.54886"
294
+ x2="553.43683"
295
+ y2="414.99799"
296
+ gradientUnits="userSpaceOnUse"
297
+ gradientTransform="matrix(0.22857143,0,0,0.22857143,800,4.1259766e-7)" />
298
+ <linearGradient
299
+ inkscape:collect="always"
300
+ xlink:href="#linearGradientBlackPieces"
301
+ id="linearGradient2513"
302
+ x1="63.677078"
303
+ y1="137.90625"
304
+ x2="741.16382"
305
+ y2="814.15625"
306
+ gradientUnits="userSpaceOnUse"
307
+ gradientTransform="matrix(0.22857143,0,0,0.22857143,800.45714,2.7428604)" />
308
+ <linearGradient
309
+ inkscape:collect="always"
310
+ xlink:href="#linearGradientBlackPieces"
311
+ id="linearGradient5892"
312
+ gradientUnits="userSpaceOnUse"
313
+ gradientTransform="matrix(0.20848549,0,0,0.20045097,1013.463,34.04674)"
314
+ x1="224.06509"
315
+ y1="423.88376"
316
+ x2="710.13196"
317
+ y2="599.74866" />
318
+ <linearGradient
319
+ inkscape:collect="always"
320
+ xlink:href="#linearGradientBlackPieces"
321
+ id="linearGradient2226"
322
+ gradientUnits="userSpaceOnUse"
323
+ x1="321.98315"
324
+ y1="380.02527"
325
+ x2="469.97644"
326
+ y2="469.5921" />
327
+ <linearGradient
328
+ inkscape:collect="always"
329
+ xlink:href="#linearGradientBlackPieces"
330
+ id="linearGradient2243"
331
+ x1="338.48233"
332
+ y1="308.13605"
333
+ x2="550.11517"
334
+ y2="385.91779"
335
+ gradientUnits="userSpaceOnUse"
336
+ gradientTransform="matrix(0.22857143,0,0,0.22857143,1000.3918,2.15499)" />
337
+ <linearGradient
338
+ inkscape:collect="always"
339
+ xlink:href="#linearGradientBlackPieces"
340
+ id="linearGradient5897"
341
+ gradientUnits="userSpaceOnUse"
342
+ x1="204.24982"
343
+ y1="662.38818"
344
+ x2="421.71808"
345
+ y2="792"
346
+ gradientTransform="matrix(0.2516928,0,0,0.2516928,989.76084,-15.09882)" />
347
+ <linearGradient
348
+ inkscape:collect="always"
349
+ xlink:href="#linearGradientBlackPieces"
350
+ id="linearGradient5901"
351
+ gradientUnits="userSpaceOnUse"
352
+ x1="468.23636"
353
+ y1="681.24438"
354
+ x2="270.86862"
355
+ y2="792"
356
+ gradientTransform="matrix(-0.2516928,0,0,0.2516928,1212.6818,-15.09882)" />
357
+ <linearGradient
358
+ inkscape:collect="always"
359
+ xlink:href="#linearGradientWhitePieces"
360
+ id="linearGradient11746"
361
+ gradientUnits="userSpaceOnUse"
362
+ x1="340.95712"
363
+ y1="313.54886"
364
+ x2="473.57257"
365
+ y2="397.77173" />
366
+ <linearGradient
367
+ inkscape:collect="always"
368
+ xlink:href="#linearGradientWhitePieces"
369
+ id="linearGradient11750"
370
+ gradientUnits="userSpaceOnUse"
371
+ x1="340.95712"
372
+ y1="313.54886"
373
+ x2="473.57257"
374
+ y2="397.77173" />
375
+ <linearGradient
376
+ inkscape:collect="always"
377
+ xlink:href="#linearGradientWhitePieces"
378
+ id="linearGradient11758"
379
+ gradientUnits="userSpaceOnUse"
380
+ gradientTransform="matrix(0.22857143,0,0,0.22857143,-0.06024,200.97226)"
381
+ x1="323.8295"
382
+ y1="142.8746"
383
+ x2="554.56183"
384
+ y2="278.80081" />
385
+ <linearGradient
386
+ inkscape:collect="always"
387
+ xlink:href="#linearGradientWhitePieces"
388
+ id="linearGradient11762"
389
+ gradientUnits="userSpaceOnUse"
390
+ x1="331.76324"
391
+ y1="305.12201"
392
+ x2="423.26685"
393
+ y2="338.0408" />
394
+ <linearGradient
395
+ inkscape:collect="always"
396
+ xlink:href="#linearGradientWhitePieces"
397
+ id="linearGradient11766"
398
+ gradientUnits="userSpaceOnUse"
399
+ gradientTransform="matrix(0.22762766,0,0,0.19465417,2.74708,237.31243)"
400
+ x1="43.573158"
401
+ y1="333.44388"
402
+ x2="800.5191"
403
+ y2="598.4873" />
404
+ <linearGradient
405
+ inkscape:collect="always"
406
+ xlink:href="#linearGradientWhitePieces"
407
+ id="linearGradient11772"
408
+ gradientUnits="userSpaceOnUse"
409
+ gradientTransform="matrix(0.22857143,0,0,0.22857143,200,199.2381)"
410
+ x1="460.95712"
411
+ y1="666.4375"
412
+ x2="617.15698"
413
+ y2="756.83856" />
414
+ <linearGradient
415
+ inkscape:collect="always"
416
+ xlink:href="#linearGradientWhitePieces"
417
+ id="linearGradient11776"
418
+ gradientUnits="userSpaceOnUse"
419
+ gradientTransform="matrix(0.22857143,0,0,0.22857143,200,199.2381)"
420
+ x1="290.95712"
421
+ y1="590.21552"
422
+ x2="448.875"
423
+ y2="663.43127" />
424
+ <linearGradient
425
+ inkscape:collect="always"
426
+ xlink:href="#linearGradientWhitePieces"
427
+ id="linearGradient11784"
428
+ gradientUnits="userSpaceOnUse"
429
+ gradientTransform="matrix(0.19287063,0,0,0.2151728,214.47626,209.17495)"
430
+ x1="32"
431
+ y1="385"
432
+ x2="733.7486"
433
+ y2="624.01056" />
434
+ <linearGradient
435
+ inkscape:collect="always"
436
+ xlink:href="#linearGradientWhitePieces"
437
+ id="linearGradient11788"
438
+ gradientUnits="userSpaceOnUse"
439
+ x1="31.999996"
440
+ y1="245.83333"
441
+ x2="128.88431"
442
+ y2="288.96759" />
443
+ <linearGradient
444
+ inkscape:collect="always"
445
+ xlink:href="#linearGradientWhitePieces"
446
+ id="linearGradient11794"
447
+ gradientUnits="userSpaceOnUse"
448
+ x1="31.999996"
449
+ y1="245.83333"
450
+ x2="127.46282"
451
+ y2="290.53751" />
452
+ <linearGradient
453
+ inkscape:collect="always"
454
+ xlink:href="#linearGradientWhitePieces"
455
+ id="linearGradient11798"
456
+ gradientUnits="userSpaceOnUse"
457
+ x1="31.999996"
458
+ y1="245.83333"
459
+ x2="126.04134"
460
+ y2="285.82776" />
461
+ <linearGradient
462
+ inkscape:collect="always"
463
+ xlink:href="#linearGradientWhitePieces"
464
+ id="linearGradient11802"
465
+ gradientUnits="userSpaceOnUse"
466
+ x1="31.999996"
467
+ y1="245.83333"
468
+ x2="120.35538"
469
+ y2="290.53751" />
470
+ <linearGradient
471
+ inkscape:collect="always"
472
+ xlink:href="#linearGradientWhitePieces"
473
+ id="linearGradient11806"
474
+ gradientUnits="userSpaceOnUse"
475
+ gradientTransform="matrix(0.20569692,0,0,0.22857143,410.35042,198.9225)"
476
+ x1="13.155726"
477
+ y1="426.90005"
478
+ x2="759.8902"
479
+ y2="674.65308" />
480
+ <linearGradient
481
+ inkscape:collect="always"
482
+ xlink:href="#linearGradientWhitePieces"
483
+ id="linearGradient11810"
484
+ gradientUnits="userSpaceOnUse"
485
+ gradientTransform="matrix(0.21522263,0,0,0.20013074,407.06586,202.05538)"
486
+ x1="458.29816"
487
+ y1="411.12521"
488
+ x2="667.42706"
489
+ y2="514.29163" />
490
+ <linearGradient
491
+ inkscape:collect="always"
492
+ xlink:href="#linearGradientWhitePieces"
493
+ id="linearGradient11814"
494
+ gradientUnits="userSpaceOnUse"
495
+ gradientTransform="matrix(0.21522263,0,0,0.20736686,356.41691,196.19693)"
496
+ x1="442.08737"
497
+ y1="413.31122"
498
+ x2="667.427"
499
+ y2="504.29163" />
500
+ <linearGradient
501
+ inkscape:collect="always"
502
+ xlink:href="#linearGradientWhitePieces"
503
+ id="linearGradient11818"
504
+ gradientUnits="userSpaceOnUse"
505
+ gradientTransform="matrix(0.22857143,0,0,0.20145326,401.52381,217.30008)"
506
+ x1="102"
507
+ y1="801.66663"
508
+ x2="769.66669"
509
+ y2="801.66663" />
510
+ <linearGradient
511
+ inkscape:collect="always"
512
+ xlink:href="#linearGradientWhitePieces"
513
+ id="linearGradient11822"
514
+ gradientUnits="userSpaceOnUse"
515
+ gradientTransform="matrix(0.22857143,0,0,0.18124526,403.44481,217.3959)"
516
+ x1="296.44843"
517
+ y1="-160.70204"
518
+ x2="739.72266"
519
+ y2="253.50563" />
520
+ <linearGradient
521
+ inkscape:collect="always"
522
+ xlink:href="#linearGradientWhitePieces"
523
+ id="linearGradient11834"
524
+ gradientUnits="userSpaceOnUse"
525
+ gradientTransform="matrix(0.21342286,0,0,0.20212617,604.44534,223.62223)"
526
+ x1="470.95712"
527
+ y1="633.10419"
528
+ x2="616.90588"
529
+ y2="694.43842" />
530
+ <linearGradient
531
+ inkscape:collect="always"
532
+ xlink:href="#linearGradientWhitePieces"
533
+ id="linearGradient11838"
534
+ gradientUnits="userSpaceOnUse"
535
+ gradientTransform="matrix(0.21342286,0,0,0.20212617,605.15097,223.39581)"
536
+ x1="300.95712"
537
+ y1="606.8822"
538
+ x2="470.23923"
539
+ y2="701.10504" />
540
+ <linearGradient
541
+ inkscape:collect="always"
542
+ xlink:href="#linearGradientWhitePieces"
543
+ id="linearGradient11846"
544
+ gradientUnits="userSpaceOnUse"
545
+ gradientTransform="matrix(0.23799086,0,0,0.22261783,601.75944,215.02741)"
546
+ x1="193.54391"
547
+ y1="362.5"
548
+ x2="628"
549
+ y2="362.5" />
550
+ <linearGradient
551
+ inkscape:collect="always"
552
+ xlink:href="#linearGradientWhitePieces"
553
+ id="linearGradient11850"
554
+ gradientUnits="userSpaceOnUse"
555
+ gradientTransform="matrix(-0.23799086,0,0,0.22261783,800.05591,191.04026)"
556
+ x1="500.21057"
557
+ y1="376.73962"
558
+ x2="216.33333"
559
+ y2="486.99237" />
560
+ <linearGradient
561
+ inkscape:collect="always"
562
+ xlink:href="#linearGradientWhitePieces"
563
+ id="linearGradient11854"
564
+ gradientUnits="userSpaceOnUse"
565
+ gradientTransform="matrix(0.23799086,0,0,0.22261783,599.37953,193.26644)"
566
+ x1="193.54391"
567
+ y1="362.5"
568
+ x2="641.33331"
569
+ y2="550.2157" />
570
+ <linearGradient
571
+ inkscape:collect="always"
572
+ xlink:href="#linearGradientWhitePieces"
573
+ id="linearGradient11858"
574
+ gradientUnits="userSpaceOnUse"
575
+ gradientTransform="matrix(0.07645234,-0.00589498,0.00961476,0.12635223,713.60462,243.30353)"
576
+ x1="-685.27356"
577
+ y1="274.73871"
578
+ x2="-199.66586"
579
+ y2="439.2937" />
580
+ <linearGradient
581
+ inkscape:collect="always"
582
+ xlink:href="#linearGradientWhitePieces"
583
+ id="linearGradient11864"
584
+ gradientUnits="userSpaceOnUse"
585
+ gradientTransform="matrix(0.22857143,0,0,0.22857143,800.45714,202.74286)"
586
+ x1="63.677078"
587
+ y1="137.90625"
588
+ x2="741.16382"
589
+ y2="814.15625" />
590
+ <linearGradient
591
+ inkscape:collect="always"
592
+ xlink:href="#linearGradientWhitePieces"
593
+ id="linearGradient11868"
594
+ gradientUnits="userSpaceOnUse"
595
+ gradientTransform="matrix(0.22857143,0,0,0.22857143,800,200)"
596
+ x1="340.95712"
597
+ y1="313.54886"
598
+ x2="553.43683"
599
+ y2="414.99799" />
600
+ <linearGradient
601
+ inkscape:collect="always"
602
+ xlink:href="#linearGradientWhitePieces"
603
+ id="linearGradient11874"
604
+ gradientUnits="userSpaceOnUse"
605
+ gradientTransform="matrix(-0.2516928,0,0,0.2516928,1212.6818,184.90118)"
606
+ x1="468.23636"
607
+ y1="681.24438"
608
+ x2="270.86862"
609
+ y2="792" />
610
+ <linearGradient
611
+ inkscape:collect="always"
612
+ xlink:href="#linearGradientWhitePieces"
613
+ id="linearGradient11880"
614
+ gradientUnits="userSpaceOnUse"
615
+ gradientTransform="matrix(0.2516928,0,0,0.2516928,989.76084,184.90118)"
616
+ x1="204.24982"
617
+ y1="662.38818"
618
+ x2="421.71808"
619
+ y2="792" />
620
+ <linearGradient
621
+ inkscape:collect="always"
622
+ xlink:href="#linearGradientWhitePieces"
623
+ id="linearGradient11886"
624
+ gradientUnits="userSpaceOnUse"
625
+ gradientTransform="matrix(0.22857143,0,0,0.22857143,1000.3918,202.15499)"
626
+ x1="338.48233"
627
+ y1="308.13605"
628
+ x2="550.11517"
629
+ y2="385.91779" />
630
+ <linearGradient
631
+ inkscape:collect="always"
632
+ xlink:href="#linearGradientWhitePieces"
633
+ id="linearGradient11890"
634
+ gradientUnits="userSpaceOnUse"
635
+ x1="321.98315"
636
+ y1="380.02527"
637
+ x2="469.97644"
638
+ y2="469.5921" />
639
+ <linearGradient
640
+ inkscape:collect="always"
641
+ xlink:href="#linearGradientWhitePieces"
642
+ id="linearGradient11894"
643
+ gradientUnits="userSpaceOnUse"
644
+ gradientTransform="matrix(0.20848549,0,0,0.20045097,1013.463,234.04674)"
645
+ x1="224.06509"
646
+ y1="423.88376"
647
+ x2="710.13196"
648
+ y2="599.74866" />
649
+ <linearGradient
650
+ inkscape:collect="always"
651
+ xlink:href="#linearGradientBlackPiecesBorder"
652
+ id="linearGradient11910"
653
+ x1="1048.6277"
654
+ y1="123.99675"
655
+ x2="1155.115"
656
+ y2="123.99675"
657
+ gradientUnits="userSpaceOnUse" />
658
+ <linearGradient
659
+ inkscape:collect="always"
660
+ xlink:href="#linearGradientBlackPiecesBorder"
661
+ id="linearGradient11912"
662
+ x1="320.72302"
663
+ y1="422.45166"
664
+ x2="471.23657"
665
+ y2="422.45166"
666
+ gradientUnits="userSpaceOnUse" />
667
+ <linearGradient
668
+ inkscape:collect="always"
669
+ xlink:href="#linearGradientBlackPiecesBorder"
670
+ id="linearGradient11914"
671
+ x1="1078.4449"
672
+ y1="72.58609"
673
+ x2="1121.2837"
674
+ y2="72.58609"
675
+ gradientUnits="userSpaceOnUse" />
676
+ <linearGradient
677
+ inkscape:collect="always"
678
+ xlink:href="#linearGradientBlackPiecesBorder"
679
+ id="linearGradient11916"
680
+ x1="366.4368"
681
+ y1="340.25049"
682
+ x2="431.26804"
683
+ y2="340.25049"
684
+ gradientUnits="userSpaceOnUse" />
685
+ <linearGradient
686
+ inkscape:collect="always"
687
+ xlink:href="#linearGradientBlackPiecesBorder"
688
+ id="linearGradient11918"
689
+ x1="1053.1915"
690
+ y1="160.27998"
691
+ x2="1101.7916"
692
+ y2="160.27998"
693
+ gradientUnits="userSpaceOnUse" />
694
+ <linearGradient
695
+ inkscape:collect="always"
696
+ xlink:href="#linearGradientBlackPiecesBorder"
697
+ id="linearGradient11920"
698
+ x1="366.4368"
699
+ y1="340.25049"
700
+ x2="431.26804"
701
+ y2="340.25049"
702
+ gradientUnits="userSpaceOnUse" />
703
+ <linearGradient
704
+ inkscape:collect="always"
705
+ xlink:href="#linearGradientBlackPiecesBorder"
706
+ id="linearGradient11922"
707
+ x1="1100.6512"
708
+ y1="160.27998"
709
+ x2="1149.2513"
710
+ y2="160.27998"
711
+ gradientUnits="userSpaceOnUse" />
712
+ <linearGradient
713
+ inkscape:collect="always"
714
+ xlink:href="#linearGradientBlackPiecesBorder"
715
+ id="linearGradient11924"
716
+ x1="365.43918"
717
+ y1="340.25049"
718
+ x2="432.26566"
719
+ y2="340.25049"
720
+ gradientUnits="userSpaceOnUse" />
721
+ <linearGradient
722
+ inkscape:collect="always"
723
+ xlink:href="#linearGradientBlackPiecesBorder"
724
+ id="linearGradient11926"
725
+ x1="866.25714"
726
+ y1="70.971428"
727
+ x2="910.46429"
728
+ y2="70.971428"
729
+ gradientUnits="userSpaceOnUse" />
730
+ <linearGradient
731
+ inkscape:collect="always"
732
+ xlink:href="#linearGradientBlackPiecesBorder"
733
+ id="linearGradient11928"
734
+ x1="827.92651"
735
+ y1="105.49463"
736
+ x2="974.56012"
737
+ y2="105.49463"
738
+ gradientUnits="userSpaceOnUse" />
739
+ <linearGradient
740
+ inkscape:collect="always"
741
+ xlink:href="#linearGradientBlackPiecesBorder"
742
+ id="linearGradient11930"
743
+ x1="690.55066"
744
+ y1="146.53426"
745
+ x2="706.93567"
746
+ y2="146.53426"
747
+ gradientUnits="userSpaceOnUse" />
748
+ <linearGradient
749
+ inkscape:collect="always"
750
+ xlink:href="#linearGradientBlackPiecesBorder"
751
+ id="linearGradient11932"
752
+ x1="668.59705"
753
+ y1="96.503098"
754
+ x2="709.49426"
755
+ y2="96.503098"
756
+ gradientUnits="userSpaceOnUse" />
757
+ <linearGradient
758
+ inkscape:collect="always"
759
+ xlink:href="#linearGradientBlackPiecesBorder"
760
+ id="linearGradient11934"
761
+ x1="644.69092"
762
+ y1="76.544586"
763
+ x2="745.35193"
764
+ y2="76.544586"
765
+ gradientUnits="userSpaceOnUse" />
766
+ <linearGradient
767
+ inkscape:collect="always"
768
+ xlink:href="#linearGradientBlackPiecesBorder"
769
+ id="linearGradient11936"
770
+ x1="660.58929"
771
+ y1="73.779846"
772
+ x2="753.43573"
773
+ y2="73.779846"
774
+ gradientUnits="userSpaceOnUse" />
775
+ <linearGradient
776
+ inkscape:collect="always"
777
+ xlink:href="#linearGradientBlackPiecesBorder"
778
+ id="linearGradient11938"
779
+ x1="658.13135"
780
+ y1="114.83434"
781
+ x2="738.08429"
782
+ y2="114.83434"
783
+ gradientUnits="userSpaceOnUse" />
784
+ <linearGradient
785
+ inkscape:collect="always"
786
+ xlink:href="#linearGradientBlackPiecesBorder"
787
+ id="linearGradient11940"
788
+ x1="365.68268"
789
+ y1="340.25049"
790
+ x2="432.02216"
791
+ y2="340.25049"
792
+ gradientUnits="userSpaceOnUse" />
793
+ <linearGradient
794
+ inkscape:collect="always"
795
+ xlink:href="#linearGradientBlackPiecesBorder"
796
+ id="linearGradient11942"
797
+ x1="365.68268"
798
+ y1="340.25049"
799
+ x2="432.02216"
800
+ y2="340.25049"
801
+ gradientUnits="userSpaceOnUse" />
802
+ <linearGradient
803
+ inkscape:collect="always"
804
+ xlink:href="#linearGradientBlackPiecesBorder"
805
+ id="linearGradient11944"
806
+ x1="656.17798"
807
+ y1="173.41995"
808
+ x2="701.07245"
809
+ y2="173.41995"
810
+ gradientUnits="userSpaceOnUse" />
811
+ <linearGradient
812
+ inkscape:collect="always"
813
+ xlink:href="#linearGradientBlackPiecesBorder"
814
+ id="linearGradient11946"
815
+ x1="698.4704"
816
+ y1="172.55678"
817
+ x2="743.36493"
818
+ y2="172.55678"
819
+ gradientUnits="userSpaceOnUse" />
820
+ <linearGradient
821
+ inkscape:collect="always"
822
+ xlink:href="#linearGradientBlackPiecesBorder"
823
+ id="linearGradient11948"
824
+ x1="483.78497"
825
+ y1="150.07507"
826
+ x2="513.65399"
827
+ y2="150.07507"
828
+ gradientUnits="userSpaceOnUse" />
829
+ <linearGradient
830
+ inkscape:collect="always"
831
+ xlink:href="#linearGradientBlackPiecesBorder"
832
+ id="linearGradient11950"
833
+ x1="480.61533"
834
+ y1="149.94077"
835
+ x2="520.30194"
836
+ y2="149.94077"
837
+ gradientUnits="userSpaceOnUse" />
838
+ <linearGradient
839
+ inkscape:collect="always"
840
+ xlink:href="#linearGradientBlackPiecesBorder"
841
+ id="linearGradient11952"
842
+ x1="367.3364"
843
+ y1="340.25049"
844
+ x2="430.36841"
845
+ y2="340.25049"
846
+ gradientUnits="userSpaceOnUse" />
847
+ <linearGradient
848
+ inkscape:collect="always"
849
+ xlink:href="#linearGradientBlackPiecesBorder"
850
+ id="linearGradient11954"
851
+ x1="367.3364"
852
+ y1="340.25049"
853
+ x2="430.36841"
854
+ y2="340.25049"
855
+ gradientUnits="userSpaceOnUse" />
856
+ <linearGradient
857
+ inkscape:collect="always"
858
+ xlink:href="#linearGradientBlackPiecesBorder"
859
+ id="linearGradient11956"
860
+ x1="417.95316"
861
+ y1="40.867519"
862
+ x2="582.47638"
863
+ y2="40.867519"
864
+ gradientUnits="userSpaceOnUse" />
865
+ <linearGradient
866
+ inkscape:collect="always"
867
+ xlink:href="#linearGradientBlackPiecesBorder"
868
+ id="linearGradient11958"
869
+ x1="424.8381"
870
+ y1="179.77798"
871
+ x2="573.25952"
872
+ y2="179.77798"
873
+ gradientUnits="userSpaceOnUse" />
874
+ <linearGradient
875
+ inkscape:collect="always"
876
+ xlink:href="#linearGradientBlackPiecesBorder"
877
+ id="linearGradient11960"
878
+ x1="452.70697"
879
+ y1="86.454453"
880
+ x2="500.16919"
881
+ y2="86.454453"
882
+ gradientUnits="userSpaceOnUse" />
883
+ <linearGradient
884
+ inkscape:collect="always"
885
+ xlink:href="#linearGradientBlackPiecesBorder"
886
+ id="linearGradient11962"
887
+ x1="502.69141"
888
+ y1="89.134148"
889
+ x2="549.44672"
890
+ y2="89.134148"
891
+ gradientUnits="userSpaceOnUse" />
892
+ <linearGradient
893
+ inkscape:collect="always"
894
+ xlink:href="#linearGradientBlackPiecesBorder"
895
+ id="linearGradient11964"
896
+ x1="445.49747"
897
+ y1="112.7225"
898
+ x2="557.88916"
899
+ y2="112.7225"
900
+ gradientUnits="userSpaceOnUse" />
901
+ <linearGradient
902
+ inkscape:collect="always"
903
+ xlink:href="#linearGradientBlackPiecesBorder"
904
+ id="linearGradient11966"
905
+ x1="32.829494"
906
+ y1="245.83333"
907
+ x2="140.50385"
908
+ y2="245.83333"
909
+ gradientUnits="userSpaceOnUse" />
910
+ <linearGradient
911
+ inkscape:collect="always"
912
+ xlink:href="#linearGradientBlackPiecesBorder"
913
+ id="linearGradient11968"
914
+ x1="32.829487"
915
+ y1="245.83333"
916
+ x2="140.50385"
917
+ y2="245.83333"
918
+ gradientUnits="userSpaceOnUse" />
919
+ <linearGradient
920
+ inkscape:collect="always"
921
+ xlink:href="#linearGradientBlackPiecesBorder"
922
+ id="linearGradient11970"
923
+ x1="32.829487"
924
+ y1="245.83333"
925
+ x2="140.50385"
926
+ y2="245.83333"
927
+ gradientUnits="userSpaceOnUse" />
928
+ <linearGradient
929
+ inkscape:collect="always"
930
+ xlink:href="#linearGradientBlackPiecesBorder"
931
+ id="linearGradient11972"
932
+ x1="264.0762"
933
+ y1="136.56403"
934
+ x2="338.59048"
935
+ y2="136.56403"
936
+ gradientUnits="userSpaceOnUse" />
937
+ <linearGradient
938
+ inkscape:collect="always"
939
+ xlink:href="#linearGradientBlackPiecesBorder"
940
+ id="linearGradient11974"
941
+ x1="32.829487"
942
+ y1="245.83333"
943
+ x2="140.50385"
944
+ y2="245.83333"
945
+ gradientUnits="userSpaceOnUse" />
946
+ <linearGradient
947
+ inkscape:collect="always"
948
+ xlink:href="#linearGradientBlackPiecesBorder"
949
+ id="linearGradient11976"
950
+ x1="224.00957"
951
+ y1="93.224358"
952
+ x2="373.61008"
953
+ y2="93.224358"
954
+ gradientUnits="userSpaceOnUse" />
955
+ <linearGradient
956
+ inkscape:collect="always"
957
+ xlink:href="#linearGradientBlackPiecesBorder"
958
+ id="linearGradient11978"
959
+ x1="366.27344"
960
+ y1="340.25049"
961
+ x2="431.4314"
962
+ y2="340.25049"
963
+ gradientUnits="userSpaceOnUse" />
964
+ <linearGradient
965
+ inkscape:collect="always"
966
+ xlink:href="#linearGradientBlackPiecesBorder"
967
+ id="linearGradient11980"
968
+ x1="366.27344"
969
+ y1="340.25049"
970
+ x2="431.4314"
971
+ y2="340.25049"
972
+ gradientUnits="userSpaceOnUse" />
973
+ <linearGradient
974
+ inkscape:collect="always"
975
+ xlink:href="#linearGradientBlackPiecesBorder"
976
+ id="linearGradient11982"
977
+ x1="254.77856"
978
+ y1="169.65237"
979
+ x2="302.60001"
980
+ y2="169.65237"
981
+ gradientUnits="userSpaceOnUse" />
982
+ <linearGradient
983
+ inkscape:collect="always"
984
+ xlink:href="#linearGradientBlackPiecesBorder"
985
+ id="linearGradient11984"
986
+ x1="300.82858"
987
+ y1="168.42024"
988
+ x2="348.64999"
989
+ y2="168.42024"
990
+ gradientUnits="userSpaceOnUse" />
991
+ <linearGradient
992
+ inkscape:collect="always"
993
+ xlink:href="#linearGradientBlackPiecesBorder"
994
+ id="linearGradient11986"
995
+ x1="59.698338"
996
+ y1="137.37466"
997
+ x2="141.24326"
998
+ y2="137.37466"
999
+ gradientUnits="userSpaceOnUse" />
1000
+ <linearGradient
1001
+ inkscape:collect="always"
1002
+ xlink:href="#linearGradientBlackPiecesBorder"
1003
+ id="linearGradient11988"
1004
+ x1="23.485004"
1005
+ y1="112.1781"
1006
+ x2="177.66451"
1007
+ y2="112.1781"
1008
+ gradientUnits="userSpaceOnUse" />
1009
+ <linearGradient
1010
+ inkscape:collect="always"
1011
+ xlink:href="#linearGradientBlackPiecesBorder"
1012
+ id="linearGradient11990"
1013
+ x1="298.91412"
1014
+ y1="338.0408"
1015
+ x2="459.01593"
1016
+ y2="338.0408"
1017
+ gradientUnits="userSpaceOnUse" />
1018
+ <linearGradient
1019
+ inkscape:collect="always"
1020
+ xlink:href="#linearGradientBlackPiecesBorder"
1021
+ id="linearGradient11992"
1022
+ x1="60.532261"
1023
+ y1="46.829197"
1024
+ x2="134.64749"
1025
+ y2="46.829197"
1026
+ gradientUnits="userSpaceOnUse" />
1027
+ <linearGradient
1028
+ inkscape:collect="always"
1029
+ xlink:href="#linearGradientBlackPiecesBorder"
1030
+ id="linearGradient11994"
1031
+ x1="366.59531"
1032
+ y1="340.25049"
1033
+ x2="431.10953"
1034
+ y2="340.25049"
1035
+ gradientUnits="userSpaceOnUse" />
1036
+ <linearGradient
1037
+ inkscape:collect="always"
1038
+ xlink:href="#linearGradientBlackPiecesBorder"
1039
+ id="linearGradient11996"
1040
+ x1="366.59531"
1041
+ y1="340.25049"
1042
+ x2="431.10953"
1043
+ y2="340.25049"
1044
+ gradientUnits="userSpaceOnUse" />
1045
+ <linearGradient
1046
+ inkscape:collect="always"
1047
+ xlink:href="#linearGradientBlackPiecesBorder"
1048
+ id="linearGradient11998"
1049
+ x1="310.70657"
1050
+ y1="338.0408"
1051
+ x2="447.22351"
1052
+ y2="338.0408"
1053
+ gradientUnits="userSpaceOnUse" />
1054
+ <linearGradient
1055
+ inkscape:collect="always"
1056
+ xlink:href="#linearGradientBlackPiecesBorder"
1057
+ id="linearGradient12000"
1058
+ x1="310.70657"
1059
+ y1="338.0408"
1060
+ x2="447.22351"
1061
+ y2="338.0408"
1062
+ gradientUnits="userSpaceOnUse" />
1063
+ <linearGradient
1064
+ inkscape:collect="always"
1065
+ xlink:href="#linearGradientWhitePiecesBorder"
1066
+ id="linearGradient12784"
1067
+ x1="1048.6277"
1068
+ y1="323.99677"
1069
+ x2="1155.115"
1070
+ y2="323.99677"
1071
+ gradientUnits="userSpaceOnUse" />
1072
+ <linearGradient
1073
+ inkscape:collect="always"
1074
+ xlink:href="#linearGradientWhitePiecesBorder"
1075
+ id="linearGradient12786"
1076
+ x1="320.72302"
1077
+ y1="422.45166"
1078
+ x2="471.23657"
1079
+ y2="422.45166"
1080
+ gradientUnits="userSpaceOnUse" />
1081
+ <linearGradient
1082
+ inkscape:collect="always"
1083
+ xlink:href="#linearGradientWhitePiecesBorder"
1084
+ id="linearGradient12788"
1085
+ x1="1078.4449"
1086
+ y1="272.58609"
1087
+ x2="1121.2837"
1088
+ y2="272.58609"
1089
+ gradientUnits="userSpaceOnUse" />
1090
+ <linearGradient
1091
+ inkscape:collect="always"
1092
+ xlink:href="#linearGradientWhitePiecesBorder"
1093
+ id="linearGradient12790"
1094
+ x1="366.4368"
1095
+ y1="340.25049"
1096
+ x2="431.26804"
1097
+ y2="340.25049"
1098
+ gradientUnits="userSpaceOnUse" />
1099
+ <linearGradient
1100
+ inkscape:collect="always"
1101
+ xlink:href="#linearGradientWhitePiecesBorder"
1102
+ id="linearGradient12792"
1103
+ x1="1053.1915"
1104
+ y1="360.28"
1105
+ x2="1101.7916"
1106
+ y2="360.28"
1107
+ gradientUnits="userSpaceOnUse" />
1108
+ <linearGradient
1109
+ inkscape:collect="always"
1110
+ xlink:href="#linearGradientWhitePiecesBorder"
1111
+ id="linearGradient12794"
1112
+ x1="366.4368"
1113
+ y1="340.25049"
1114
+ x2="431.26804"
1115
+ y2="340.25049"
1116
+ gradientUnits="userSpaceOnUse" />
1117
+ <linearGradient
1118
+ inkscape:collect="always"
1119
+ xlink:href="#linearGradientWhitePiecesBorder"
1120
+ id="linearGradient12796"
1121
+ x1="1100.6512"
1122
+ y1="360.28"
1123
+ x2="1149.2513"
1124
+ y2="360.28"
1125
+ gradientUnits="userSpaceOnUse" />
1126
+ <linearGradient
1127
+ inkscape:collect="always"
1128
+ xlink:href="#linearGradientWhitePiecesBorder"
1129
+ id="linearGradient12798"
1130
+ x1="365.43918"
1131
+ y1="340.25049"
1132
+ x2="432.26566"
1133
+ y2="340.25049"
1134
+ gradientUnits="userSpaceOnUse" />
1135
+ <linearGradient
1136
+ inkscape:collect="always"
1137
+ xlink:href="#linearGradientWhitePiecesBorder"
1138
+ id="linearGradient12800"
1139
+ x1="866.25714"
1140
+ y1="270.97141"
1141
+ x2="910.46429"
1142
+ y2="270.97141"
1143
+ gradientUnits="userSpaceOnUse" />
1144
+ <linearGradient
1145
+ inkscape:collect="always"
1146
+ xlink:href="#linearGradientWhitePiecesBorder"
1147
+ id="linearGradient12802"
1148
+ x1="827.92651"
1149
+ y1="305.49463"
1150
+ x2="974.56012"
1151
+ y2="305.49463"
1152
+ gradientUnits="userSpaceOnUse" />
1153
+ <linearGradient
1154
+ inkscape:collect="always"
1155
+ xlink:href="#linearGradientWhitePiecesBorder"
1156
+ id="linearGradient12804"
1157
+ x1="690.55066"
1158
+ y1="346.53424"
1159
+ x2="706.93567"
1160
+ y2="346.53424"
1161
+ gradientUnits="userSpaceOnUse" />
1162
+ <linearGradient
1163
+ inkscape:collect="always"
1164
+ xlink:href="#linearGradientWhitePiecesBorder"
1165
+ id="linearGradient12806"
1166
+ x1="668.59705"
1167
+ y1="296.50311"
1168
+ x2="709.49426"
1169
+ y2="296.50311"
1170
+ gradientUnits="userSpaceOnUse" />
1171
+ <linearGradient
1172
+ inkscape:collect="always"
1173
+ xlink:href="#linearGradientWhitePiecesBorder"
1174
+ id="linearGradient12808"
1175
+ x1="644.69092"
1176
+ y1="276.54459"
1177
+ x2="745.35193"
1178
+ y2="276.54459"
1179
+ gradientUnits="userSpaceOnUse" />
1180
+ <linearGradient
1181
+ inkscape:collect="always"
1182
+ xlink:href="#linearGradientWhitePiecesBorder"
1183
+ id="linearGradient12810"
1184
+ x1="660.58929"
1185
+ y1="273.77985"
1186
+ x2="753.43573"
1187
+ y2="273.77985"
1188
+ gradientUnits="userSpaceOnUse" />
1189
+ <linearGradient
1190
+ inkscape:collect="always"
1191
+ xlink:href="#linearGradientWhitePiecesBorder"
1192
+ id="linearGradient12812"
1193
+ x1="658.13135"
1194
+ y1="314.83435"
1195
+ x2="738.08429"
1196
+ y2="314.83435"
1197
+ gradientUnits="userSpaceOnUse" />
1198
+ <linearGradient
1199
+ inkscape:collect="always"
1200
+ xlink:href="#linearGradientWhitePiecesBorder"
1201
+ id="linearGradient12814"
1202
+ x1="365.68268"
1203
+ y1="340.25049"
1204
+ x2="432.02216"
1205
+ y2="340.25049"
1206
+ gradientUnits="userSpaceOnUse" />
1207
+ <linearGradient
1208
+ inkscape:collect="always"
1209
+ xlink:href="#linearGradientWhitePiecesBorder"
1210
+ id="linearGradient12816"
1211
+ x1="365.68268"
1212
+ y1="340.25049"
1213
+ x2="432.02216"
1214
+ y2="340.25049"
1215
+ gradientUnits="userSpaceOnUse" />
1216
+ <linearGradient
1217
+ inkscape:collect="always"
1218
+ xlink:href="#linearGradientWhitePiecesBorder"
1219
+ id="linearGradient12818"
1220
+ x1="656.17798"
1221
+ y1="373.41995"
1222
+ x2="701.07245"
1223
+ y2="373.41995"
1224
+ gradientUnits="userSpaceOnUse" />
1225
+ <linearGradient
1226
+ inkscape:collect="always"
1227
+ xlink:href="#linearGradientWhitePiecesBorder"
1228
+ id="linearGradient12820"
1229
+ x1="698.4704"
1230
+ y1="372.55679"
1231
+ x2="743.36493"
1232
+ y2="372.55679"
1233
+ gradientUnits="userSpaceOnUse" />
1234
+ <linearGradient
1235
+ inkscape:collect="always"
1236
+ xlink:href="#linearGradientWhitePiecesBorder"
1237
+ id="linearGradient12822"
1238
+ x1="483.78497"
1239
+ y1="350.07507"
1240
+ x2="513.65399"
1241
+ y2="350.07507"
1242
+ gradientUnits="userSpaceOnUse" />
1243
+ <linearGradient
1244
+ inkscape:collect="always"
1245
+ xlink:href="#linearGradientWhitePiecesBorder"
1246
+ id="linearGradient12824"
1247
+ x1="480.61533"
1248
+ y1="349.94077"
1249
+ x2="520.30194"
1250
+ y2="349.94077"
1251
+ gradientUnits="userSpaceOnUse" />
1252
+ <linearGradient
1253
+ inkscape:collect="always"
1254
+ xlink:href="#linearGradientWhitePiecesBorder"
1255
+ id="linearGradient12826"
1256
+ x1="367.3364"
1257
+ y1="340.25049"
1258
+ x2="430.36841"
1259
+ y2="340.25049"
1260
+ gradientUnits="userSpaceOnUse" />
1261
+ <linearGradient
1262
+ inkscape:collect="always"
1263
+ xlink:href="#linearGradientWhitePiecesBorder"
1264
+ id="linearGradient12828"
1265
+ x1="367.3364"
1266
+ y1="340.25049"
1267
+ x2="430.36841"
1268
+ y2="340.25049"
1269
+ gradientUnits="userSpaceOnUse" />
1270
+ <linearGradient
1271
+ inkscape:collect="always"
1272
+ xlink:href="#linearGradientWhitePiecesBorder"
1273
+ id="linearGradient12830"
1274
+ x1="417.95316"
1275
+ y1="240.86752"
1276
+ x2="582.47638"
1277
+ y2="240.86752"
1278
+ gradientUnits="userSpaceOnUse" />
1279
+ <linearGradient
1280
+ inkscape:collect="always"
1281
+ xlink:href="#linearGradientWhitePiecesBorder"
1282
+ id="linearGradient12832"
1283
+ x1="424.8381"
1284
+ y1="379.77798"
1285
+ x2="573.25952"
1286
+ y2="379.77798"
1287
+ gradientUnits="userSpaceOnUse" />
1288
+ <linearGradient
1289
+ inkscape:collect="always"
1290
+ xlink:href="#linearGradientWhitePiecesBorder"
1291
+ id="linearGradient12834"
1292
+ x1="452.70697"
1293
+ y1="286.45444"
1294
+ x2="500.16919"
1295
+ y2="286.45444"
1296
+ gradientUnits="userSpaceOnUse" />
1297
+ <linearGradient
1298
+ inkscape:collect="always"
1299
+ xlink:href="#linearGradientWhitePiecesBorder"
1300
+ id="linearGradient12836"
1301
+ x1="502.69141"
1302
+ y1="289.13412"
1303
+ x2="549.44672"
1304
+ y2="289.13412"
1305
+ gradientUnits="userSpaceOnUse" />
1306
+ <linearGradient
1307
+ inkscape:collect="always"
1308
+ xlink:href="#linearGradientWhitePiecesBorder"
1309
+ id="linearGradient12838"
1310
+ x1="445.49747"
1311
+ y1="312.7225"
1312
+ x2="557.88916"
1313
+ y2="312.7225"
1314
+ gradientUnits="userSpaceOnUse" />
1315
+ <linearGradient
1316
+ inkscape:collect="always"
1317
+ xlink:href="#linearGradientWhitePiecesBorder"
1318
+ id="linearGradient12840"
1319
+ x1="32.829494"
1320
+ y1="245.83333"
1321
+ x2="140.50385"
1322
+ y2="245.83333"
1323
+ gradientUnits="userSpaceOnUse" />
1324
+ <linearGradient
1325
+ inkscape:collect="always"
1326
+ xlink:href="#linearGradientWhitePiecesBorder"
1327
+ id="linearGradient12842"
1328
+ x1="32.829487"
1329
+ y1="245.83333"
1330
+ x2="140.50385"
1331
+ y2="245.83333"
1332
+ gradientUnits="userSpaceOnUse" />
1333
+ <linearGradient
1334
+ inkscape:collect="always"
1335
+ xlink:href="#linearGradientWhitePiecesBorder"
1336
+ id="linearGradient12844"
1337
+ x1="32.829487"
1338
+ y1="245.83333"
1339
+ x2="140.50385"
1340
+ y2="245.83333"
1341
+ gradientUnits="userSpaceOnUse" />
1342
+ <linearGradient
1343
+ inkscape:collect="always"
1344
+ xlink:href="#linearGradientWhitePiecesBorder"
1345
+ id="linearGradient12846"
1346
+ x1="264.0762"
1347
+ y1="336.56403"
1348
+ x2="338.59048"
1349
+ y2="336.56403"
1350
+ gradientUnits="userSpaceOnUse" />
1351
+ <linearGradient
1352
+ inkscape:collect="always"
1353
+ xlink:href="#linearGradientWhitePiecesBorder"
1354
+ id="linearGradient12848"
1355
+ x1="32.829487"
1356
+ y1="245.83333"
1357
+ x2="140.50385"
1358
+ y2="245.83333"
1359
+ gradientUnits="userSpaceOnUse" />
1360
+ <linearGradient
1361
+ inkscape:collect="always"
1362
+ xlink:href="#linearGradientWhitePiecesBorder"
1363
+ id="linearGradient12850"
1364
+ x1="224.00957"
1365
+ y1="293.22437"
1366
+ x2="373.61008"
1367
+ y2="293.22437"
1368
+ gradientUnits="userSpaceOnUse" />
1369
+ <linearGradient
1370
+ inkscape:collect="always"
1371
+ xlink:href="#linearGradientWhitePiecesBorder"
1372
+ id="linearGradient12852"
1373
+ x1="366.27344"
1374
+ y1="340.25049"
1375
+ x2="431.4314"
1376
+ y2="340.25049"
1377
+ gradientUnits="userSpaceOnUse" />
1378
+ <linearGradient
1379
+ inkscape:collect="always"
1380
+ xlink:href="#linearGradientWhitePiecesBorder"
1381
+ id="linearGradient12854"
1382
+ x1="366.27344"
1383
+ y1="340.25049"
1384
+ x2="431.4314"
1385
+ y2="340.25049"
1386
+ gradientUnits="userSpaceOnUse" />
1387
+ <linearGradient
1388
+ inkscape:collect="always"
1389
+ xlink:href="#linearGradientWhitePiecesBorder"
1390
+ id="linearGradient12856"
1391
+ x1="254.77856"
1392
+ y1="369.65237"
1393
+ x2="302.60001"
1394
+ y2="369.65237"
1395
+ gradientUnits="userSpaceOnUse" />
1396
+ <linearGradient
1397
+ inkscape:collect="always"
1398
+ xlink:href="#linearGradientWhitePiecesBorder"
1399
+ id="linearGradient12858"
1400
+ x1="300.82858"
1401
+ y1="368.42023"
1402
+ x2="348.64999"
1403
+ y2="368.42023"
1404
+ gradientUnits="userSpaceOnUse" />
1405
+ <linearGradient
1406
+ inkscape:collect="always"
1407
+ xlink:href="#linearGradientWhitePiecesBorder"
1408
+ id="linearGradient12860"
1409
+ x1="59.698338"
1410
+ y1="337.37466"
1411
+ x2="141.24326"
1412
+ y2="337.37466"
1413
+ gradientUnits="userSpaceOnUse" />
1414
+ <linearGradient
1415
+ inkscape:collect="always"
1416
+ xlink:href="#linearGradientWhitePiecesBorder"
1417
+ id="linearGradient12862"
1418
+ x1="23.485004"
1419
+ y1="312.1781"
1420
+ x2="177.66451"
1421
+ y2="312.1781"
1422
+ gradientUnits="userSpaceOnUse" />
1423
+ <linearGradient
1424
+ inkscape:collect="always"
1425
+ xlink:href="#linearGradientWhitePiecesBorder"
1426
+ id="linearGradient12864"
1427
+ x1="298.91412"
1428
+ y1="338.0408"
1429
+ x2="459.01593"
1430
+ y2="338.0408"
1431
+ gradientUnits="userSpaceOnUse" />
1432
+ <linearGradient
1433
+ inkscape:collect="always"
1434
+ xlink:href="#linearGradientWhitePiecesBorder"
1435
+ id="linearGradient12866"
1436
+ x1="60.532261"
1437
+ y1="246.82919"
1438
+ x2="134.64749"
1439
+ y2="246.82919"
1440
+ gradientUnits="userSpaceOnUse" />
1441
+ <linearGradient
1442
+ inkscape:collect="always"
1443
+ xlink:href="#linearGradientWhitePiecesBorder"
1444
+ id="linearGradient12868"
1445
+ x1="366.59531"
1446
+ y1="340.25049"
1447
+ x2="431.10953"
1448
+ y2="340.25049"
1449
+ gradientUnits="userSpaceOnUse" />
1450
+ <linearGradient
1451
+ inkscape:collect="always"
1452
+ xlink:href="#linearGradientWhitePiecesBorder"
1453
+ id="linearGradient12870"
1454
+ x1="366.59531"
1455
+ y1="340.25049"
1456
+ x2="431.10953"
1457
+ y2="340.25049"
1458
+ gradientUnits="userSpaceOnUse" />
1459
+ <linearGradient
1460
+ inkscape:collect="always"
1461
+ xlink:href="#linearGradientWhitePiecesBorder"
1462
+ id="linearGradient12872"
1463
+ x1="310.70657"
1464
+ y1="338.0408"
1465
+ x2="447.22351"
1466
+ y2="338.0408"
1467
+ gradientUnits="userSpaceOnUse" />
1468
+ <linearGradient
1469
+ inkscape:collect="always"
1470
+ xlink:href="#linearGradientWhitePiecesBorder"
1471
+ id="linearGradient12874"
1472
+ x1="310.70657"
1473
+ y1="338.0408"
1474
+ x2="447.22351"
1475
+ y2="338.0408"
1476
+ gradientUnits="userSpaceOnUse" />
1477
+ <linearGradient
1478
+ inkscape:collect="always"
1479
+ xlink:href="#linearGradientWhitePiecesBorder"
1480
+ id="linearGradient12882"
1481
+ x1="366.4368"
1482
+ y1="340.25049"
1483
+ x2="431.26804"
1484
+ y2="340.25049"
1485
+ gradientUnits="userSpaceOnUse" />
1486
+ <linearGradient
1487
+ inkscape:collect="always"
1488
+ xlink:href="#linearGradientWhitePiecesBorder"
1489
+ id="linearGradient12884"
1490
+ x1="366.4368"
1491
+ y1="340.25049"
1492
+ x2="431.26804"
1493
+ y2="340.25049"
1494
+ gradientUnits="userSpaceOnUse" />
1495
+ <linearGradient
1496
+ inkscape:collect="always"
1497
+ xlink:href="#linearGradientWhitePiecesBorder"
1498
+ id="linearGradient12886"
1499
+ x1="365.43918"
1500
+ y1="340.25049"
1501
+ x2="432.26566"
1502
+ y2="340.25049"
1503
+ gradientUnits="userSpaceOnUse" />
1504
+ <linearGradient
1505
+ inkscape:collect="always"
1506
+ xlink:href="#linearGradientWhitePiecesBorder"
1507
+ id="linearGradient12888"
1508
+ x1="365.68268"
1509
+ y1="340.25049"
1510
+ x2="432.02216"
1511
+ y2="340.25049"
1512
+ gradientUnits="userSpaceOnUse" />
1513
+ <linearGradient
1514
+ inkscape:collect="always"
1515
+ xlink:href="#linearGradientWhitePiecesBorder"
1516
+ id="linearGradient12890"
1517
+ x1="365.68268"
1518
+ y1="340.25049"
1519
+ x2="432.02216"
1520
+ y2="340.25049"
1521
+ gradientUnits="userSpaceOnUse" />
1522
+ <linearGradient
1523
+ inkscape:collect="always"
1524
+ xlink:href="#linearGradientWhitePiecesBorder"
1525
+ id="linearGradient12892"
1526
+ x1="367.3364"
1527
+ y1="340.25049"
1528
+ x2="430.36841"
1529
+ y2="340.25049"
1530
+ gradientUnits="userSpaceOnUse" />
1531
+ <linearGradient
1532
+ inkscape:collect="always"
1533
+ xlink:href="#linearGradientWhitePiecesBorder"
1534
+ id="linearGradient12894"
1535
+ x1="367.3364"
1536
+ y1="340.25049"
1537
+ x2="430.36841"
1538
+ y2="340.25049"
1539
+ gradientUnits="userSpaceOnUse" />
1540
+ <linearGradient
1541
+ inkscape:collect="always"
1542
+ xlink:href="#linearGradientWhitePiecesBorder"
1543
+ id="linearGradient12896"
1544
+ x1="366.27344"
1545
+ y1="340.25049"
1546
+ x2="431.4314"
1547
+ y2="340.25049"
1548
+ gradientUnits="userSpaceOnUse" />
1549
+ <linearGradient
1550
+ inkscape:collect="always"
1551
+ xlink:href="#linearGradientWhitePiecesBorder"
1552
+ id="linearGradient12898"
1553
+ x1="366.27344"
1554
+ y1="340.25049"
1555
+ x2="431.4314"
1556
+ y2="340.25049"
1557
+ gradientUnits="userSpaceOnUse" />
1558
+ <linearGradient
1559
+ inkscape:collect="always"
1560
+ xlink:href="#linearGradientWhitePiecesBorder"
1561
+ id="linearGradient12900"
1562
+ x1="366.59531"
1563
+ y1="340.25049"
1564
+ x2="431.10953"
1565
+ y2="340.25049"
1566
+ gradientUnits="userSpaceOnUse" />
1567
+ <linearGradient
1568
+ inkscape:collect="always"
1569
+ xlink:href="#linearGradientWhitePiecesBorder"
1570
+ id="linearGradient12902"
1571
+ x1="366.59531"
1572
+ y1="340.25049"
1573
+ x2="431.10953"
1574
+ y2="340.25049"
1575
+ gradientUnits="userSpaceOnUse" />
1576
+ <linearGradient
1577
+ inkscape:collect="always"
1578
+ xlink:href="#linearGradientBlackPiecesBorder"
1579
+ id="linearGradient12910"
1580
+ x1="366.4368"
1581
+ y1="340.25049"
1582
+ x2="431.26804"
1583
+ y2="340.25049"
1584
+ gradientUnits="userSpaceOnUse" />
1585
+ <linearGradient
1586
+ inkscape:collect="always"
1587
+ xlink:href="#linearGradientBlackPiecesBorder"
1588
+ id="linearGradient12912"
1589
+ x1="366.4368"
1590
+ y1="340.25049"
1591
+ x2="431.26804"
1592
+ y2="340.25049"
1593
+ gradientUnits="userSpaceOnUse" />
1594
+ <linearGradient
1595
+ inkscape:collect="always"
1596
+ xlink:href="#linearGradientBlackPiecesBorder"
1597
+ id="linearGradient12914"
1598
+ x1="365.43918"
1599
+ y1="340.25049"
1600
+ x2="432.26566"
1601
+ y2="340.25049"
1602
+ gradientUnits="userSpaceOnUse" />
1603
+ <linearGradient
1604
+ inkscape:collect="always"
1605
+ xlink:href="#linearGradientBlackPiecesBorder"
1606
+ id="linearGradient12916"
1607
+ x1="365.68268"
1608
+ y1="340.25049"
1609
+ x2="432.02216"
1610
+ y2="340.25049"
1611
+ gradientUnits="userSpaceOnUse" />
1612
+ <linearGradient
1613
+ inkscape:collect="always"
1614
+ xlink:href="#linearGradientBlackPiecesBorder"
1615
+ id="linearGradient12918"
1616
+ x1="365.68268"
1617
+ y1="340.25049"
1618
+ x2="432.02216"
1619
+ y2="340.25049"
1620
+ gradientUnits="userSpaceOnUse" />
1621
+ <linearGradient
1622
+ inkscape:collect="always"
1623
+ xlink:href="#linearGradientBlackPiecesBorder"
1624
+ id="linearGradient12920"
1625
+ x1="367.3364"
1626
+ y1="340.25049"
1627
+ x2="430.36841"
1628
+ y2="340.25049"
1629
+ gradientUnits="userSpaceOnUse" />
1630
+ <linearGradient
1631
+ inkscape:collect="always"
1632
+ xlink:href="#linearGradientBlackPiecesBorder"
1633
+ id="linearGradient12922"
1634
+ x1="367.3364"
1635
+ y1="340.25049"
1636
+ x2="430.36841"
1637
+ y2="340.25049"
1638
+ gradientUnits="userSpaceOnUse" />
1639
+ <linearGradient
1640
+ inkscape:collect="always"
1641
+ xlink:href="#linearGradientBlackPiecesBorder"
1642
+ id="linearGradient12924"
1643
+ x1="366.27344"
1644
+ y1="340.25049"
1645
+ x2="431.4314"
1646
+ y2="340.25049"
1647
+ gradientUnits="userSpaceOnUse" />
1648
+ <linearGradient
1649
+ inkscape:collect="always"
1650
+ xlink:href="#linearGradientBlackPiecesBorder"
1651
+ id="linearGradient12926"
1652
+ x1="366.27344"
1653
+ y1="340.25049"
1654
+ x2="431.4314"
1655
+ y2="340.25049"
1656
+ gradientUnits="userSpaceOnUse" />
1657
+ <linearGradient
1658
+ inkscape:collect="always"
1659
+ xlink:href="#linearGradientBlackPiecesBorder"
1660
+ id="linearGradient12928"
1661
+ x1="366.59531"
1662
+ y1="340.25049"
1663
+ x2="431.10953"
1664
+ y2="340.25049"
1665
+ gradientUnits="userSpaceOnUse" />
1666
+ <linearGradient
1667
+ inkscape:collect="always"
1668
+ xlink:href="#linearGradientBlackPiecesBorder"
1669
+ id="linearGradient12930"
1670
+ x1="366.59531"
1671
+ y1="340.25049"
1672
+ x2="431.10953"
1673
+ y2="340.25049"
1674
+ gradientUnits="userSpaceOnUse" />
1675
+ </defs>
1676
+ <sodipodi:namedview
1677
+ id="base"
1678
+ pagecolor="#ffffff"
1679
+ bordercolor="#666666"
1680
+ borderopacity="1.0"
1681
+ inkscape:pageopacity="0.0"
1682
+ inkscape:pageshadow="2"
1683
+ inkscape:zoom="0.98994949"
1684
+ inkscape:cx="614.71491"
1685
+ inkscape:cy="150.27397"
1686
+ inkscape:document-units="px"
1687
+ inkscape:current-layer="BlackPieces"
1688
+ showgrid="false"
1689
+ inkscape:window-width="1835"
1690
+ inkscape:window-height="812"
1691
+ inkscape:window-x="40"
1692
+ inkscape:window-y="142"
1693
+ inkscape:window-maximized="0" />
1694
+ <metadata
1695
+ id="metadata10119">
1696
+ <rdf:RDF>
1697
+ <cc:Work
1698
+ rdf:about="">
1699
+ <dc:format>image/svg+xml</dc:format>
1700
+ <dc:type
1701
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
1702
+ <dc:title></dc:title>
1703
+ </cc:Work>
1704
+ </rdf:RDF>
1705
+ </metadata>
1706
+ <g
1707
+ inkscape:label="BlackPieces"
1708
+ inkscape:groupmode="layer"
1709
+ id="BlackPieces">
1710
+ <g
1711
+ id="BlackKing">
1712
+ <rect
1713
+ y="0"
1714
+ x="0"
1715
+ height="200"
1716
+ width="200"
1717
+ id="rect8054"
1718
+ style="fill:none;stroke:none" />
1719
+ <path
1720
+ transform="matrix(0.36076343,0,0,0.33223223,-12.13919,57.38034)"
1721
+ d="m 441.94172,338.0408 a 62.976696,70.710678 0 1 1 -125.95339,0 62.976696,70.710678 0 1 1 125.95339,0 z"
1722
+ sodipodi:ry="70.710678"
1723
+ sodipodi:rx="62.976696"
1724
+ sodipodi:cy="338.0408"
1725
+ sodipodi:cx="378.96503"
1726
+ id="path1345"
1727
+ style="opacity:0.98999999;fill:url(#linearGradient10260);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient12000);stroke-width:10.56354809;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
1728
+ sodipodi:type="arc" />
1729
+ <path
1730
+ sodipodi:type="arc"
1731
+ style="opacity:0.98999999;fill:url(#linearGradient10262);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient11998);stroke-width:10.56354809;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
1732
+ id="path5795"
1733
+ sodipodi:cx="378.96503"
1734
+ sodipodi:cy="338.0408"
1735
+ sodipodi:rx="62.976696"
1736
+ sodipodi:ry="70.710678"
1737
+ d="m 441.94172,338.0408 a 62.976696,70.710678 0 1 1 -125.95339,0 62.976696,70.710678 0 1 1 125.95339,0 z"
1738
+ transform="matrix(0.36076343,0,0,0.33223223,-59.51915,58.67741)" />
1739
+ <path
1740
+ transform="matrix(0.19839474,0,0,0.20554171,47.08745,105.5604)"
1741
+ d="m 422.05436,340.25049 a 23.201941,22.097088 0 1 1 -46.40388,0 23.201941,22.097088 0 1 1 46.40388,0 z"
1742
+ sodipodi:ry="22.097088"
1743
+ sodipodi:rx="23.201941"
1744
+ sodipodi:cy="340.25049"
1745
+ sodipodi:cx="398.85242"
1746
+ id="path2231"
1747
+ style="opacity:0.98999999;fill:url(#linearGradient12928);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient11996);stroke-width:18.11034966;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
1748
+ sodipodi:type="arc" />
1749
+ <path
1750
+ sodipodi:type="arc"
1751
+ style="opacity:0.98999999;fill:url(#linearGradient12930);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient11994);stroke-width:18.11034966;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
1752
+ id="path5797"
1753
+ sodipodi:cx="398.85242"
1754
+ sodipodi:cy="340.25049"
1755
+ sodipodi:rx="23.201941"
1756
+ sodipodi:ry="22.097088"
1757
+ d="m 422.05436,340.25049 a 23.201941,22.097088 0 1 1 -46.40388,0 23.201941,22.097088 0 1 1 46.40388,0 z"
1758
+ transform="matrix(0.19839474,0,0,0.20554171,-1.24412,106.27574)" />
1759
+ <path
1760
+ inkscape:connector-curvature="0"
1761
+ sodipodi:nodetypes="ccsccccscs"
1762
+ id="path2671"
1763
+ d="m 94.61678,14.17295 c -9.10736,0.14873 -12.3162,10.35883 -5.21566,24.62641 -12.42017,-2.9652 -27.12405,-0.88262 -27.03993,8.68718 0.07,8.21 12.82495,8.80813 27.34311,8.30861 1.88215,6.61613 3.44275,15.21918 6.7926,23.34139 l 5.62143,0.35 c 2.24504,-8.41815 3.13602,-18.07207 3.85344,-24.97194 15.28766,1.29487 27.1942,-0.36964 26.83942,-9.39234 -0.37202,-9.46077 -16.11072,-10.69615 -28.61085,-6.72832 1.34702,-12.2934 -1.17204,-24.35431 -9.58356,-24.22099 z"
1764
+ style="fill:url(#linearGradient10276);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient11992);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1765
+ <path
1766
+ sodipodi:type="arc"
1767
+ style="opacity:0.98999999;fill:url(#linearGradient10266);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient11990);stroke-width:11.78353214;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
1768
+ id="path10413"
1769
+ sodipodi:cx="378.96503"
1770
+ sodipodi:cy="338.0408"
1771
+ sodipodi:rx="74.159134"
1772
+ sodipodi:ry="70.710678"
1773
+ d="m 453.12416,338.0408 a 74.159134,70.710678 0 1 1 -148.31827,0 74.159134,70.710678 0 1 1 148.31827,0 z"
1774
+ transform="matrix(0.31083566,0,0,0.30988594,-17.66356,-11.00959)" />
1775
+ <path
1776
+ inkscape:connector-curvature="0"
1777
+ sodipodi:nodetypes="csscsscc"
1778
+ id="path10402"
1779
+ d="m 56.07907,151.9819 c 3.26291,-14.3782 -23.66029,-11.50127 -29.64153,-38.17633 -4.78545,-21.3421 5.88153,-38.67172 28.72724,-40.39315 26.55914,-2.00124 45.00011,35.69275 45.00011,35.69275 0,0 15.79519,-31.27416 36.5935,-35.87573 22.62874,-5.00656 42.21046,12.5852 38.65906,36.69851 -3.81315,25.89052 -34.54492,24.15707 -31.73597,39.93958 -31.02747,-2.54882 -59.19786,-0.94423 -87.60241,2.11437 z"
1780
+ style="fill:url(#linearGradient10272);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient11988);stroke-width:3.65714145;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1781
+ <path
1782
+ inkscape:connector-curvature="0"
1783
+ sodipodi:nodetypes="cc"
1784
+ id="path1677"
1785
+ d="m 61.52691,138.69569 c 11.20432,-2.65946 64.84662,-3.65287 77.88777,-1.37143"
1786
+ style="fill:none;stroke:url(#linearGradient11986);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1787
+ </g>
1788
+ <g
1789
+ id="BlackQueen">
1790
+ <rect
1791
+ y="0"
1792
+ x="200"
1793
+ height="200"
1794
+ width="200"
1795
+ id="rect8054-8"
1796
+ style="fill:none;stroke:none" />
1797
+ <path
1798
+ inkscape:connector-curvature="0"
1799
+ sodipodi:nodetypes="ccsssc"
1800
+ id="path1345-7"
1801
+ d="m 332.2,146.5381 c -9.22143,4.84781 -18.44286,10.66073 -27.66429,12.12142 -1.20575,2.78363 -1.87857,5.86232 -1.87857,9.1 0,12.44267 9.88993,22.54287 22.07857,22.54286 12.18865,0 22.08572,-10.10019 22.08572,-22.54286 0,-9.76943 -6.10146,-18.09553 -14.62143,-21.22142 z"
1802
+ style="opacity:0.98999999;fill:url(#linearGradient2229-2);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient11984);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
1803
+ <path
1804
+ inkscape:connector-curvature="0"
1805
+ sodipodi:nodetypes="cssscc"
1806
+ id="path5795-5"
1807
+ d="m 271.3,147.75952 c -8.55654,3.1059 -14.69286,11.4467 -14.69286,21.24286 0,12.44267 9.89707,22.54285 22.08572,22.54286 12.18864,0 22.07857,-10.10019 22.07857,-22.54286 0,-3.77759 -0.91754,-7.33584 -2.52857,-10.46428 -10.90735,-3.11126 -18.81742,-6.97184 -26.94286,-10.77858 z"
1808
+ style="opacity:0.98999999;fill:url(#linearGradient5799-3);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient11982);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
1809
+ <path
1810
+ transform="matrix(0.19281646,0,0,0.19721851,249.05328,98.82089)"
1811
+ d="m 422.05436,340.25049 a 23.201941,22.097088 0 1 1 -46.40388,0 23.201941,22.097088 0 1 1 46.40388,0 z"
1812
+ sodipodi:ry="22.097088"
1813
+ sodipodi:rx="23.201941"
1814
+ sodipodi:cy="340.25049"
1815
+ sodipodi:cx="398.85242"
1816
+ id="path2231-6"
1817
+ style="opacity:0.98999999;fill:url(#linearGradient12924);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient11980);stroke-width:18.75409126;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
1818
+ sodipodi:type="arc" />
1819
+ <path
1820
+ sodipodi:type="arc"
1821
+ style="opacity:0.98999999;fill:url(#linearGradient12926);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient11978);stroke-width:18.75409126;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
1822
+ id="path5797-0"
1823
+ sodipodi:cx="398.85242"
1824
+ sodipodi:cy="340.25049"
1825
+ sodipodi:rx="23.201941"
1826
+ sodipodi:ry="22.097088"
1827
+ d="m 422.05436,340.25049 a 23.201941,22.097088 0 1 1 -46.40388,0 23.201941,22.097088 0 1 1 46.40388,0 z"
1828
+ transform="matrix(0.19281646,0,0,0.19721851,204.81647,99.58683)" />
1829
+ <path
1830
+ inkscape:connector-curvature="0"
1831
+ sodipodi:nodetypes="cccccccccc"
1832
+ id="path8557"
1833
+ d="m 226.36995,65.4785 c 8.89009,16.18909 24.52299,42.66542 43.50902,48.06831 -11.02943,-22.21749 -5.11876,-54.99511 -0.67042,-77.14817 9.18162,23.17249 11.71395,46.26792 27.23771,63.51566 9.25699,-11.22922 21.27353,-39.82633 25.07317,-64.20137 10.00545,24.42113 7.84316,51.10973 5.35152,74.60139 19.93739,-8.59448 32.40293,-24.51091 44.47339,-45.55307 4.40199,48.66775 -25.81728,65.85106 -28.9306,85.25729 -27.43048,-2.53737 -54.86096,-2.83085 -82.29144,0.71725 0.0797,-17.13655 -39.27803,-22.67846 -33.75235,-85.25729 z"
1834
+ style="fill:url(#linearGradient10007);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient11976);stroke-width:3.65714264;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1835
+ <path
1836
+ transform="matrix(0.26799566,0,0,0.2426592,202.66185,3.9653504)"
1837
+ d="m 133.33333,245.83333 a 46.666668,50.833332 0 1 1 -93.333334,0 46.666668,50.833332 0 1 1 93.333334,0 z"
1838
+ sodipodi:ry="50.833332"
1839
+ sodipodi:rx="46.666668"
1840
+ sodipodi:cy="245.83333"
1841
+ sodipodi:cx="86.666664"
1842
+ id="path9446"
1843
+ style="opacity:0.98999999;fill:url(#linearGradient10327);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient11974);stroke-width:14.34101582;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
1844
+ sodipodi:type="arc" />
1845
+ <path
1846
+ inkscape:connector-curvature="0"
1847
+ sodipodi:nodetypes="cc"
1848
+ id="path1677-4"
1849
+ d="m 265.90476,137.90476 c 11.20433,-2.65946 58.16711,-4.38815 70.85715,0"
1850
+ style="fill:none;stroke:url(#linearGradient11972);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1851
+ <path
1852
+ sodipodi:type="arc"
1853
+ style="opacity:0.98999999;fill:url(#linearGradient1334);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient11970);stroke-width:14.34101582;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
1854
+ id="path1332"
1855
+ sodipodi:cx="86.666664"
1856
+ sodipodi:cy="245.83333"
1857
+ sodipodi:rx="46.666668"
1858
+ sodipodi:ry="50.833332"
1859
+ d="m 133.33333,245.83333 a 46.666668,50.833332 0 1 1 -93.333334,0 46.666668,50.833332 0 1 1 93.333334,0 z"
1860
+ transform="matrix(0.26799566,0,0,0.2426592,246.47138,-22.32037)" />
1861
+ <path
1862
+ transform="matrix(0.26799566,0,0,0.2426592,299.04281,-21.93942)"
1863
+ d="m 133.33333,245.83333 a 46.666668,50.833332 0 1 1 -93.333334,0 46.666668,50.833332 0 1 1 93.333334,0 z"
1864
+ sodipodi:ry="50.833332"
1865
+ sodipodi:rx="46.666668"
1866
+ sodipodi:cy="245.83333"
1867
+ sodipodi:cx="86.666664"
1868
+ id="path1336"
1869
+ style="opacity:0.98999999;fill:url(#linearGradient1338);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient11968);stroke-width:14.34101582;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
1870
+ sodipodi:type="arc" />
1871
+ <path
1872
+ sodipodi:type="arc"
1873
+ style="opacity:0.98999999;fill:url(#linearGradient1342);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient11966);stroke-width:14.34100723;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
1874
+ id="path1340"
1875
+ sodipodi:cx="86.666664"
1876
+ sodipodi:cy="245.83333"
1877
+ sodipodi:rx="46.666668"
1878
+ sodipodi:ry="50.833332"
1879
+ d="m 133.33333,245.83333 a 46.666668,50.833332 0 1 1 -93.333334,0 46.666668,50.833332 0 1 1 93.333334,0 z"
1880
+ transform="matrix(0.26799566,0,0,0.2426592,348.56663,4.3462904)" />
1881
+ </g>
1882
+ <g
1883
+ id="BlackRook">
1884
+ <rect
1885
+ y="0"
1886
+ x="400"
1887
+ height="200"
1888
+ width="200"
1889
+ id="rect8054-6"
1890
+ style="fill:none;stroke:none" />
1891
+ <path
1892
+ inkscape:connector-curvature="0"
1893
+ sodipodi:nodetypes="ccccc"
1894
+ id="rect2553"
1895
+ d="m 447.33354,45.91536 c -0.18143,44.19145 3.02331,90.14887 0,133.61429 l 108.72706,0 c -4.73457,-43.04372 -0.77545,-90.61513 0,-133.61429 l -108.72706,0 z"
1896
+ style="fill:url(#linearGradient4315);fill-opacity:1;stroke:url(#linearGradient11964);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1897
+ <path
1898
+ inkscape:connector-curvature="0"
1899
+ sodipodi:nodetypes="csccscc"
1900
+ id="path1327"
1901
+ d="m 515.56314,73.68795 c -5.96443,4.86603 -11.04316,10.94085 -11.04316,20.2616 0,8.28746 2.61864,10.23678 7.49838,15.20092 l 28.98782,0.68571 c 4.87973,-4.96413 6.612,-10.70821 6.61199,-18.99567 0,-9.32074 -2.55094,-17.54237 -8.51537,-22.4084 l -23.53966,5.25584 z"
1902
+ style="fill:url(#linearGradient2440);fill-opacity:1;stroke:url(#linearGradient11962);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1903
+ <path
1904
+ inkscape:connector-curvature="0"
1905
+ sodipodi:nodetypes="csccscc"
1906
+ style="fill:url(#linearGradient2446);fill-opacity:1;stroke:url(#linearGradient11960);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
1907
+ d="m 463.27949,64.97363 c -5.96443,5.04197 -8.74394,13.56087 -8.74394,23.21861 0,8.58711 1.95409,14.59941 6.83384,19.74303 l 28.98782,-0.21799 c 4.87973,-5.14361 7.98342,-10.93793 7.98342,-19.52504 -10e-6,-9.65774 -3.99921,-11.44711 -9.96364,-16.48908 l -25.0975,-6.72953 z"
1908
+ id="path2442" />
1909
+ <path
1910
+ inkscape:connector-curvature="0"
1911
+ sodipodi:nodetypes="cccccccccc"
1912
+ id="rect4830"
1913
+ d="m 434.38095,170.07089 c -4.30163,0.11599 -7.71428,2.62789 -7.71428,5.72883 l 0,7.0068 c 0,3.17536 3.58157,5.72882 8.02857,5.72882 41.29256,0.94589 83.15949,1.55429 128.70714,0 4.447,0 8.02858,-2.55346 8.02858,-5.72882 l 0,-7.0068 c 0,-3.17536 -3.58159,-5.72883 -8.02858,-5.72883 -42.23549,1.76331 -85.03648,2.03139 -128.70714,0 -0.10423,0 -0.21105,-0.003 -0.31429,0 z"
1914
+ style="opacity:0.98999999;fill:url(#linearGradient5753);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient11958);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
1915
+ <path
1916
+ inkscape:connector-curvature="0"
1917
+ sodipodi:nodetypes="ccccccssssssssccccccccccccc"
1918
+ id="rect5730"
1919
+ d="m 464.68571,23.47143 0,12.23571 c 0,4.02491 -3.4069,7.26429 -7.64285,7.26429 l -3.75715,0 c -4.23595,0 -7.65,-3.23938 -7.65,-7.26429 l 0,-15.48571 C 439.31709,20.44317 435.12086,20.73703 434.1,21.1 c -5.79532,2.06054 -11.37676,1.17453 -12.87857,7.71429 -1.73878,7.57165 -2.09231,17.46991 0,24.96428 1.12733,4.03795 5.75512,8.05954 12.87857,7.71429 41.87926,-2.02974 82.86851,-1.38204 132.1,0 7.12986,0.20236 11.75125,-3.67634 12.87858,-7.71429 2.09231,-7.49437 2.09231,-17.46991 0,-24.96428 C 577.95125,24.77633 573.25742,22.02762 566.2,21.1 c -2.2398,-0.2944 -7.33261,-0.55307 -14.27857,-0.76429 l 0,16.51429 c 0,4.0249 -3.40691,7.26429 -7.64286,7.26429 l -3.75714,0 c -4.23595,0 -7.64286,-3.23939 -7.64286,-7.26429 l 0,-13.26429 c -7.81126,-0.11767 -16.39492,-1.11307 -25.14286,-1.15714 l 0,12.9 c 0,4.02491 -3.41404,7.26429 -7.65,7.26429 l -3.75714,0 c -4.23595,-1e-5 -7.64286,-3.23939 -7.64286,-7.26429 l 0,-12.93571 c -0.038,6e-5 -17.13181,0.99128 -24,1.07857 z"
1920
+ style="opacity:0.98999999;fill:url(#linearGradient13034);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient11956);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
1921
+ <path
1922
+ sodipodi:type="arc"
1923
+ style="opacity:0.98999999;fill:url(#linearGradient12922);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient11954);stroke-width:16.62813377;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
1924
+ id="path5797-01"
1925
+ sodipodi:cx="398.85242"
1926
+ sodipodi:cy="340.25049"
1927
+ sodipodi:rx="23.201941"
1928
+ sodipodi:ry="22.097088"
1929
+ d="m 422.05436,340.25049 a 23.201941,22.097088 0 1 1 -46.40388,0 23.201941,22.097088 0 1 1 46.40388,0 z"
1930
+ transform="matrix(0.23211817,0,0,0.2083952,385.53051,24.61872)" />
1931
+ <path
1932
+ transform="matrix(0.23211817,0,0,0.2083952,430.00976,26.69239)"
1933
+ d="m 422.05436,340.25049 a 23.201941,22.097088 0 1 1 -46.40388,0 23.201941,22.097088 0 1 1 46.40388,0 z"
1934
+ sodipodi:ry="22.097088"
1935
+ sodipodi:rx="23.201941"
1936
+ sodipodi:cy="340.25049"
1937
+ sodipodi:cx="398.85242"
1938
+ id="path5758"
1939
+ style="opacity:0.98999999;fill:url(#linearGradient12920);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient11952);stroke-width:16.62813377;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
1940
+ sodipodi:type="arc" />
1941
+ <path
1942
+ inkscape:connector-curvature="0"
1943
+ sodipodi:nodetypes="cssc"
1944
+ id="path5000"
1945
+ d="m 482.64078,171.44635 c 0,-4.30998 -0.87895,-16.78517 1.07749,-31.24738 2.30422,-17.03293 33.49555,-14.27676 34.47988,0 0.61928,8.98213 0,30.16989 0,30.16989"
1946
+ style="fill:none;stroke:url(#linearGradient11950);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1947
+ <path
1948
+ inkscape:connector-curvature="0"
1949
+ sodipodi:nodetypes="csc"
1950
+ id="path5903"
1951
+ d="m 485.61354,135.12708 c 8.61997,-9.33829 24.71641,-7.32614 25.85991,7.54247 0.8285,10.77273 -0.0654,28.0149 -0.0654,28.0149"
1952
+ style="fill:none;stroke:url(#linearGradient11948);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1953
+ </g>
1954
+ <g
1955
+ id="BlackBishop">
1956
+ <rect
1957
+ y="0"
1958
+ x="600"
1959
+ height="200"
1960
+ width="200"
1961
+ id="rect8054-60"
1962
+ style="fill:none;stroke:none" />
1963
+ <path
1964
+ inkscape:connector-curvature="0"
1965
+ sodipodi:nodetypes="ccsssc"
1966
+ id="path1345-8"
1967
+ d="m 727.88392,153.20633 c -8.20149,4.15374 -15.84708,9.0972 -25.83086,10.71902 -1.12584,2.46157 -1.75407,5.18406 -1.75407,8.04716 0,11.00309 9.23448,19.93473 20.61533,19.93472 11.38086,0 20.62201,-8.93163 20.62201,-19.93472 0,-8.63914 -5.69709,-16.00194 -13.65241,-18.76618 z"
1968
+ style="opacity:0.98999999;fill:url(#linearGradient4955);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient11946);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
1969
+ <path
1970
+ inkscape:connector-curvature="0"
1971
+ sodipodi:nodetypes="cssscc"
1972
+ id="path5795-8"
1973
+ d="m 671.72564,154.06004 c -7.98947,2.74655 -13.71911,10.12235 -13.71911,18.78512 0,11.00309 9.24115,19.93472 20.62201,19.93472 11.38086,0 20.61534,-8.93162 20.61533,-19.93472 0,-3.34054 -0.85672,-6.4871 -2.36099,-9.2536 -9.08998,-1.1763 -16.94691,-5.85597 -25.15724,-9.53152 z"
1974
+ style="opacity:0.98999999;fill:url(#linearGradient4957);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient11944);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
1975
+ <path
1976
+ transform="matrix(0.18638903,0,0,0.18055314,643.65253,113.88438)"
1977
+ d="m 422.05436,340.25049 a 23.201941,22.097088 0 1 1 -46.40388,0 23.201941,22.097088 0 1 1 46.40388,0 z"
1978
+ sodipodi:ry="22.097088"
1979
+ sodipodi:rx="23.201941"
1980
+ sodipodi:cy="340.25049"
1981
+ sodipodi:cx="398.85242"
1982
+ id="path2231-7"
1983
+ style="opacity:0.98999999;fill:url(#linearGradient12916);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient11942);stroke-width:19.93559647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
1984
+ sodipodi:type="arc" />
1985
+ <path
1986
+ sodipodi:type="arc"
1987
+ style="opacity:0.98999999;fill:url(#linearGradient12918);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient11940);stroke-width:19.93559647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
1988
+ id="path5797-08"
1989
+ sodipodi:cx="398.85242"
1990
+ sodipodi:cy="340.25049"
1991
+ sodipodi:rx="23.201941"
1992
+ sodipodi:ry="22.097088"
1993
+ d="m 422.05436,340.25049 a 23.201941,22.097088 0 1 1 -46.40388,0 23.201941,22.097088 0 1 1 46.40388,0 z"
1994
+ transform="matrix(0.18638903,0,0,0.18055314,606.91218,113.84164)" />
1995
+ <path
1996
+ inkscape:connector-curvature="0"
1997
+ style="fill:url(#linearGradient7571);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient11938);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
1998
+ d="m 663.24042,158.2448 c -4.32832,-33.19523 -11.03162,-33.41083 29.74886,-86.820912 56.85619,39.599872 39.59811,52.792502 43.26641,86.599542 -34.75638,-4.02329 -43.38045,-3.25901 -73.01527,0.22137 z"
1999
+ id="path7569"
2000
+ sodipodi:nodetypes="cccc" />
2001
+ <path
2002
+ inkscape:connector-curvature="0"
2003
+ style="fill:url(#linearGradient7567);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient11936);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
2004
+ d="m 742.09672,134.22516 c 18.03946,-44.106302 10.0488,-83.600362 -20.84997,-120.890632 -19.62859,14.16379 -56.32329,71.92373 -58.82886,109.421212 32.46933,-6.375 47.48974,3.46289 79.67883,11.46942 z"
2005
+ id="path7565"
2006
+ sodipodi:nodetypes="cccc" />
2007
+ <path
2008
+ inkscape:connector-curvature="0"
2009
+ sodipodi:nodetypes="cccc"
2010
+ id="path5801"
2011
+ d="m 658.25389,142.01327 c -24.83891,-31.02279 -6.77109,-89.848102 21.88388,-130.937412 46.06812,42.32989 71.84082,88.957462 60.87191,130.867352 -32.46933,-6.37501 -50.56669,-7.93647 -82.75579,0.0701 z"
2012
+ style="fill:url(#linearGradient3939);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient11934);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2013
+ <path
2014
+ inkscape:connector-curvature="0"
2015
+ id="rect3643"
2016
+ d="m 689.17175,72.866318 c -3.58114,-0.0996 -6.69577,3.38392 -6.41926,6.93938 -0.0397,2.04707 -0.12878,4.09273 -0.20606,6.13859 -2.40102,-0.14842 -4.84229,-0.70616 -7.23352,-0.25666 -3.16944,0.84498 -5.51964,4.33957 -4.73519,7.62056 0.58687,3.00552 3.5123,5.31184 6.55082,5.1941 2.10208,0.10978 4.19842,0.3052 6.29487,0.49103 0.52593,5.262162 1.52923,10.472782 2.8562,15.586482 0.535,3.36553 3.96178,6.09096 7.36094,5.47769 3.44578,-0.4723 6.1244,-4.11509 5.42246,-7.57615 -0.30071,-1.72934 -0.91863,-3.38696 -1.2047,-5.12139 -0.6242,-2.88972 -1.1561,-5.80729 -1.44783,-8.747722 2.56906,-0.25709 5.28058,-0.0337 7.6892,-1.11677 2.73432,-1.40521 4.32181,-4.92376 3.20497,-7.87825 -0.96465,-2.86719 -4.0515,-4.75602 -7.02659,-4.39224 -1.62375,0.064 -3.23738,0.26871 -4.85718,0.38888 0.0376,-0.76856 -0.0474,-1.55729 0.0177,-2.33466 0.032,-1.67886 0.2734,-3.36467 0.15846,-5.0397 -0.59813,-2.96265 -3.34244,-5.49647 -6.42528,-5.37317 z"
2017
+ style="opacity:0.98999999;fill:url(#linearGradient3723);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient11932);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
2018
+ <path
2019
+ inkscape:connector-curvature="0"
2020
+ sodipodi:nodetypes="cc"
2021
+ id="path3941"
2022
+ d="m 692.69856,143.37637 c -2.80152,7.34654 13.79171,9.38918 12.31532,0.11128"
2023
+ style="fill:none;stroke:url(#linearGradient11930);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2024
+ </g>
2025
+ <g
2026
+ id="BlackKnight">
2027
+ <rect
2028
+ y="0"
2029
+ x="800"
2030
+ height="200"
2031
+ width="200"
2032
+ id="rect8054-9"
2033
+ style="fill:none;stroke:none" />
2034
+ <path
2035
+ inkscape:connector-curvature="0"
2036
+ sodipodi:nodetypes="ccssscccccsc"
2037
+ id="path4618"
2038
+ d="m 886.00254,20.22922 c -0.38571,26.59625 0.97294,16.55231 -15.81037,4.27446 2.59012,17.34932 0.83202,17.92092 -3.65158,25.3449 -2.45377,4.06296 -4.6162,16.85608 -6.15158,19.67596 -9.30365,17.08709 -30.67072,39.3941 -30.63386,46.66632 0.0467,9.20542 10.99488,17.4454 21.00958,7.71103 -9.36939,13.71566 18.91836,-0.0622 30.77285,-8.52211 15.69174,9.65995 37.61437,-0.9107 38.02187,-16.4317 7.14077,35.10764 -59.5404,41.20523 -63.10231,86.74289 32.91102,8.13038 80.59136,4.38303 107.66824,2.96523 15.48476,-44.89767 16.91374,-119.94615 -55.07284,-148.08412 -9.78397,-3.82434 -13.89416,-13.66176 -23.05,-20.34286 z"
2039
+ style="fill:url(#linearGradient2513);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient11928);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2040
+ <path
2041
+ inkscape:connector-curvature="0"
2042
+ sodipodi:nodetypes="ccsssc"
2043
+ id="path1345-9"
2044
+ d="m 896.25,51.08571 c -12.73179,7.55869 -18.57687,8.57581 -26.35714,10.52858 -1.15934,2.60544 -1.80715,5.49638 -1.80715,8.54285 0,11.42612 9.07857,20.7 20.27143,20.7 11.19286,0 20.27857,-9.27387 20.27857,-20.7 0,-8.56959 -5.10883,-15.92769 -12.38571,-19.07143 z"
2045
+ style="opacity:0.98999999;fill:url(#linearGradient2229-6);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient11926);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
2046
+ <path
2047
+ transform="matrix(0.17706354,0,0,0.18110606,813.30416,12.78792)"
2048
+ d="m 422.05436,340.25049 a 23.201941,22.097088 0 1 1 -46.40388,0 23.201941,22.097088 0 1 1 46.40388,0 z"
2049
+ sodipodi:ry="22.097088"
2050
+ sodipodi:rx="23.201941"
2051
+ sodipodi:cy="340.25049"
2052
+ sodipodi:cx="398.85242"
2053
+ id="path2231-9"
2054
+ style="opacity:0.98999999;fill:url(#linearGradient12914);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient11924);stroke-width:20.42259026;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
2055
+ sodipodi:type="arc" />
2056
+ </g>
2057
+ <g
2058
+ id="BlackPawn">
2059
+ <rect
2060
+ y="0"
2061
+ x="1000"
2062
+ height="200"
2063
+ width="200"
2064
+ id="rect8054-64"
2065
+ style="fill:none;stroke:none" />
2066
+ <path
2067
+ inkscape:connector-curvature="0"
2068
+ sodipodi:nodetypes="cssscc"
2069
+ style="opacity:0.98999999;fill:url(#linearGradient5901);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient11922);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
2070
+ d="m 1136.0493,138.83497 c 6.7912,3.94809 11.3734,11.4031 11.3734,19.94666 0,12.6633 -10.0667,22.94338 -22.4715,22.94338 -12.4048,0 -22.4714,-10.28008 -22.4714,-22.94338 0,-3.92954 0.9663,-7.62786 2.6742,-10.86212 10.2984,-0.53002 18.2239,-2.15625 30.8953,-9.08454 z"
2071
+ id="path5899" />
2072
+ <path
2073
+ transform="matrix(0.19623543,0,0,0.20071543,1043.3034,91.95029)"
2074
+ d="m 422.05436,340.25049 a 23.201941,22.097088 0 1 1 -46.40388,0 23.201941,22.097088 0 1 1 46.40388,0 z"
2075
+ sodipodi:ry="22.097088"
2076
+ sodipodi:rx="23.201941"
2077
+ sodipodi:cy="340.25049"
2078
+ sodipodi:cx="398.85242"
2079
+ id="path2231-1"
2080
+ style="opacity:0.98999999;fill:url(#linearGradient12910);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient11920);stroke-width:18.42734718;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
2081
+ sodipodi:type="arc" />
2082
+ <path
2083
+ inkscape:connector-curvature="0"
2084
+ sodipodi:nodetypes="cssscc"
2085
+ id="path5795-50"
2086
+ d="m 1066.3935,138.83497 c -6.7912,3.94809 -11.3734,11.4031 -11.3734,19.94666 0,12.6633 10.0667,22.94338 22.4714,22.94338 12.4048,0 22.4715,-10.28008 22.4715,-22.94338 0,-3.92954 -0.9664,-7.62786 -2.6742,-10.86212 -12.1819,-1.14471 -21.8501,-4.8032 -30.8953,-9.08454 z"
2087
+ style="opacity:0.98999999;fill:url(#linearGradient5897);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient11918);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
2088
+ <path
2089
+ sodipodi:type="arc"
2090
+ style="opacity:0.98999999;fill:url(#linearGradient12912);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient11916);stroke-width:18.42734718;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
2091
+ id="path5797-7"
2092
+ sodipodi:cx="398.85242"
2093
+ sodipodi:cy="340.25049"
2094
+ sodipodi:rx="23.201941"
2095
+ sodipodi:ry="22.097088"
2096
+ d="m 422.05436,340.25049 a 23.201941,22.097088 0 1 1 -46.40388,0 23.201941,22.097088 0 1 1 46.40388,0 z"
2097
+ transform="matrix(0.19623543,0,0,0.20071543,1001.4702,90.88407)" />
2098
+ <path
2099
+ inkscape:connector-curvature="0"
2100
+ sodipodi:nodetypes="ccccc"
2101
+ id="path1340-6"
2102
+ d="m 1099.3582,49.15055 c -4.8345,10.8381 -11.3897,21.7842 -19.0847,29.76187 l 19.7867,17.10921 19.3949,-16.70119 c -10.4885,-8.31423 -15.2918,-19.01393 -20.0969,-30.16989 z"
2103
+ style="fill:url(#linearGradient2243);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient11914);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2104
+ <path
2105
+ transform="matrix(0.19746697,0,0,0.19746697,1021.5679,12.77037)"
2106
+ d="m 461.97643,422.45166 a 65.996635,61.282589 0 1 1 -131.99327,0 65.996635,61.282589 0 1 1 131.99327,0 z"
2107
+ sodipodi:ry="61.282589"
2108
+ sodipodi:rx="65.996635"
2109
+ sodipodi:cy="422.45166"
2110
+ sodipodi:cx="395.9798"
2111
+ id="path1331"
2112
+ style="fill:url(#linearGradient2226);fill-opacity:1;stroke:url(#linearGradient11912);stroke-width:18.52027702;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
2113
+ sodipodi:type="arc" />
2114
+ <path
2115
+ inkscape:connector-curvature="0"
2116
+ sodipodi:nodetypes="ccc"
2117
+ id="path4352"
2118
+ d="m 1050.4674,150.22972 c -1.2181,-67.80712 98.1998,-71.75183 102.819,-0.9225 -17.1649,-14.45238 -88.2355,-15.60088 -102.819,0.9225 z"
2119
+ style="fill:url(#linearGradient5892);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient11910);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
2120
+ </g>
2121
+ </g>
2122
+ <g
2123
+ inkscape:groupmode="layer"
2124
+ id="WhitePieces"
2125
+ inkscape:label="WhitePieces">
2126
+ <g
2127
+ id="WhiteKing">
2128
+ <rect
2129
+ style="fill:none;stroke:none"
2130
+ id="rect11642"
2131
+ width="200"
2132
+ height="200"
2133
+ x="0"
2134
+ y="200" />
2135
+ <path
2136
+ sodipodi:type="arc"
2137
+ style="opacity:0.98999999;fill:url(#linearGradient11746);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient12874);stroke-width:10.56354809;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
2138
+ id="path11644"
2139
+ sodipodi:cx="378.96503"
2140
+ sodipodi:cy="338.0408"
2141
+ sodipodi:rx="62.976696"
2142
+ sodipodi:ry="70.710678"
2143
+ d="m 441.94172,338.0408 a 62.976696,70.710678 0 1 1 -125.95339,0 62.976696,70.710678 0 1 1 125.95339,0 z"
2144
+ transform="matrix(0.36076343,0,0,0.33223223,-12.13919,257.38034)" />
2145
+ <path
2146
+ transform="matrix(0.36076343,0,0,0.33223223,-59.51915,258.67741)"
2147
+ d="m 441.94172,338.0408 a 62.976696,70.710678 0 1 1 -125.95339,0 62.976696,70.710678 0 1 1 125.95339,0 z"
2148
+ sodipodi:ry="70.710678"
2149
+ sodipodi:rx="62.976696"
2150
+ sodipodi:cy="338.0408"
2151
+ sodipodi:cx="378.96503"
2152
+ id="path11646"
2153
+ style="opacity:0.98999999;fill:url(#linearGradient11750);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient12872);stroke-width:10.56354809;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
2154
+ sodipodi:type="arc" />
2155
+ <path
2156
+ sodipodi:type="arc"
2157
+ style="opacity:0.98999999;fill:url(#linearGradient12900);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient12870);stroke-width:18.11034966;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
2158
+ id="path11648"
2159
+ sodipodi:cx="398.85242"
2160
+ sodipodi:cy="340.25049"
2161
+ sodipodi:rx="23.201941"
2162
+ sodipodi:ry="22.097088"
2163
+ d="m 422.05436,340.25049 a 23.201941,22.097088 0 1 1 -46.40388,0 23.201941,22.097088 0 1 1 46.40388,0 z"
2164
+ transform="matrix(0.19839474,0,0,0.20554171,47.08745,305.5604)" />
2165
+ <path
2166
+ transform="matrix(0.19839474,0,0,0.20554171,-1.24412,306.27574)"
2167
+ d="m 422.05436,340.25049 a 23.201941,22.097088 0 1 1 -46.40388,0 23.201941,22.097088 0 1 1 46.40388,0 z"
2168
+ sodipodi:ry="22.097088"
2169
+ sodipodi:rx="23.201941"
2170
+ sodipodi:cy="340.25049"
2171
+ sodipodi:cx="398.85242"
2172
+ id="path11650"
2173
+ style="opacity:0.98999999;fill:url(#linearGradient12902);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient12868);stroke-width:18.11034966;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
2174
+ sodipodi:type="arc" />
2175
+ <path
2176
+ style="fill:url(#linearGradient11758);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient12866);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
2177
+ d="m 94.61678,214.17295 c -9.10736,0.14873 -12.3162,10.35883 -5.21566,24.62641 -12.42017,-2.9652 -27.12405,-0.88262 -27.03993,8.68718 0.07,8.21 12.82495,8.80813 27.34311,8.30861 1.88215,6.61613 3.44275,15.21918 6.7926,23.34139 l 5.62143,0.35 c 2.24504,-8.41815 3.13602,-18.07207 3.85344,-24.97194 15.28766,1.29487 27.1942,-0.36964 26.83942,-9.39234 -0.37202,-9.46077 -16.11072,-10.69615 -28.61085,-6.72832 1.34702,-12.2934 -1.17204,-24.35431 -9.58356,-24.22099 z"
2178
+ id="path11652"
2179
+ sodipodi:nodetypes="ccsccccscs"
2180
+ inkscape:connector-curvature="0" />
2181
+ <path
2182
+ transform="matrix(0.31083566,0,0,0.30988594,-17.66356,188.99041)"
2183
+ d="m 453.12416,338.0408 a 74.159134,70.710678 0 1 1 -148.31827,0 74.159134,70.710678 0 1 1 148.31827,0 z"
2184
+ sodipodi:ry="70.710678"
2185
+ sodipodi:rx="74.159134"
2186
+ sodipodi:cy="338.0408"
2187
+ sodipodi:cx="378.96503"
2188
+ id="path11654"
2189
+ style="opacity:0.98999999;fill:url(#linearGradient11762);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient12864);stroke-width:11.78353214;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
2190
+ sodipodi:type="arc" />
2191
+ <path
2192
+ style="fill:url(#linearGradient11766);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient12862);stroke-width:3.65714145;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
2193
+ d="m 56.07907,351.9819 c 3.26291,-14.3782 -23.66029,-11.50127 -29.64153,-38.17633 -4.78545,-21.3421 5.88153,-38.67172 28.72724,-40.39315 26.55914,-2.00124 45.00011,35.69275 45.00011,35.69275 0,0 15.79519,-31.27416 36.5935,-35.87573 22.62874,-5.00656 42.21046,12.5852 38.65906,36.69851 -3.81315,25.89052 -34.54492,24.15707 -31.73597,39.93958 -31.02747,-2.54882 -59.19786,-0.94423 -87.60241,2.11437 z"
2194
+ id="path11656"
2195
+ sodipodi:nodetypes="csscsscc"
2196
+ inkscape:connector-curvature="0" />
2197
+ <path
2198
+ style="fill:none;stroke:url(#linearGradient12860);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
2199
+ d="m 61.52691,338.69569 c 11.20432,-2.65946 64.84662,-3.65287 77.88777,-1.37143"
2200
+ id="path11658"
2201
+ sodipodi:nodetypes="cc"
2202
+ inkscape:connector-curvature="0" />
2203
+ </g>
2204
+ <g
2205
+ id="WhiteQueen">
2206
+ <rect
2207
+ style="fill:none;stroke:none"
2208
+ id="rect11660"
2209
+ width="200"
2210
+ height="200"
2211
+ x="200"
2212
+ y="200" />
2213
+ <path
2214
+ style="opacity:0.98999999;fill:url(#linearGradient11772);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient12858);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
2215
+ d="m 332.2,346.5381 c -9.22143,4.84781 -18.44286,10.66073 -27.66429,12.12142 -1.20575,2.78363 -1.87857,5.86232 -1.87857,9.1 0,12.44267 9.88993,22.54287 22.07857,22.54286 12.18865,0 22.08572,-10.10019 22.08572,-22.54286 0,-9.76943 -6.10146,-18.09553 -14.62143,-21.22142 z"
2216
+ id="path11662"
2217
+ sodipodi:nodetypes="ccsssc"
2218
+ inkscape:connector-curvature="0" />
2219
+ <path
2220
+ style="opacity:0.98999999;fill:url(#linearGradient11776);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient12856);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
2221
+ d="m 271.3,347.75952 c -8.55654,3.1059 -14.69286,11.4467 -14.69286,21.24286 0,12.44267 9.89707,22.54285 22.08572,22.54286 12.18864,0 22.07857,-10.10019 22.07857,-22.54286 0,-3.77759 -0.91754,-7.33584 -2.52857,-10.46428 -10.90735,-3.11126 -18.81742,-6.97184 -26.94286,-10.77858 z"
2222
+ id="path11664"
2223
+ sodipodi:nodetypes="cssscc"
2224
+ inkscape:connector-curvature="0" />
2225
+ <path
2226
+ sodipodi:type="arc"
2227
+ style="opacity:0.98999999;fill:url(#linearGradient12896);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient12854);stroke-width:18.75409126;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
2228
+ id="path11666"
2229
+ sodipodi:cx="398.85242"
2230
+ sodipodi:cy="340.25049"
2231
+ sodipodi:rx="23.201941"
2232
+ sodipodi:ry="22.097088"
2233
+ d="m 422.05436,340.25049 a 23.201941,22.097088 0 1 1 -46.40388,0 23.201941,22.097088 0 1 1 46.40388,0 z"
2234
+ transform="matrix(0.19281646,0,0,0.19721851,249.05328,298.82089)" />
2235
+ <path
2236
+ transform="matrix(0.19281646,0,0,0.19721851,204.81647,299.58683)"
2237
+ d="m 422.05436,340.25049 a 23.201941,22.097088 0 1 1 -46.40388,0 23.201941,22.097088 0 1 1 46.40388,0 z"
2238
+ sodipodi:ry="22.097088"
2239
+ sodipodi:rx="23.201941"
2240
+ sodipodi:cy="340.25049"
2241
+ sodipodi:cx="398.85242"
2242
+ id="path11668"
2243
+ style="opacity:0.98999999;fill:url(#linearGradient12898);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient12852);stroke-width:18.75409126;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
2244
+ sodipodi:type="arc" />
2245
+ <path
2246
+ style="fill:url(#linearGradient11784);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient12850);stroke-width:3.65714264;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
2247
+ d="m 226.36995,265.4785 c 8.89009,16.18909 24.52299,42.66542 43.50902,48.06831 -11.02943,-22.21749 -5.11876,-54.99511 -0.67042,-77.14817 9.18162,23.17249 11.71395,46.26792 27.23771,63.51566 9.25699,-11.22922 21.27353,-39.82633 25.07317,-64.20137 10.00545,24.42113 7.84316,51.10973 5.35152,74.60139 19.93739,-8.59448 32.40293,-24.51091 44.47339,-45.55307 4.40199,48.66775 -25.81728,65.85106 -28.9306,85.25729 -27.43048,-2.53737 -54.86096,-2.83085 -82.29144,0.71725 0.0797,-17.13655 -39.27803,-22.67846 -33.75235,-85.25729 z"
2248
+ id="path11670"
2249
+ sodipodi:nodetypes="cccccccccc"
2250
+ inkscape:connector-curvature="0" />
2251
+ <path
2252
+ sodipodi:type="arc"
2253
+ style="opacity:0.98999999;fill:url(#linearGradient11788);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient12848);stroke-width:14.34101582;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
2254
+ id="path11672"
2255
+ sodipodi:cx="86.666664"
2256
+ sodipodi:cy="245.83333"
2257
+ sodipodi:rx="46.666668"
2258
+ sodipodi:ry="50.833332"
2259
+ d="m 133.33333,245.83333 a 46.666668,50.833332 0 1 1 -93.333334,0 46.666668,50.833332 0 1 1 93.333334,0 z"
2260
+ transform="matrix(0.26799566,0,0,0.2426592,202.66185,203.96535)" />
2261
+ <path
2262
+ style="fill:none;stroke:url(#linearGradient12846);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
2263
+ d="m 265.90476,337.90476 c 11.20433,-2.65946 58.16711,-4.38815 70.85715,0"
2264
+ id="path11674"
2265
+ sodipodi:nodetypes="cc"
2266
+ inkscape:connector-curvature="0" />
2267
+ <path
2268
+ transform="matrix(0.26799566,0,0,0.2426592,246.47138,177.67963)"
2269
+ d="m 133.33333,245.83333 a 46.666668,50.833332 0 1 1 -93.333334,0 46.666668,50.833332 0 1 1 93.333334,0 z"
2270
+ sodipodi:ry="50.833332"
2271
+ sodipodi:rx="46.666668"
2272
+ sodipodi:cy="245.83333"
2273
+ sodipodi:cx="86.666664"
2274
+ id="path11676"
2275
+ style="opacity:0.98999999;fill:url(#linearGradient11794);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient12844);stroke-width:14.34101582;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
2276
+ sodipodi:type="arc" />
2277
+ <path
2278
+ sodipodi:type="arc"
2279
+ style="opacity:0.98999999;fill:url(#linearGradient11798);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient12842);stroke-width:14.34101582;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
2280
+ id="path11678"
2281
+ sodipodi:cx="86.666664"
2282
+ sodipodi:cy="245.83333"
2283
+ sodipodi:rx="46.666668"
2284
+ sodipodi:ry="50.833332"
2285
+ d="m 133.33333,245.83333 a 46.666668,50.833332 0 1 1 -93.333334,0 46.666668,50.833332 0 1 1 93.333334,0 z"
2286
+ transform="matrix(0.26799566,0,0,0.2426592,299.04281,178.06058)" />
2287
+ <path
2288
+ transform="matrix(0.26799566,0,0,0.2426592,348.56663,204.34629)"
2289
+ d="m 133.33333,245.83333 a 46.666668,50.833332 0 1 1 -93.333334,0 46.666668,50.833332 0 1 1 93.333334,0 z"
2290
+ sodipodi:ry="50.833332"
2291
+ sodipodi:rx="46.666668"
2292
+ sodipodi:cy="245.83333"
2293
+ sodipodi:cx="86.666664"
2294
+ id="path11680"
2295
+ style="opacity:0.98999999;fill:url(#linearGradient11802);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient12840);stroke-width:14.34100723;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
2296
+ sodipodi:type="arc" />
2297
+ </g>
2298
+ <g
2299
+ id="WhiteRook">
2300
+ <rect
2301
+ style="fill:none;stroke:none"
2302
+ id="rect11682"
2303
+ width="200"
2304
+ height="200"
2305
+ x="400"
2306
+ y="200" />
2307
+ <path
2308
+ style="fill:url(#linearGradient11806);fill-opacity:1;stroke:url(#linearGradient12838);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
2309
+ d="m 447.33354,245.91536 c -0.18143,44.19145 3.02331,90.14887 0,133.61429 l 108.72706,0 c -4.73457,-43.04372 -0.77545,-90.61513 0,-133.61429 l -108.72706,0 z"
2310
+ id="path11684"
2311
+ sodipodi:nodetypes="ccccc"
2312
+ inkscape:connector-curvature="0" />
2313
+ <path
2314
+ style="fill:url(#linearGradient11810);fill-opacity:1;stroke:url(#linearGradient12836);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
2315
+ d="m 515.56314,273.68795 c -5.96443,4.86603 -11.04316,10.94085 -11.04316,20.2616 0,8.28746 2.61864,10.23678 7.49838,15.20092 l 28.98782,0.68571 c 4.87973,-4.96413 6.612,-10.70821 6.61199,-18.99567 0,-9.32074 -2.55094,-17.54237 -8.51537,-22.4084 l -23.53966,5.25584 z"
2316
+ id="path11686"
2317
+ sodipodi:nodetypes="csccscc"
2318
+ inkscape:connector-curvature="0" />
2319
+ <path
2320
+ id="path11688"
2321
+ d="m 463.27949,264.97363 c -5.96443,5.04197 -8.74394,13.56087 -8.74394,23.21861 0,8.58711 1.95409,14.59941 6.83384,19.74303 l 28.98782,-0.21799 c 4.87973,-5.14361 7.98342,-10.93793 7.98342,-19.52504 -10e-6,-9.65774 -3.99921,-11.44711 -9.96364,-16.48908 l -25.0975,-6.72953 z"
2322
+ style="fill:url(#linearGradient11814);fill-opacity:1;stroke:url(#linearGradient12834);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
2323
+ sodipodi:nodetypes="csccscc"
2324
+ inkscape:connector-curvature="0" />
2325
+ <path
2326
+ style="opacity:0.98999999;fill:url(#linearGradient11818);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient12832);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
2327
+ d="m 434.38095,370.07089 c -4.30163,0.11599 -7.71428,2.62789 -7.71428,5.72883 l 0,7.0068 c 0,3.17536 3.58157,5.72882 8.02857,5.72882 41.29256,0.94589 83.15949,1.55429 128.70714,0 4.447,0 8.02858,-2.55346 8.02858,-5.72882 l 0,-7.0068 c 0,-3.17536 -3.58159,-5.72883 -8.02858,-5.72883 -42.23549,1.76331 -85.03648,2.03139 -128.70714,0 -0.10423,0 -0.21105,-0.003 -0.31429,0 z"
2328
+ id="path11690"
2329
+ sodipodi:nodetypes="cccccccccc"
2330
+ inkscape:connector-curvature="0" />
2331
+ <path
2332
+ style="opacity:0.98999999;fill:url(#linearGradient11822);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient12830);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
2333
+ d="m 464.68571,223.47143 0,12.23571 c 0,4.02491 -3.4069,7.26429 -7.64285,7.26429 l -3.75715,0 c -4.23595,0 -7.65,-3.23938 -7.65,-7.26429 l 0,-15.48571 c -6.31862,0.22174 -10.51485,0.5156 -11.53571,0.87857 -5.79532,2.06054 -11.37676,1.17453 -12.87857,7.71429 -1.73878,7.57165 -2.09231,17.46991 0,24.96428 1.12733,4.03795 5.75512,8.05954 12.87857,7.71429 41.87926,-2.02974 82.86851,-1.38204 132.1,0 7.12986,0.20236 11.75125,-3.67634 12.87858,-7.71429 2.09231,-7.49437 2.09231,-17.46991 0,-24.96428 -1.12733,-4.03796 -5.82116,-6.78667 -12.87858,-7.71429 -2.2398,-0.2944 -7.33261,-0.55307 -14.27857,-0.76429 l 0,16.51429 c 0,4.0249 -3.40691,7.26429 -7.64286,7.26429 l -3.75714,0 c -4.23595,0 -7.64286,-3.23939 -7.64286,-7.26429 l 0,-13.26429 c -7.81126,-0.11767 -16.39492,-1.11307 -25.14286,-1.15714 l 0,12.9 c 0,4.02491 -3.41404,7.26429 -7.65,7.26429 l -3.75714,0 c -4.23595,-1e-5 -7.64286,-3.23939 -7.64286,-7.26429 l 0,-12.93571 c -0.038,6e-5 -17.13181,0.99128 -24,1.07857 z"
2334
+ id="path11692"
2335
+ sodipodi:nodetypes="ccccccssssssssccccccccccccc"
2336
+ inkscape:connector-curvature="0" />
2337
+ <path
2338
+ transform="matrix(0.23211817,0,0,0.2083952,385.53051,224.61872)"
2339
+ d="m 422.05436,340.25049 a 23.201941,22.097088 0 1 1 -46.40388,0 23.201941,22.097088 0 1 1 46.40388,0 z"
2340
+ sodipodi:ry="22.097088"
2341
+ sodipodi:rx="23.201941"
2342
+ sodipodi:cy="340.25049"
2343
+ sodipodi:cx="398.85242"
2344
+ id="path11694"
2345
+ style="opacity:0.98999999;fill:url(#linearGradient12894);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient12828);stroke-width:16.62813377;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
2346
+ sodipodi:type="arc" />
2347
+ <path
2348
+ sodipodi:type="arc"
2349
+ style="opacity:0.98999999;fill:url(#linearGradient12892);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient12826);stroke-width:16.62813377;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
2350
+ id="path11696"
2351
+ sodipodi:cx="398.85242"
2352
+ sodipodi:cy="340.25049"
2353
+ sodipodi:rx="23.201941"
2354
+ sodipodi:ry="22.097088"
2355
+ d="m 422.05436,340.25049 a 23.201941,22.097088 0 1 1 -46.40388,0 23.201941,22.097088 0 1 1 46.40388,0 z"
2356
+ transform="matrix(0.23211817,0,0,0.2083952,430.00976,226.69239)" />
2357
+ <path
2358
+ style="fill:none;stroke:url(#linearGradient12824);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
2359
+ d="m 482.64078,371.44635 c 0,-4.30998 -0.87895,-16.78517 1.07749,-31.24738 2.30422,-17.03293 33.49555,-14.27676 34.47988,0 0.61928,8.98213 0,30.16989 0,30.16989"
2360
+ id="path11698"
2361
+ sodipodi:nodetypes="cssc"
2362
+ inkscape:connector-curvature="0" />
2363
+ <path
2364
+ style="fill:none;stroke:url(#linearGradient12822);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
2365
+ d="m 485.61354,335.12708 c 8.61997,-9.33829 24.71641,-7.32614 25.85991,7.54247 0.8285,10.77273 -0.0654,28.0149 -0.0654,28.0149"
2366
+ id="path11700"
2367
+ sodipodi:nodetypes="csc"
2368
+ inkscape:connector-curvature="0" />
2369
+ </g>
2370
+ <g
2371
+ id="WhiteKnight">
2372
+ <rect
2373
+ style="fill:none;stroke:none"
2374
+ id="rect11722"
2375
+ width="200"
2376
+ height="200"
2377
+ x="800"
2378
+ y="200" />
2379
+ <path
2380
+ style="fill:url(#linearGradient11864);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient12802);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
2381
+ d="m 886.00254,220.22922 c -0.38571,26.59625 0.97294,16.55231 -15.81037,4.27446 2.59012,17.34932 0.83202,17.92092 -3.65158,25.3449 -2.45377,4.06296 -4.6162,16.85608 -6.15158,19.67596 -9.30365,17.08709 -30.67072,39.3941 -30.63386,46.66632 0.0467,9.20542 10.99488,17.4454 21.00958,7.71103 -9.36939,13.71566 18.91836,-0.0622 30.77285,-8.52211 15.69174,9.65995 37.61437,-0.9107 38.02187,-16.4317 7.14077,35.10764 -59.5404,41.20523 -63.10231,86.74289 32.91102,8.13038 80.59136,4.38303 107.66824,2.96523 15.48476,-44.89767 16.91374,-119.94615 -55.07284,-148.08412 -9.78397,-3.82434 -13.89416,-13.66176 -23.05,-20.34286 z"
2382
+ id="path11724"
2383
+ sodipodi:nodetypes="ccssscccccsc"
2384
+ inkscape:connector-curvature="0" />
2385
+ <path
2386
+ style="opacity:0.98999999;fill:url(#linearGradient11868);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient12800);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
2387
+ d="m 896.25,251.08571 c -12.73179,7.55869 -18.57687,8.57581 -26.35714,10.52858 -1.15934,2.60544 -1.80715,5.49638 -1.80715,8.54285 0,11.42612 9.07857,20.7 20.27143,20.7 11.19286,0 20.27857,-9.27387 20.27857,-20.7 0,-8.56959 -5.10883,-15.92769 -12.38571,-19.07143 z"
2388
+ id="path11726"
2389
+ sodipodi:nodetypes="ccsssc"
2390
+ inkscape:connector-curvature="0" />
2391
+ <path
2392
+ sodipodi:type="arc"
2393
+ style="opacity:0.98999999;fill:url(#linearGradient12886);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient12798);stroke-width:20.42259026;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
2394
+ id="path11728"
2395
+ sodipodi:cx="398.85242"
2396
+ sodipodi:cy="340.25049"
2397
+ sodipodi:rx="23.201941"
2398
+ sodipodi:ry="22.097088"
2399
+ d="m 422.05436,340.25049 a 23.201941,22.097088 0 1 1 -46.40388,0 23.201941,22.097088 0 1 1 46.40388,0 z"
2400
+ transform="matrix(0.17706354,0,0,0.18110606,813.30416,212.78792)" />
2401
+ </g>
2402
+ <g
2403
+ id="WhiteBishop">
2404
+ <rect
2405
+ style="fill:none;stroke:none"
2406
+ id="rect11702"
2407
+ width="200"
2408
+ height="200"
2409
+ x="600"
2410
+ y="200" />
2411
+ <path
2412
+ style="opacity:0.98999999;fill:url(#linearGradient11834);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient12820);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
2413
+ d="m 727.88392,353.20633 c -8.20149,4.15374 -15.84708,9.0972 -25.83086,10.71902 -1.12584,2.46157 -1.75407,5.18406 -1.75407,8.04716 0,11.00309 9.23448,19.93473 20.61533,19.93472 11.38086,0 20.62201,-8.93163 20.62201,-19.93472 0,-8.63914 -5.69709,-16.00194 -13.65241,-18.76618 z"
2414
+ id="path11704"
2415
+ sodipodi:nodetypes="ccsssc"
2416
+ inkscape:connector-curvature="0" />
2417
+ <path
2418
+ style="opacity:0.98999999;fill:url(#linearGradient11838);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient12818);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
2419
+ d="m 671.72564,354.06004 c -7.98947,2.74655 -13.71911,10.12235 -13.71911,18.78512 0,11.00309 9.24115,19.93472 20.62201,19.93472 11.38086,0 20.61534,-8.93162 20.61533,-19.93472 0,-3.34054 -0.85672,-6.4871 -2.36099,-9.2536 -9.08998,-1.1763 -16.94691,-5.85597 -25.15724,-9.53152 z"
2420
+ id="path11706"
2421
+ sodipodi:nodetypes="cssscc"
2422
+ inkscape:connector-curvature="0" />
2423
+ <path
2424
+ sodipodi:type="arc"
2425
+ style="opacity:0.98999999;fill:url(#linearGradient12888);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient12816);stroke-width:19.93559647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
2426
+ id="path11708"
2427
+ sodipodi:cx="398.85242"
2428
+ sodipodi:cy="340.25049"
2429
+ sodipodi:rx="23.201941"
2430
+ sodipodi:ry="22.097088"
2431
+ d="m 422.05436,340.25049 a 23.201941,22.097088 0 1 1 -46.40388,0 23.201941,22.097088 0 1 1 46.40388,0 z"
2432
+ transform="matrix(0.18638903,0,0,0.18055314,643.65253,313.88438)" />
2433
+ <path
2434
+ transform="matrix(0.18638903,0,0,0.18055314,606.91218,313.84164)"
2435
+ d="m 422.05436,340.25049 a 23.201941,22.097088 0 1 1 -46.40388,0 23.201941,22.097088 0 1 1 46.40388,0 z"
2436
+ sodipodi:ry="22.097088"
2437
+ sodipodi:rx="23.201941"
2438
+ sodipodi:cy="340.25049"
2439
+ sodipodi:cx="398.85242"
2440
+ id="path11710"
2441
+ style="opacity:0.98999999;fill:url(#linearGradient12890);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient12814);stroke-width:19.93559647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
2442
+ sodipodi:type="arc" />
2443
+ <path
2444
+ sodipodi:nodetypes="cccc"
2445
+ id="path11712"
2446
+ d="m 663.24042,358.2448 c -4.32832,-33.19523 -11.03162,-33.41083 29.74886,-86.82091 56.85619,39.59987 39.59811,52.7925 43.26641,86.59954 -34.75638,-4.02329 -43.38045,-3.25901 -73.01527,0.22137 z"
2447
+ style="fill:url(#linearGradient11846);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient12812);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
2448
+ inkscape:connector-curvature="0" />
2449
+ <path
2450
+ sodipodi:nodetypes="cccc"
2451
+ id="path11714"
2452
+ d="m 742.09672,334.22516 c 18.03946,-44.1063 10.0488,-83.60036 -20.84997,-120.89063 -19.62859,14.16379 -56.32329,71.92373 -58.82886,109.42121 32.46933,-6.375 47.48974,3.46289 79.67883,11.46942 z"
2453
+ style="fill:url(#linearGradient11850);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient12810);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
2454
+ inkscape:connector-curvature="0" />
2455
+ <path
2456
+ style="fill:url(#linearGradient11854);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient12808);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
2457
+ d="m 658.25389,342.01327 c -24.83891,-31.02279 -6.77109,-89.8481 21.88388,-130.93741 46.06812,42.32989 71.84082,88.95746 60.87191,130.86735 -32.46933,-6.37501 -50.56669,-7.93647 -82.75579,0.0701 z"
2458
+ id="path11716"
2459
+ sodipodi:nodetypes="cccc"
2460
+ inkscape:connector-curvature="0" />
2461
+ <path
2462
+ style="opacity:0.98999999;fill:url(#linearGradient11858);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient12806);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
2463
+ d="m 689.17175,272.86632 c -3.58114,-0.0996 -6.69577,3.38392 -6.41926,6.93938 -0.0397,2.04707 -0.12878,4.09273 -0.20606,6.13859 -2.40102,-0.14842 -4.84229,-0.70616 -7.23352,-0.25666 -3.16944,0.84498 -5.51964,4.33957 -4.73519,7.62056 0.58687,3.00552 3.5123,5.31184 6.55082,5.1941 2.10208,0.10978 4.19842,0.3052 6.29487,0.49103 0.52593,5.26216 1.52923,10.47278 2.8562,15.58648 0.535,3.36553 3.96178,6.09096 7.36094,5.47769 3.44578,-0.4723 6.1244,-4.11509 5.42246,-7.57615 -0.30071,-1.72934 -0.91863,-3.38696 -1.2047,-5.12139 -0.6242,-2.88972 -1.1561,-5.80729 -1.44783,-8.74772 2.56906,-0.25709 5.28058,-0.0337 7.6892,-1.11677 2.73432,-1.40521 4.32181,-4.92376 3.20497,-7.87825 -0.96465,-2.86719 -4.0515,-4.75602 -7.02659,-4.39224 -1.62375,0.064 -3.23738,0.26871 -4.85718,0.38888 0.0376,-0.76856 -0.0474,-1.55729 0.0177,-2.33466 0.032,-1.67886 0.2734,-3.36467 0.15846,-5.0397 -0.59813,-2.96265 -3.34244,-5.49647 -6.42528,-5.37317 z"
2464
+ id="path11718"
2465
+ inkscape:connector-curvature="0" />
2466
+ <path
2467
+ style="fill:none;stroke:url(#linearGradient12804);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
2468
+ d="m 692.69856,343.37637 c -2.80152,7.34654 13.79171,9.38918 12.31532,0.11128"
2469
+ id="path11720"
2470
+ sodipodi:nodetypes="cc"
2471
+ inkscape:connector-curvature="0" />
2472
+ </g>
2473
+ <g
2474
+ id="WhitePawn">
2475
+ <rect
2476
+ style="fill:none;stroke:none"
2477
+ id="rect11730"
2478
+ width="200"
2479
+ height="200"
2480
+ x="1000"
2481
+ y="200" />
2482
+ <path
2483
+ id="path11732"
2484
+ d="m 1136.0493,338.83497 c 6.7912,3.94809 11.3734,11.4031 11.3734,19.94666 0,12.6633 -10.0667,22.94338 -22.4715,22.94338 -12.4048,0 -22.4714,-10.28008 -22.4714,-22.94338 0,-3.92954 0.9663,-7.62786 2.6742,-10.86212 10.2984,-0.53002 18.2239,-2.15625 30.8953,-9.08454 z"
2485
+ style="opacity:0.98999999;fill:url(#linearGradient11874);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient12796);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
2486
+ sodipodi:nodetypes="cssscc"
2487
+ inkscape:connector-curvature="0" />
2488
+ <path
2489
+ sodipodi:type="arc"
2490
+ style="opacity:0.98999999;fill:url(#linearGradient12882);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient12794);stroke-width:18.42734718;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
2491
+ id="path11734"
2492
+ sodipodi:cx="398.85242"
2493
+ sodipodi:cy="340.25049"
2494
+ sodipodi:rx="23.201941"
2495
+ sodipodi:ry="22.097088"
2496
+ d="m 422.05436,340.25049 a 23.201941,22.097088 0 1 1 -46.40388,0 23.201941,22.097088 0 1 1 46.40388,0 z"
2497
+ transform="matrix(0.19623543,0,0,0.20071543,1043.3034,291.95029)" />
2498
+ <path
2499
+ style="opacity:0.98999999;fill:url(#linearGradient11880);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient12792);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
2500
+ d="m 1066.3935,338.83497 c -6.7912,3.94809 -11.3734,11.4031 -11.3734,19.94666 0,12.6633 10.0667,22.94338 22.4714,22.94338 12.4048,0 22.4715,-10.28008 22.4715,-22.94338 0,-3.92954 -0.9664,-7.62786 -2.6742,-10.86212 -12.1819,-1.14471 -21.8501,-4.8032 -30.8953,-9.08454 z"
2501
+ id="path11736"
2502
+ sodipodi:nodetypes="cssscc"
2503
+ inkscape:connector-curvature="0" />
2504
+ <path
2505
+ transform="matrix(0.19623543,0,0,0.20071543,1001.4702,290.88407)"
2506
+ d="m 422.05436,340.25049 a 23.201941,22.097088 0 1 1 -46.40388,0 23.201941,22.097088 0 1 1 46.40388,0 z"
2507
+ sodipodi:ry="22.097088"
2508
+ sodipodi:rx="23.201941"
2509
+ sodipodi:cy="340.25049"
2510
+ sodipodi:cx="398.85242"
2511
+ id="path11738"
2512
+ style="opacity:0.98999999;fill:url(#linearGradient12884);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient12790);stroke-width:18.42734718;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
2513
+ sodipodi:type="arc" />
2514
+ <path
2515
+ style="fill:url(#linearGradient11886);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient12788);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
2516
+ d="m 1099.3582,249.15055 c -4.8345,10.8381 -11.3897,21.7842 -19.0847,29.76187 l 19.7867,17.10921 19.3949,-16.70119 c -10.4885,-8.31423 -15.2918,-19.01393 -20.0969,-30.16989 z"
2517
+ id="path11740"
2518
+ sodipodi:nodetypes="ccccc"
2519
+ inkscape:connector-curvature="0" />
2520
+ <path
2521
+ sodipodi:type="arc"
2522
+ style="fill:url(#linearGradient11890);fill-opacity:1;stroke:url(#linearGradient12786);stroke-width:18.52027702;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
2523
+ id="path11742"
2524
+ sodipodi:cx="395.9798"
2525
+ sodipodi:cy="422.45166"
2526
+ sodipodi:rx="65.996635"
2527
+ sodipodi:ry="61.282589"
2528
+ d="m 461.97643,422.45166 a 65.996635,61.282589 0 1 1 -131.99327,0 65.996635,61.282589 0 1 1 131.99327,0 z"
2529
+ transform="matrix(0.19746697,0,0,0.19746697,1021.5679,212.77037)" />
2530
+ <path
2531
+ style="fill:url(#linearGradient11894);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient12784);stroke-width:3.65714288;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
2532
+ d="m 1050.4674,350.22972 c -1.2181,-67.80712 98.1998,-71.75183 102.819,-0.9225 -17.1649,-14.45238 -88.2355,-15.60088 -102.819,0.9225 z"
2533
+ id="path11744"
2534
+ sodipodi:nodetypes="ccc"
2535
+ inkscape:connector-curvature="0" />
2536
+ </g>
2537
+ </g>
2538
+ </svg>