react-riichi-mahjong-tiles 1.0.0

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 (105) hide show
  1. package/.env +1 -0
  2. package/.prettierrc +8 -0
  3. package/.storybook/main.js +33 -0
  4. package/.storybook/preview.js +9 -0
  5. package/LICENSE.md +3 -0
  6. package/README.md +3 -0
  7. package/dist/0746983d57c86b49.svg +1 -0
  8. package/dist/0a14065f96ef46ab.svg +1 -0
  9. package/dist/33e9b4d068b1a028.svg +1 -0
  10. package/dist/6ac4740722bf7f7f.svg +1 -0
  11. package/dist/6bd39f4229feeb41.svg +1 -0
  12. package/dist/72e21a9aca290ee0.svg +1 -0
  13. package/dist/aaa7e500b51b3828.svg +1 -0
  14. package/dist/ab6ff1191f9a3af8.svg +1 -0
  15. package/dist/c990e04c26b02de8.svg +1 -0
  16. package/dist/dbf014405bec4247.svg +1 -0
  17. package/dist/e9dcd43db82ab685.svg +1 -0
  18. package/dist/eb81016c353f4648.svg +1 -0
  19. package/dist/index.es.js +31354 -0
  20. package/dist/index.js +31450 -0
  21. package/package.json +57 -0
  22. package/rollup.config.js +32 -0
  23. package/src/index.js +168 -0
  24. package/src/svgs/black_tiles/Back.svg +1 -0
  25. package/src/svgs/black_tiles/Blank.svg +1 -0
  26. package/src/svgs/black_tiles/Chun.svg +1 -0
  27. package/src/svgs/black_tiles/Front.svg +1 -0
  28. package/src/svgs/black_tiles/Haku.svg +1 -0
  29. package/src/svgs/black_tiles/Hatsu.svg +1 -0
  30. package/src/svgs/black_tiles/Man1.svg +1 -0
  31. package/src/svgs/black_tiles/Man2.svg +1 -0
  32. package/src/svgs/black_tiles/Man3.svg +1 -0
  33. package/src/svgs/black_tiles/Man4.svg +1 -0
  34. package/src/svgs/black_tiles/Man5-Dora.svg +1 -0
  35. package/src/svgs/black_tiles/Man5.svg +1 -0
  36. package/src/svgs/black_tiles/Man6.svg +1 -0
  37. package/src/svgs/black_tiles/Man7.svg +1 -0
  38. package/src/svgs/black_tiles/Man8.svg +1 -0
  39. package/src/svgs/black_tiles/Man9.svg +1 -0
  40. package/src/svgs/black_tiles/Nan.svg +1 -0
  41. package/src/svgs/black_tiles/Pei.svg +1 -0
  42. package/src/svgs/black_tiles/Pin1.svg +1 -0
  43. package/src/svgs/black_tiles/Pin2.svg +1 -0
  44. package/src/svgs/black_tiles/Pin3.svg +1 -0
  45. package/src/svgs/black_tiles/Pin4.svg +1 -0
  46. package/src/svgs/black_tiles/Pin5-Dora.svg +1 -0
  47. package/src/svgs/black_tiles/Pin5.svg +1 -0
  48. package/src/svgs/black_tiles/Pin6.svg +1 -0
  49. package/src/svgs/black_tiles/Pin7.svg +1 -0
  50. package/src/svgs/black_tiles/Pin8.svg +1 -0
  51. package/src/svgs/black_tiles/Pin9.svg +1 -0
  52. package/src/svgs/black_tiles/Shaa.svg +1 -0
  53. package/src/svgs/black_tiles/Sou1.svg +1 -0
  54. package/src/svgs/black_tiles/Sou2.svg +1 -0
  55. package/src/svgs/black_tiles/Sou3.svg +1 -0
  56. package/src/svgs/black_tiles/Sou4.svg +1 -0
  57. package/src/svgs/black_tiles/Sou5-Dora.svg +1 -0
  58. package/src/svgs/black_tiles/Sou5.svg +1 -0
  59. package/src/svgs/black_tiles/Sou6.svg +1 -0
  60. package/src/svgs/black_tiles/Sou7.svg +1 -0
  61. package/src/svgs/black_tiles/Sou8.svg +1 -0
  62. package/src/svgs/black_tiles/Sou9.svg +1 -0
  63. package/src/svgs/black_tiles/Ton.svg +1 -0
  64. package/src/svgs/white_tiles/Back.svg +1 -0
  65. package/src/svgs/white_tiles/Blank.svg +1 -0
  66. package/src/svgs/white_tiles/Chun.svg +1 -0
  67. package/src/svgs/white_tiles/Front.svg +1 -0
  68. package/src/svgs/white_tiles/Haku.svg +1 -0
  69. package/src/svgs/white_tiles/Hatsu.svg +1 -0
  70. package/src/svgs/white_tiles/Man1.svg +1 -0
  71. package/src/svgs/white_tiles/Man2.svg +1 -0
  72. package/src/svgs/white_tiles/Man3.svg +1 -0
  73. package/src/svgs/white_tiles/Man4.svg +1 -0
  74. package/src/svgs/white_tiles/Man5-Dora.svg +1 -0
  75. package/src/svgs/white_tiles/Man5.svg +1 -0
  76. package/src/svgs/white_tiles/Man6.svg +1 -0
  77. package/src/svgs/white_tiles/Man7.svg +1 -0
  78. package/src/svgs/white_tiles/Man8.svg +1 -0
  79. package/src/svgs/white_tiles/Man9.svg +1 -0
  80. package/src/svgs/white_tiles/Nan.svg +1 -0
  81. package/src/svgs/white_tiles/Pei.svg +1 -0
  82. package/src/svgs/white_tiles/Pin1.svg +1 -0
  83. package/src/svgs/white_tiles/Pin2.svg +1 -0
  84. package/src/svgs/white_tiles/Pin3.svg +1 -0
  85. package/src/svgs/white_tiles/Pin4.svg +1 -0
  86. package/src/svgs/white_tiles/Pin5-Dora.svg +1 -0
  87. package/src/svgs/white_tiles/Pin5.svg +1 -0
  88. package/src/svgs/white_tiles/Pin6.svg +1 -0
  89. package/src/svgs/white_tiles/Pin7.svg +1 -0
  90. package/src/svgs/white_tiles/Pin8.svg +1 -0
  91. package/src/svgs/white_tiles/Pin9.svg +1 -0
  92. package/src/svgs/white_tiles/Shaa.svg +1 -0
  93. package/src/svgs/white_tiles/Sou1.svg +1 -0
  94. package/src/svgs/white_tiles/Sou2.svg +1 -0
  95. package/src/svgs/white_tiles/Sou3.svg +1 -0
  96. package/src/svgs/white_tiles/Sou4.svg +1 -0
  97. package/src/svgs/white_tiles/Sou5-Dora.svg +1 -0
  98. package/src/svgs/white_tiles/Sou5.svg +1 -0
  99. package/src/svgs/white_tiles/Sou6.svg +1 -0
  100. package/src/svgs/white_tiles/Sou7.svg +1 -0
  101. package/src/svgs/white_tiles/Sou8.svg +1 -0
  102. package/src/svgs/white_tiles/Sou9.svg +1 -0
  103. package/src/svgs/white_tiles/Ton.svg +1 -0
  104. package/stories/Dark.stories.tsx +103 -0
  105. package/stories/Light.stories.tsx +102 -0
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 400"><g transform="translate(6.113 -625.559) scale(.95916)"><ellipse cx="135.055" cy="680.426" rx="24.68" ry="19.097" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="164.02" cy="680.426" rx="24.68" ry="19.097" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="133.838" cy="829.799" rx="24.68" ry="19.097" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M149.585 818.816V684.143" style="fill:none;fill-rule:evenodd;stroke:#004900;stroke-width:55.00000381;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><ellipse cx="165.642" cy="829.799" rx="24.68" ry="19.097" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="160.995" cy="748.831" rx="32.787" ry="25.37" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="138.323" cy="748.831" rx="32.787" ry="25.37" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M149.585 685.723v37.843m0 53.996v46.734" style="fill:none;fill-rule:evenodd;stroke:#fff;stroke-width:12.51099205;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><ellipse cx="149.585" cy="683.533" rx="8.992" ry="8.697" style="opacity:1;fill:#fff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M140.229 761.818c4.228-6.441 15.56-6.164 19.118 0m-19.118-18.287c4.228-6.44 15.56-6.163 19.118 0" style="fill:none;fill-rule:evenodd;stroke:#fff;stroke-width:10.42582703;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/></g><g transform="translate(6.113 -417.126) scale(.95916)"><ellipse cx="135.055" cy="680.426" rx="24.68" ry="19.097" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="164.02" cy="680.426" rx="24.68" ry="19.097" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="133.838" cy="829.799" rx="24.68" ry="19.097" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M149.585 818.816V684.143" style="fill:none;fill-rule:evenodd;stroke:#004900;stroke-width:55.00000381;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><ellipse cx="165.642" cy="829.799" rx="24.68" ry="19.097" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="160.995" cy="748.831" rx="32.787" ry="25.37" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="138.323" cy="748.831" rx="32.787" ry="25.37" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M149.585 685.723v37.843" style="fill:none;fill-rule:evenodd;stroke:#fff;stroke-width:12.51099221;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><path d="M149.585 777.562v46.734" style="fill:none;fill-rule:evenodd;stroke:#fff;stroke-width:12.51099205;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><ellipse cx="149.585" cy="683.533" rx="8.992" ry="8.697" style="opacity:1;fill:#fff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M140.229 761.818c4.228-6.441 15.56-6.164 19.118 0m-19.118-18.287c4.228-6.44 15.56-6.163 19.118 0" style="fill:none;fill-rule:evenodd;stroke:#fff;stroke-width:10.42582703;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 400"><g transform="translate(6.113 -625.559) scale(.95916)"><ellipse cx="135.055" cy="680.426" rx="24.68" ry="19.097" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="164.02" cy="680.426" rx="24.68" ry="19.097" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="133.838" cy="829.799" rx="24.68" ry="19.097" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M149.585 818.816V684.143" style="fill:none;fill-rule:evenodd;stroke:#004900;stroke-width:55.00000381;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><ellipse cx="165.642" cy="829.799" rx="24.68" ry="19.097" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="160.995" cy="748.831" rx="32.787" ry="25.37" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="138.323" cy="748.831" rx="32.787" ry="25.37" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M149.585 685.723v37.843m0 53.996v46.734" style="fill:none;fill-rule:evenodd;stroke:#fff;stroke-width:12.51099205;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><ellipse cx="149.585" cy="683.533" rx="8.992" ry="8.697" style="opacity:1;fill:#fff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M140.229 761.818c4.228-6.441 15.56-6.164 19.118 0m-19.118-18.287c4.228-6.44 15.56-6.163 19.118 0" style="fill:none;fill-rule:evenodd;stroke:#fff;stroke-width:10.42582703;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/></g><g transform="translate(-93.208 -417.126) scale(.95916)"><ellipse cx="135.055" cy="680.426" rx="24.68" ry="19.097" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="164.02" cy="680.426" rx="24.68" ry="19.097" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="133.838" cy="829.799" rx="24.68" ry="19.097" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M149.585 818.816V684.143" style="fill:none;fill-rule:evenodd;stroke:#004900;stroke-width:55.00000381;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><ellipse cx="165.642" cy="829.799" rx="24.68" ry="19.097" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="160.995" cy="748.831" rx="32.787" ry="25.37" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="138.323" cy="748.831" rx="32.787" ry="25.37" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M149.585 685.723v37.843m0 53.996v46.734" style="fill:none;fill-rule:evenodd;stroke:#fff;stroke-width:12.51099205;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><ellipse cx="149.585" cy="683.533" rx="8.992" ry="8.697" style="opacity:1;fill:#fff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M140.229 761.818c4.228-6.441 15.56-6.164 19.118 0m-19.118-18.287c4.228-6.44 15.56-6.163 19.118 0" style="fill:none;fill-rule:evenodd;stroke:#fff;stroke-width:10.42582703;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/></g><g transform="translate(109.63 -417.126) scale(.95916)"><ellipse cx="135.055" cy="680.426" rx="24.68" ry="19.097" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="164.02" cy="680.426" rx="24.68" ry="19.097" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="133.838" cy="829.799" rx="24.68" ry="19.097" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M149.585 818.816V684.143" style="fill:none;fill-rule:evenodd;stroke:#004900;stroke-width:55.00000381;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><ellipse cx="165.642" cy="829.799" rx="24.68" ry="19.097" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="160.995" cy="748.831" rx="32.787" ry="25.37" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="138.323" cy="748.831" rx="32.787" ry="25.37" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M149.585 685.723v37.843m0 53.996v46.734" style="fill:none;fill-rule:evenodd;stroke:#fff;stroke-width:12.51099205;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><ellipse cx="149.585" cy="683.533" rx="8.992" ry="8.697" style="opacity:1;fill:#fff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M140.229 761.818c4.228-6.441 15.56-6.164 19.118 0m-19.118-18.287c4.228-6.44 15.56-6.163 19.118 0" style="fill:none;fill-rule:evenodd;stroke:#fff;stroke-width:10.42582703;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 400"><g transform="translate(-71.525 -417.126) scale(.95916)"><ellipse cx="135.055" cy="680.426" rx="24.68" ry="19.097" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="164.02" cy="680.426" rx="24.68" ry="19.097" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="133.838" cy="829.799" rx="24.68" ry="19.097" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M149.585 818.816V684.143" style="fill:none;fill-rule:evenodd;stroke:#004900;stroke-width:55.00000381;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><ellipse cx="165.642" cy="829.799" rx="24.68" ry="19.097" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="160.995" cy="748.831" rx="32.787" ry="25.37" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="138.323" cy="748.831" rx="32.787" ry="25.37" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M149.585 685.723v37.843m0 53.996v46.734" style="fill:none;fill-rule:evenodd;stroke:#fff;stroke-width:12.51099205;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><ellipse cx="149.585" cy="683.533" rx="8.992" ry="8.697" style="opacity:1;fill:#fff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M140.229 761.818c4.228-6.441 15.56-6.164 19.118 0m-19.118-18.287c4.228-6.44 15.56-6.163 19.118 0" style="fill:none;fill-rule:evenodd;stroke:#fff;stroke-width:10.42582703;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/></g><g transform="translate(83.75 -417.126) scale(.95916)"><ellipse cx="135.055" cy="680.426" rx="24.68" ry="19.097" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="164.02" cy="680.426" rx="24.68" ry="19.097" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="133.838" cy="829.799" rx="24.68" ry="19.097" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M149.585 818.816V684.143" style="fill:none;fill-rule:evenodd;stroke:#004900;stroke-width:55.00000381;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><ellipse cx="165.642" cy="829.799" rx="24.68" ry="19.097" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="160.995" cy="748.831" rx="32.787" ry="25.37" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="138.323" cy="748.831" rx="32.787" ry="25.37" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M149.585 685.723v37.843m0 53.996v46.734" style="fill:none;fill-rule:evenodd;stroke:#fff;stroke-width:12.51099205;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><ellipse cx="149.585" cy="683.533" rx="8.992" ry="8.697" style="opacity:1;fill:#fff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M140.229 761.818c4.228-6.441 15.56-6.164 19.118 0m-19.118-18.287c4.228-6.44 15.56-6.163 19.118 0" style="fill:none;fill-rule:evenodd;stroke:#fff;stroke-width:10.42582703;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/></g><g transform="translate(-71.525 -625.559) scale(.95916)"><ellipse cx="135.055" cy="680.426" rx="24.68" ry="19.097" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="164.02" cy="680.426" rx="24.68" ry="19.097" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="133.838" cy="829.799" rx="24.68" ry="19.097" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M149.585 818.816V684.143" style="fill:none;fill-rule:evenodd;stroke:#004900;stroke-width:55.00000381;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><ellipse cx="165.642" cy="829.799" rx="24.68" ry="19.097" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="160.995" cy="748.831" rx="32.787" ry="25.37" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="138.323" cy="748.831" rx="32.787" ry="25.37" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M149.585 685.723v37.843m0 53.996v46.734" style="fill:none;fill-rule:evenodd;stroke:#fff;stroke-width:12.51099205;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><ellipse cx="149.585" cy="683.533" rx="8.992" ry="8.697" style="opacity:1;fill:#fff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M140.229 761.818c4.228-6.441 15.56-6.164 19.118 0m-19.118-18.287c4.228-6.44 15.56-6.163 19.118 0" style="fill:none;fill-rule:evenodd;stroke:#fff;stroke-width:10.42582703;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/></g><g transform="translate(83.75 -625.559) scale(.95916)"><ellipse cx="135.055" cy="680.426" rx="24.68" ry="19.097" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="164.02" cy="680.426" rx="24.68" ry="19.097" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="133.838" cy="829.799" rx="24.68" ry="19.097" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M149.585 818.816V684.143" style="fill:none;fill-rule:evenodd;stroke:#004900;stroke-width:55.00000381;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><ellipse cx="165.642" cy="829.799" rx="24.68" ry="19.097" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="160.995" cy="748.831" rx="32.787" ry="25.37" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="138.323" cy="748.831" rx="32.787" ry="25.37" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M149.585 685.723v37.843m0 53.996v46.734" style="fill:none;fill-rule:evenodd;stroke:#fff;stroke-width:12.51099205;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><ellipse cx="149.585" cy="683.533" rx="8.992" ry="8.697" style="opacity:1;fill:#fff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M140.229 761.818c4.228-6.441 15.56-6.164 19.118 0m-19.118-18.287c4.228-6.44 15.56-6.163 19.118 0" style="fill:none;fill-rule:evenodd;stroke:#fff;stroke-width:10.42582703;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 400"><g transform="translate(0 -652.362)"><g transform="translate(-93.208 26.804) scale(.95916)"><ellipse cx="135.055" cy="680.426" rx="24.68" ry="19.097" style="opacity:1;fill:#d71e1e;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="164.02" cy="680.426" rx="24.68" ry="19.097" style="opacity:1;fill:#d71e1e;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="133.838" cy="829.799" rx="24.68" ry="19.097" style="opacity:1;fill:#d71e1e;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M149.585 818.816V684.143" style="fill:none;fill-rule:evenodd;stroke:#d71e1e;stroke-width:55.00000381;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><ellipse cx="165.642" cy="829.799" rx="24.68" ry="19.097" style="opacity:1;fill:#d71e1e;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="160.995" cy="748.831" rx="32.787" ry="25.37" style="opacity:1;fill:#d71e1e;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="138.323" cy="748.831" rx="32.787" ry="25.37" style="opacity:1;fill:#d71e1e;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M149.585 685.723v37.843m0 53.996v46.734" style="fill:none;fill-rule:evenodd;stroke:#fff;stroke-width:12.51099205;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><ellipse cx="149.585" cy="683.533" rx="8.992" ry="8.697" style="opacity:1;fill:#fff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M140.229 761.818c4.228-6.441 15.56-6.164 19.118 0m-19.118-18.287c4.228-6.44 15.56-6.163 19.118 0" style="fill:none;fill-rule:evenodd;stroke:#fff;stroke-width:10.42582703;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/></g><g transform="translate(109.63 26.804) scale(.95916)"><ellipse cx="135.055" cy="680.426" rx="24.68" ry="19.097" style="opacity:1;fill:#d71e1e;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="164.02" cy="680.426" rx="24.68" ry="19.097" style="opacity:1;fill:#d71e1e;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="133.838" cy="829.799" rx="24.68" ry="19.097" style="opacity:1;fill:#d71e1e;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M149.585 818.816V684.143" style="fill:none;fill-rule:evenodd;stroke:#d71e1e;stroke-width:55.00000381;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><ellipse cx="165.642" cy="829.799" rx="24.68" ry="19.097" style="opacity:1;fill:#d71e1e;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="160.995" cy="748.831" rx="32.787" ry="25.37" style="opacity:1;fill:#d71e1e;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="138.323" cy="748.831" rx="32.787" ry="25.37" style="opacity:1;fill:#d71e1e;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M149.585 685.723v37.843m0 53.996v46.734" style="fill:none;fill-rule:evenodd;stroke:#fff;stroke-width:12.51099205;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><ellipse cx="149.585" cy="683.533" rx="8.992" ry="8.697" style="opacity:1;fill:#fff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M140.229 761.818c4.228-6.441 15.56-6.164 19.118 0m-19.118-18.287c4.228-6.44 15.56-6.163 19.118 0" style="fill:none;fill-rule:evenodd;stroke:#fff;stroke-width:10.42582703;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/></g><g transform="translate(109.63 235.236) scale(.95916)"><ellipse cx="135.055" cy="680.426" rx="24.68" ry="19.097" style="opacity:1;fill:#d71e1e;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="164.02" cy="680.426" rx="24.68" ry="19.097" style="opacity:1;fill:#d71e1e;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="133.838" cy="829.799" rx="24.68" ry="19.097" style="opacity:1;fill:#d71e1e;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M149.585 818.816V684.143" style="fill:none;fill-rule:evenodd;stroke:#d71e1e;stroke-width:55.00000381;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><ellipse cx="165.642" cy="829.799" rx="24.68" ry="19.097" style="opacity:1;fill:#d71e1e;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="160.995" cy="748.831" rx="32.787" ry="25.37" style="opacity:1;fill:#d71e1e;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="138.323" cy="748.831" rx="32.787" ry="25.37" style="opacity:1;fill:#d71e1e;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M149.585 685.723v37.843m0 53.996v46.734" style="fill:none;fill-rule:evenodd;stroke:#fff;stroke-width:12.51099205;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><ellipse cx="149.585" cy="683.533" rx="8.992" ry="8.697" style="opacity:1;fill:#fff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M140.229 761.818c4.228-6.441 15.56-6.164 19.118 0m-19.118-18.287c4.228-6.44 15.56-6.163 19.118 0" style="fill:none;fill-rule:evenodd;stroke:#fff;stroke-width:10.42582703;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/></g><g transform="translate(-93.208 235.236) scale(.95916)"><ellipse cx="135.055" cy="680.426" rx="24.68" ry="19.097" style="opacity:1;fill:#d71e1e;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="164.02" cy="680.426" rx="24.68" ry="19.097" style="opacity:1;fill:#d71e1e;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="133.838" cy="829.799" rx="24.68" ry="19.097" style="opacity:1;fill:#d71e1e;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M149.585 818.816V684.143" style="fill:none;fill-rule:evenodd;stroke:#d71e1e;stroke-width:55.00000381;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><ellipse cx="165.642" cy="829.799" rx="24.68" ry="19.097" style="opacity:1;fill:#d71e1e;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="160.995" cy="748.831" rx="32.787" ry="25.37" style="opacity:1;fill:#d71e1e;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="138.323" cy="748.831" rx="32.787" ry="25.37" style="opacity:1;fill:#d71e1e;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M149.585 685.723v37.843m0 53.996v46.734" style="fill:none;fill-rule:evenodd;stroke:#fff;stroke-width:12.51099205;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><ellipse cx="149.585" cy="683.533" rx="8.992" ry="8.697" style="opacity:1;fill:#fff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M140.229 761.818c4.228-6.441 15.56-6.164 19.118 0m-19.118-18.287c4.228-6.44 15.56-6.163 19.118 0" style="fill:none;fill-rule:evenodd;stroke:#fff;stroke-width:10.42582703;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/></g><g transform="translate(6.113 130.645) scale(.95916)"><ellipse cx="135.055" cy="680.426" rx="24.68" ry="19.097" style="opacity:1;fill:#d71e1e;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="164.02" cy="680.426" rx="24.68" ry="19.097" style="opacity:1;fill:#d71e1e;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="133.838" cy="829.799" rx="24.68" ry="19.097" style="opacity:1;fill:#d71e1e;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M149.585 818.816V684.143" style="fill:none;fill-rule:evenodd;stroke:#d71e1e;stroke-width:55.00000381;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><ellipse cx="165.642" cy="829.799" rx="24.68" ry="19.097" style="opacity:1;fill:#d71e1e;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="160.995" cy="748.831" rx="32.787" ry="25.37" style="opacity:1;fill:#d71e1e;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="138.323" cy="748.831" rx="32.787" ry="25.37" style="opacity:1;fill:#d71e1e;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M149.585 685.723v37.843m0 53.996v46.734" style="fill:none;fill-rule:evenodd;stroke:#fff;stroke-width:12.51099205;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><ellipse cx="149.585" cy="683.533" rx="8.992" ry="8.697" style="opacity:1;fill:#fff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M140.229 761.818c4.228-6.441 15.56-6.164 19.118 0m-19.118-18.287c4.228-6.44 15.56-6.163 19.118 0" style="fill:none;fill-rule:evenodd;stroke:#fff;stroke-width:10.42582703;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/></g><circle cx="150.356" cy="998.505" r="19.783" style="opacity:1;fill:#d71e1e;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 400"><g transform="translate(-93.208 -417.126) scale(.95916)"><ellipse cx="135.055" cy="680.426" rx="24.68" ry="19.097" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="164.02" cy="680.426" rx="24.68" ry="19.097" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="133.838" cy="829.799" rx="24.68" ry="19.097" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M149.585 818.816V684.143" style="fill:none;fill-rule:evenodd;stroke:#004900;stroke-width:55.00000381;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><ellipse cx="165.642" cy="829.799" rx="24.68" ry="19.097" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="160.995" cy="748.831" rx="32.787" ry="25.37" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="138.323" cy="748.831" rx="32.787" ry="25.37" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M149.585 685.723v37.843m0 53.996v46.734" style="fill:none;fill-rule:evenodd;stroke:#fff;stroke-width:12.51099205;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><ellipse cx="149.585" cy="683.533" rx="8.992" ry="8.697" style="opacity:1;fill:#fff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M140.229 761.818c4.228-6.441 15.56-6.164 19.118 0m-19.118-18.287c4.228-6.44 15.56-6.163 19.118 0" style="fill:none;fill-rule:evenodd;stroke:#fff;stroke-width:10.42582703;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/></g><g transform="translate(109.63 -417.126) scale(.95916)"><ellipse cx="135.055" cy="680.426" rx="24.68" ry="19.097" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="164.02" cy="680.426" rx="24.68" ry="19.097" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="133.838" cy="829.799" rx="24.68" ry="19.097" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M149.585 818.816V684.143" style="fill:none;fill-rule:evenodd;stroke:#004900;stroke-width:55.00000381;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><ellipse cx="165.642" cy="829.799" rx="24.68" ry="19.097" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="160.995" cy="748.831" rx="32.787" ry="25.37" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="138.323" cy="748.831" rx="32.787" ry="25.37" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M149.585 685.723v37.843m0 53.996v46.734" style="fill:none;fill-rule:evenodd;stroke:#fff;stroke-width:12.51099205;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><ellipse cx="149.585" cy="683.533" rx="8.992" ry="8.697" style="opacity:1;fill:#fff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M140.229 761.818c4.228-6.441 15.56-6.164 19.118 0m-19.118-18.287c4.228-6.44 15.56-6.163 19.118 0" style="fill:none;fill-rule:evenodd;stroke:#fff;stroke-width:10.42582703;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/></g><g transform="translate(6.113 -521.717) scale(.95916)"><ellipse cx="135.055" cy="680.426" rx="24.68" ry="19.097" style="opacity:1;fill:#b93c3c;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="164.02" cy="680.426" rx="24.68" ry="19.097" style="opacity:1;fill:#b93c3c;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="133.838" cy="829.799" rx="24.68" ry="19.097" style="opacity:1;fill:#b93c3c;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M149.585 818.816V684.143" style="fill:none;fill-rule:evenodd;stroke:#b93c3c;stroke-width:55.00000381;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><ellipse cx="165.642" cy="829.799" rx="24.68" ry="19.097" style="opacity:1;fill:#b93c3c;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="160.995" cy="748.831" rx="32.787" ry="25.37" style="opacity:1;fill:#b93c3c;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="138.323" cy="748.831" rx="32.787" ry="25.37" style="opacity:1;fill:#b93c3c;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M149.585 685.723v37.843m0 53.996v46.734" style="fill:none;fill-rule:evenodd;stroke:#fff;stroke-width:12.51099205;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><ellipse cx="149.585" cy="683.533" rx="8.992" ry="8.697" style="opacity:1;fill:#fff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M140.229 761.818c4.228-6.441 15.56-6.164 19.118 0m-19.118-18.287c4.228-6.44 15.56-6.163 19.118 0" style="fill:none;fill-rule:evenodd;stroke:#fff;stroke-width:10.42582703;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/></g><g transform="translate(109.63 -625.559) scale(.95916)"><ellipse cx="135.055" cy="680.426" rx="24.68" ry="19.097" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="164.02" cy="680.426" rx="24.68" ry="19.097" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="133.838" cy="829.799" rx="24.68" ry="19.097" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M149.585 818.816V684.143" style="fill:none;fill-rule:evenodd;stroke:#004900;stroke-width:55.00000381;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><ellipse cx="165.642" cy="829.799" rx="24.68" ry="19.097" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="160.995" cy="748.831" rx="32.787" ry="25.37" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="138.323" cy="748.831" rx="32.787" ry="25.37" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M149.585 685.723v37.843m0 53.996v46.734" style="fill:none;fill-rule:evenodd;stroke:#fff;stroke-width:12.51099205;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><ellipse cx="149.585" cy="683.533" rx="8.992" ry="8.697" style="opacity:1;fill:#fff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M140.229 761.818c4.228-6.441 15.56-6.164 19.118 0m-19.118-18.287c4.228-6.44 15.56-6.163 19.118 0" style="fill:none;fill-rule:evenodd;stroke:#fff;stroke-width:10.42582703;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/></g><g transform="translate(-93.208 -625.559) scale(.95916)"><ellipse cx="135.055" cy="680.426" rx="24.68" ry="19.097" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="164.02" cy="680.426" rx="24.68" ry="19.097" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="133.838" cy="829.799" rx="24.68" ry="19.097" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M149.585 818.816V684.143" style="fill:none;fill-rule:evenodd;stroke:#004900;stroke-width:55.00000381;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><ellipse cx="165.642" cy="829.799" rx="24.68" ry="19.097" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="160.995" cy="748.831" rx="32.787" ry="25.37" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="138.323" cy="748.831" rx="32.787" ry="25.37" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M149.585 685.723v37.843m0 53.996v46.734" style="fill:none;fill-rule:evenodd;stroke:#fff;stroke-width:12.51099205;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><ellipse cx="149.585" cy="683.533" rx="8.992" ry="8.697" style="opacity:1;fill:#fff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M140.229 761.818c4.228-6.441 15.56-6.164 19.118 0m-19.118-18.287c4.228-6.44 15.56-6.163 19.118 0" style="fill:none;fill-rule:evenodd;stroke:#fff;stroke-width:10.42582703;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 400"><g transform="translate(6.113 -625.559) scale(.95916)"><ellipse cx="135.055" cy="680.426" rx="24.68" ry="19.097" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="164.02" cy="680.426" rx="24.68" ry="19.097" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="133.838" cy="829.799" rx="24.68" ry="19.097" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M149.585 818.816V684.143" style="fill:none;fill-rule:evenodd;stroke:#004900;stroke-width:55.00000381;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><ellipse cx="165.642" cy="829.799" rx="24.68" ry="19.097" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="160.995" cy="748.831" rx="32.787" ry="25.37" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="138.323" cy="748.831" rx="32.787" ry="25.37" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M149.585 685.723v37.843m0 53.996v46.734" style="fill:none;fill-rule:evenodd;stroke:#fff;stroke-width:12.51099205;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><ellipse cx="149.585" cy="683.533" rx="8.992" ry="8.697" style="opacity:1;fill:#fff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M140.229 761.818c4.228-6.441 15.56-6.164 19.118 0m-19.118-18.287c4.228-6.44 15.56-6.163 19.118 0" style="fill:none;fill-rule:evenodd;stroke:#fff;stroke-width:10.42582703;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/></g><g transform="translate(-93.208 -417.126) scale(.95916)"><ellipse cx="135.055" cy="680.426" rx="24.68" ry="19.097" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="164.02" cy="680.426" rx="24.68" ry="19.097" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="133.838" cy="829.799" rx="24.68" ry="19.097" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M149.585 818.816V684.143" style="fill:none;fill-rule:evenodd;stroke:#004900;stroke-width:55.00000381;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><ellipse cx="165.642" cy="829.799" rx="24.68" ry="19.097" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="160.995" cy="748.831" rx="32.787" ry="25.37" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="138.323" cy="748.831" rx="32.787" ry="25.37" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M149.585 685.723v37.843m0 53.996v46.734" style="fill:none;fill-rule:evenodd;stroke:#fff;stroke-width:12.51099205;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><ellipse cx="149.585" cy="683.533" rx="8.992" ry="8.697" style="opacity:1;fill:#fff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M140.229 761.818c4.228-6.441 15.56-6.164 19.118 0m-19.118-18.287c4.228-6.44 15.56-6.163 19.118 0" style="fill:none;fill-rule:evenodd;stroke:#fff;stroke-width:10.42582703;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/></g><g transform="translate(109.63 -417.126) scale(.95916)"><ellipse cx="135.055" cy="680.426" rx="24.68" ry="19.097" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="164.02" cy="680.426" rx="24.68" ry="19.097" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="133.838" cy="829.799" rx="24.68" ry="19.097" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M149.585 818.816V684.143" style="fill:none;fill-rule:evenodd;stroke:#004900;stroke-width:55.00000381;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><ellipse cx="165.642" cy="829.799" rx="24.68" ry="19.097" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="160.995" cy="748.831" rx="32.787" ry="25.37" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="138.323" cy="748.831" rx="32.787" ry="25.37" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M149.585 685.723v37.843m0 53.996v46.734" style="fill:none;fill-rule:evenodd;stroke:#fff;stroke-width:12.51099205;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><ellipse cx="149.585" cy="683.533" rx="8.992" ry="8.697" style="opacity:1;fill:#fff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M140.229 761.818c4.228-6.441 15.56-6.164 19.118 0m-19.118-18.287c4.228-6.44 15.56-6.163 19.118 0" style="fill:none;fill-rule:evenodd;stroke:#fff;stroke-width:10.42582703;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/></g><g transform="translate(-93.208 -625.559) scale(.95916)"><ellipse cx="135.055" cy="680.426" rx="24.68" ry="19.097" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="164.02" cy="680.426" rx="24.68" ry="19.097" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="133.838" cy="829.799" rx="24.68" ry="19.097" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M149.585 818.816V684.143" style="fill:none;fill-rule:evenodd;stroke:#004900;stroke-width:55.00000381;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><ellipse cx="165.642" cy="829.799" rx="24.68" ry="19.097" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="160.995" cy="748.831" rx="32.787" ry="25.37" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="138.323" cy="748.831" rx="32.787" ry="25.37" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M149.585 685.723v37.843m0 53.996v46.734" style="fill:none;fill-rule:evenodd;stroke:#fff;stroke-width:12.51099205;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><ellipse cx="149.585" cy="683.533" rx="8.992" ry="8.697" style="opacity:1;fill:#fff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M140.229 761.818c4.228-6.441 15.56-6.164 19.118 0m-19.118-18.287c4.228-6.44 15.56-6.163 19.118 0" style="fill:none;fill-rule:evenodd;stroke:#fff;stroke-width:10.42582703;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/></g><g transform="translate(109.63 -625.559) scale(.95916)"><ellipse cx="135.055" cy="680.426" rx="24.68" ry="19.097" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="164.02" cy="680.426" rx="24.68" ry="19.097" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="133.838" cy="829.799" rx="24.68" ry="19.097" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M149.585 818.816V684.143" style="fill:none;fill-rule:evenodd;stroke:#004900;stroke-width:55.00000381;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><ellipse cx="165.642" cy="829.799" rx="24.68" ry="19.097" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="160.995" cy="748.831" rx="32.787" ry="25.37" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="138.323" cy="748.831" rx="32.787" ry="25.37" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M149.585 685.723v37.843m0 53.996v46.734" style="fill:none;fill-rule:evenodd;stroke:#fff;stroke-width:12.51099205;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><ellipse cx="149.585" cy="683.533" rx="8.992" ry="8.697" style="opacity:1;fill:#fff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M140.229 761.818c4.228-6.441 15.56-6.164 19.118 0m-19.118-18.287c4.228-6.44 15.56-6.163 19.118 0" style="fill:none;fill-rule:evenodd;stroke:#fff;stroke-width:10.42582703;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/></g><g transform="translate(6.113 -417.126) scale(.95916)"><ellipse cx="135.055" cy="680.426" rx="24.68" ry="19.097" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="164.02" cy="680.426" rx="24.68" ry="19.097" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="133.838" cy="829.799" rx="24.68" ry="19.097" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M149.585 818.816V684.143" style="fill:none;fill-rule:evenodd;stroke:#004900;stroke-width:55.00000381;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><ellipse cx="165.642" cy="829.799" rx="24.68" ry="19.097" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="160.995" cy="748.831" rx="32.787" ry="25.37" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="138.323" cy="748.831" rx="32.787" ry="25.37" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M149.585 685.723v37.843m0 53.996v46.734" style="fill:none;fill-rule:evenodd;stroke:#fff;stroke-width:12.51099205;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><ellipse cx="149.585" cy="683.533" rx="8.992" ry="8.697" style="opacity:1;fill:#fff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M140.229 761.818c4.228-6.441 15.56-6.164 19.118 0m-19.118-18.287c4.228-6.44 15.56-6.163 19.118 0" style="fill:none;fill-rule:evenodd;stroke:#fff;stroke-width:10.42582703;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 400"><g transform="matrix(1.5015 0 0 1.14938 -450.654 -595.069)"><circle cx="391.399" cy="540.31" r="13.404" style="opacity:1;fill:#b93c3c;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><circle cx="408.704" cy="540.31" r="13.404" style="opacity:1;fill:#b93c3c;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><circle cx="390.672" cy="612.173" r="13.404" style="opacity:1;fill:#b93c3c;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M400.08 609.923v-71.438" style="fill:none;fill-rule:evenodd;stroke:#b93c3c;stroke-width:29.07647514;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><circle cx="409.673" cy="612.173" r="13.404" style="opacity:1;fill:#b93c3c;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><circle cx="406.897" cy="574.399" r="16.323" style="opacity:1;fill:#b93c3c;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><circle cx="393.352" cy="574.399" r="16.323" style="opacity:1;fill:#b93c3c;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M399.97 537.21v22.661m0 28.679v21.47" style="fill:none;fill-rule:evenodd;stroke:#fff;stroke-width:8.37332153;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><path d="M399.468 574.027h1.008" style="fill:none;fill-rule:evenodd;stroke:#fff;stroke-width:8.37332153;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/></g><g transform="matrix(1.5015 0 0 1.14938 -450.654 -328.092)"><circle cx="391.399" cy="540.31" r="13.404" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><circle cx="408.704" cy="540.31" r="13.404" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><circle cx="390.672" cy="612.173" r="13.404" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M400.08 609.923v-71.438" style="fill:none;fill-rule:evenodd;stroke:#004900;stroke-width:29.07647514;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><circle cx="409.673" cy="612.173" r="13.404" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><circle cx="406.897" cy="574.399" r="16.323" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><circle cx="393.352" cy="574.399" r="16.323" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M399.97 537.21v22.661m0 28.679v21.47" style="fill:none;fill-rule:evenodd;stroke:#fff;stroke-width:8.37332153;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><path d="M399.468 574.027h1.008" style="fill:none;fill-rule:evenodd;stroke:#fff;stroke-width:8.37332153;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/></g><g transform="matrix(1.5015 0 0 1.14938 -555.323 -328.092)"><circle cx="391.399" cy="540.31" r="13.404" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><circle cx="408.704" cy="540.31" r="13.404" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><circle cx="390.672" cy="612.173" r="13.404" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M400.08 609.923v-71.438" style="fill:none;fill-rule:evenodd;stroke:#004900;stroke-width:29.07647514;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><circle cx="409.673" cy="612.173" r="13.404" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><circle cx="406.897" cy="574.399" r="16.323" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><circle cx="393.352" cy="574.399" r="16.323" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M399.97 537.21v22.661m0 28.679v21.47" style="fill:none;fill-rule:evenodd;stroke:#fff;stroke-width:8.37332153;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><path d="M399.468 574.027h1.008" style="fill:none;fill-rule:evenodd;stroke:#fff;stroke-width:8.37332153;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/></g><g transform="matrix(1.5015 0 0 1.14938 -346.89 -328.092)"><circle cx="391.399" cy="540.31" r="13.404" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><circle cx="408.704" cy="540.31" r="13.404" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><circle cx="390.672" cy="612.173" r="13.404" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M400.08 609.923v-71.438" style="fill:none;fill-rule:evenodd;stroke:#004900;stroke-width:29.07647514;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><circle cx="409.673" cy="612.173" r="13.404" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><circle cx="406.897" cy="574.399" r="16.323" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><circle cx="393.352" cy="574.399" r="16.323" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M399.97 537.21v22.661m0 28.679v21.47" style="fill:none;fill-rule:evenodd;stroke:#fff;stroke-width:8.37332153;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><path d="M399.468 574.027h1.008" style="fill:none;fill-rule:evenodd;stroke:#fff;stroke-width:8.37332153;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/></g><g transform="matrix(1.5015 0 0 1.14938 -450.654 -460.05)"><circle cx="391.399" cy="540.31" r="13.404" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><circle cx="408.704" cy="540.31" r="13.404" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><circle cx="390.672" cy="612.173" r="13.404" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M400.08 609.923v-71.438" style="fill:none;fill-rule:evenodd;stroke:#004900;stroke-width:29.07647514;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><circle cx="409.673" cy="612.173" r="13.404" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><circle cx="406.897" cy="574.399" r="16.323" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><circle cx="393.352" cy="574.399" r="16.323" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M399.97 537.21v22.661m0 28.679v21.47" style="fill:none;fill-rule:evenodd;stroke:#fff;stroke-width:8.37332146;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><path d="M399.468 574.027h1.008" style="fill:none;fill-rule:evenodd;stroke:#fff;stroke-width:8.37332146;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/></g><g transform="matrix(1.5015 0 0 1.14938 -555.323 -460.05)"><circle cx="391.399" cy="540.31" r="13.404" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><circle cx="408.704" cy="540.31" r="13.404" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><circle cx="390.672" cy="612.173" r="13.404" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M400.08 609.923v-71.438" style="fill:none;fill-rule:evenodd;stroke:#004900;stroke-width:29.07647514;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><circle cx="409.673" cy="612.173" r="13.404" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><circle cx="406.897" cy="574.399" r="16.323" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><circle cx="393.352" cy="574.399" r="16.323" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M399.97 537.21v22.661m0 28.679v21.47" style="fill:none;fill-rule:evenodd;stroke:#fff;stroke-width:8.37332153;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><path d="M399.468 574.027h1.008" style="fill:none;fill-rule:evenodd;stroke:#fff;stroke-width:8.37332153;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/></g><g transform="matrix(1.5015 0 0 1.14938 -346.89 -460.05)"><circle cx="391.399" cy="540.31" r="13.404" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><circle cx="408.704" cy="540.31" r="13.404" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><circle cx="390.672" cy="612.173" r="13.404" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M400.08 609.923v-71.438" style="fill:none;fill-rule:evenodd;stroke:#004900;stroke-width:29.07647514;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><circle cx="409.673" cy="612.173" r="13.404" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><circle cx="406.897" cy="574.399" r="16.323" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><circle cx="393.352" cy="574.399" r="16.323" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M399.97 537.21v22.661m0 28.679v21.47" style="fill:none;fill-rule:evenodd;stroke:#fff;stroke-width:8.37332153;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><path d="M399.468 574.027h1.008" style="fill:none;fill-rule:evenodd;stroke:#fff;stroke-width:8.37332153;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 400"><g transform="translate(0 -652.362)"><ellipse cx="239.372" cy="679.605" rx="23.672" ry="18.317" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="238.205" cy="822.877" rx="23.672" ry="18.317" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="242.507" cy="745.216" rx="31.447" ry="24.334" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="267.154" cy="679.605" rx="23.672" ry="18.317" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M253.309 812.343V683.17" style="fill:none;fill-rule:evenodd;stroke:#004900;stroke-width:52.75361252;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><ellipse cx="253.309" cy="682.585" rx="8.625" ry="8.342" style="opacity:1;fill:#fff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="m73.607 743.873 63.175-.06" style="fill:none;fill-rule:evenodd;stroke:#004900;stroke-width:34.7848587;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><path d="M120.324 780.515 70.302 767.61" style="fill:none;fill-rule:evenodd;stroke:#004900;stroke-width:46.37981033;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><path d="m66.184 814.606 104.461-86.352" style="fill:none;fill-rule:evenodd;stroke:#004900;stroke-width:45;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><ellipse cx="33.681" cy="679.605" rx="23.672" ry="18.317" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="61.463" cy="679.605" rx="23.672" ry="18.317" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="32.514" cy="822.877" rx="23.672" ry="18.317" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M47.618 812.343V683.17" style="fill:none;fill-rule:evenodd;stroke:#004900;stroke-width:52.75361252;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><ellipse cx="47.618" cy="682.585" rx="8.625" ry="8.342" style="opacity:1;fill:#fff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="63.019" cy="822.877" rx="23.672" ry="18.317" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="58.562" cy="745.216" rx="31.447" ry="24.334" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="36.816" cy="745.216" rx="31.447" ry="24.334" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M47.618 684.686v36.297m0 51.791v44.825" style="fill:none;fill-rule:evenodd;stroke:#fff;stroke-width:12;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><path d="M38.644 757.672c4.055-6.177 14.924-5.911 18.337 0m-18.337-17.539c4.055-6.178 14.924-5.912 18.337 0" style="fill:none;fill-rule:evenodd;stroke:#fff;stroke-width:10;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><path d="m226.627 743.873-63.175-.06" style="fill:none;fill-rule:evenodd;stroke:#004900;stroke-width:34.7848587;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><ellipse cx="268.71" cy="822.877" rx="23.672" ry="18.317" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="m234.05 814.606-104.462-86.352" style="fill:none;fill-rule:evenodd;stroke:#004900;stroke-width:45;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><ellipse cx="264.252" cy="745.216" rx="31.447" ry="24.334" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><rect width="55.25" height="74.041" x="122.302" y="708.359" rx="1.946" ry="2.768" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:40;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="m115.505 764.144 6.983 6.833m14.007-17.701 13.383-10.623.05-14.823" style="fill:none;fill-rule:evenodd;stroke:#fff;stroke-width:12;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><path d="m179.91 780.515 50.022-12.906" style="fill:none;fill-rule:evenodd;stroke:#004900;stroke-width:46.37981033;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><path d="M253.309 684.686v36.297m-22.795 87.262-32.982-27.063m55.777-8.408v44.825" style="fill:none;fill-rule:evenodd;stroke:#fff;stroke-width:12;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><path d="M244.334 757.672c4.056-6.177 14.925-5.911 18.338 0m-18.338-17.539c4.056-6.178 14.925-5.912 18.338 0" style="fill:none;fill-rule:evenodd;stroke:#fff;stroke-width:10;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><path d="m184.653 764.069-6.833 6.982m38.585-9.333-13.506-10.82m-39.16 2.378-13.383-10.623-.05-14.823M69.72 808.245l32.982-27.063m-18.874-19.464 13.507-10.82" style="fill:none;fill-rule:evenodd;stroke:#fff;stroke-width:12;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/></g><g transform="matrix(1 0 0 -1 0 1052.412)"><ellipse cx="239.372" cy="679.605" rx="23.672" ry="18.317" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="238.205" cy="822.877" rx="23.672" ry="18.317" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="242.507" cy="745.216" rx="31.447" ry="24.334" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="267.154" cy="679.605" rx="23.672" ry="18.317" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M253.309 812.343V683.17" style="fill:none;fill-rule:evenodd;stroke:#004900;stroke-width:52.75361252;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><ellipse cx="253.309" cy="682.585" rx="8.625" ry="8.342" style="opacity:1;fill:#fff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="m73.607 743.873 63.175-.06" style="fill:none;fill-rule:evenodd;stroke:#004900;stroke-width:34.7848587;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><path d="M120.324 780.515 70.302 767.61" style="fill:none;fill-rule:evenodd;stroke:#004900;stroke-width:46.37981033;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><path d="m66.184 814.606 104.461-86.352" style="fill:none;fill-rule:evenodd;stroke:#004900;stroke-width:45;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><ellipse cx="33.681" cy="679.605" rx="23.672" ry="18.317" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="61.463" cy="679.605" rx="23.672" ry="18.317" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="32.514" cy="822.877" rx="23.672" ry="18.317" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M47.618 812.343V683.17" style="fill:none;fill-rule:evenodd;stroke:#004900;stroke-width:52.75361252;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><ellipse cx="47.618" cy="682.585" rx="8.625" ry="8.342" style="opacity:1;fill:#fff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="63.019" cy="822.877" rx="23.672" ry="18.317" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="58.562" cy="745.216" rx="31.447" ry="24.334" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><ellipse cx="36.816" cy="745.216" rx="31.447" ry="24.334" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M47.618 684.686v36.297m0 51.791v44.825" style="fill:none;fill-rule:evenodd;stroke:#fff;stroke-width:12;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><path d="M38.644 757.672c4.055-6.177 14.924-5.911 18.337 0m-18.337-17.539c4.055-6.178 14.924-5.912 18.337 0" style="fill:none;fill-rule:evenodd;stroke:#fff;stroke-width:10;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><path d="m226.627 743.873-63.175-.06" style="fill:none;fill-rule:evenodd;stroke:#004900;stroke-width:34.7848587;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><ellipse cx="268.71" cy="822.877" rx="23.672" ry="18.317" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="m234.05 814.606-104.462-86.352" style="fill:none;fill-rule:evenodd;stroke:#004900;stroke-width:45;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><ellipse cx="264.252" cy="745.216" rx="31.447" ry="24.334" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><rect width="55.25" height="74.041" x="122.302" y="708.359" rx="1.946" ry="2.768" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:40;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="m115.505 764.144 6.983 6.833m14.007-17.701 13.383-10.623.05-14.823" style="fill:none;fill-rule:evenodd;stroke:#fff;stroke-width:12;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><path d="m179.91 780.515 50.022-12.906" style="fill:none;fill-rule:evenodd;stroke:#004900;stroke-width:46.37981033;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><path d="M253.309 684.686v36.297m-22.795 87.262-32.982-27.063m55.777-8.408v44.825" style="fill:none;fill-rule:evenodd;stroke:#fff;stroke-width:12;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><path d="M244.334 757.672c4.056-6.177 14.925-5.911 18.338 0m-18.338-17.539c4.056-6.178 14.925-5.912 18.338 0" style="fill:none;fill-rule:evenodd;stroke:#fff;stroke-width:10;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><path d="m184.653 764.069-6.833 6.982m38.585-9.333-13.506-10.82m-39.16 2.378-13.383-10.623-.05-14.823M69.72 808.245l32.982-27.063m-18.874-19.464 13.507-10.82" style="fill:none;fill-rule:evenodd;stroke:#fff;stroke-width:12;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 400"><g transform="matrix(1.5015 0 0 1.14938 -450.654 -595.069)"><circle cx="391.399" cy="540.31" r="13.404" style="opacity:1;fill:#b93c3c;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><circle cx="408.704" cy="540.31" r="13.404" style="opacity:1;fill:#b93c3c;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><circle cx="390.672" cy="612.173" r="13.404" style="opacity:1;fill:#b93c3c;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M400.08 609.923v-71.438" style="fill:none;fill-rule:evenodd;stroke:#b93c3c;stroke-width:29.07647514;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><circle cx="409.673" cy="612.173" r="13.404" style="opacity:1;fill:#b93c3c;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><circle cx="406.897" cy="574.399" r="16.323" style="opacity:1;fill:#b93c3c;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><circle cx="393.352" cy="574.399" r="16.323" style="opacity:1;fill:#b93c3c;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M399.97 537.21v22.661m0 28.679v21.47" style="fill:none;fill-rule:evenodd;stroke:#fff;stroke-width:8.37332153;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><path d="M399.468 574.027h1.008" style="fill:none;fill-rule:evenodd;stroke:#fff;stroke-width:8.37332153;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/></g><g transform="matrix(1.5015 0 0 1.14938 -555.323 -328.092)"><circle cx="391.399" cy="540.31" r="13.404" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><circle cx="408.704" cy="540.31" r="13.404" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><circle cx="390.672" cy="612.173" r="13.404" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M400.08 609.923v-71.438" style="fill:none;fill-rule:evenodd;stroke:#004900;stroke-width:29.07647514;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><circle cx="409.673" cy="612.173" r="13.404" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><circle cx="406.897" cy="574.399" r="16.323" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><circle cx="393.352" cy="574.399" r="16.323" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M399.97 537.21v22.661m0 28.679v21.47" style="fill:none;fill-rule:evenodd;stroke:#fff;stroke-width:8.37332153;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><path d="M399.468 574.027h1.008" style="fill:none;fill-rule:evenodd;stroke:#fff;stroke-width:8.37332153;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/></g><g transform="matrix(1.5015 0 0 1.14938 -346.89 -328.092)"><circle cx="391.399" cy="540.31" r="13.404" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><circle cx="408.704" cy="540.31" r="13.404" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><circle cx="390.672" cy="612.173" r="13.404" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M400.08 609.923v-71.438" style="fill:none;fill-rule:evenodd;stroke:#004900;stroke-width:29.07647514;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><circle cx="409.673" cy="612.173" r="13.404" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><circle cx="406.897" cy="574.399" r="16.323" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><circle cx="393.352" cy="574.399" r="16.323" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M399.97 537.21v22.661m0 28.679v21.47" style="fill:none;fill-rule:evenodd;stroke:#fff;stroke-width:8.37332153;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><path d="M399.468 574.027h1.008" style="fill:none;fill-rule:evenodd;stroke:#fff;stroke-width:8.37332153;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/></g><g transform="matrix(1.5015 0 0 1.14938 -555.323 -460.05)"><circle cx="391.399" cy="540.31" r="13.404" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><circle cx="408.704" cy="540.31" r="13.404" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><circle cx="390.672" cy="612.173" r="13.404" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M400.08 609.923v-71.438" style="fill:none;fill-rule:evenodd;stroke:#004900;stroke-width:29.07647514;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><circle cx="409.673" cy="612.173" r="13.404" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><circle cx="406.897" cy="574.399" r="16.323" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><circle cx="393.352" cy="574.399" r="16.323" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M399.97 537.21v22.661m0 28.679v21.47" style="fill:none;fill-rule:evenodd;stroke:#fff;stroke-width:8.37332153;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><path d="M399.468 574.027h1.008" style="fill:none;fill-rule:evenodd;stroke:#fff;stroke-width:8.37332153;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/></g><g transform="matrix(1.5015 0 0 1.14938 -346.89 -460.05)"><circle cx="391.399" cy="540.31" r="13.404" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><circle cx="408.704" cy="540.31" r="13.404" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><circle cx="390.672" cy="612.173" r="13.404" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M400.08 609.923v-71.438" style="fill:none;fill-rule:evenodd;stroke:#004900;stroke-width:29.07647514;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><circle cx="409.673" cy="612.173" r="13.404" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><circle cx="406.897" cy="574.399" r="16.323" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><circle cx="393.352" cy="574.399" r="16.323" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M399.97 537.21v22.661m0 28.679v21.47" style="fill:none;fill-rule:evenodd;stroke:#fff;stroke-width:8.37332153;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><path d="M399.468 574.027h1.008" style="fill:none;fill-rule:evenodd;stroke:#fff;stroke-width:8.37332153;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/></g><g transform="matrix(1.5015 0 0 1.14938 -450.654 -460.05)"><circle cx="391.399" cy="540.31" r="13.404" style="opacity:1;fill:#b93c3c;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><circle cx="408.704" cy="540.31" r="13.404" style="opacity:1;fill:#b93c3c;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><circle cx="390.672" cy="612.173" r="13.404" style="opacity:1;fill:#b93c3c;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M400.08 609.923v-71.438" style="fill:none;fill-rule:evenodd;stroke:#b93c3c;stroke-width:29.07647514;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><circle cx="409.673" cy="612.173" r="13.404" style="opacity:1;fill:#b93c3c;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><circle cx="406.897" cy="574.399" r="16.323" style="opacity:1;fill:#b93c3c;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><circle cx="393.352" cy="574.399" r="16.323" style="opacity:1;fill:#b93c3c;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M399.97 537.21v22.661m0 28.679v21.47" style="fill:none;fill-rule:evenodd;stroke:#fff;stroke-width:8.37332153;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><path d="M399.468 574.027h1.008" style="fill:none;fill-rule:evenodd;stroke:#fff;stroke-width:8.37332153;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/></g><g transform="matrix(1.5015 0 0 1.14938 -450.654 -328.092)"><circle cx="391.399" cy="540.31" r="13.404" style="opacity:1;fill:#b93c3c;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><circle cx="408.704" cy="540.31" r="13.404" style="opacity:1;fill:#b93c3c;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><circle cx="390.672" cy="612.173" r="13.404" style="opacity:1;fill:#b93c3c;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M400.08 609.923v-71.438" style="fill:none;fill-rule:evenodd;stroke:#b93c3c;stroke-width:29.07647514;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><circle cx="409.673" cy="612.173" r="13.404" style="opacity:1;fill:#b93c3c;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><circle cx="406.897" cy="574.399" r="16.323" style="opacity:1;fill:#b93c3c;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><circle cx="393.352" cy="574.399" r="16.323" style="opacity:1;fill:#b93c3c;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M399.97 537.21v22.661m0 28.679v21.47" style="fill:none;fill-rule:evenodd;stroke:#fff;stroke-width:8.37332153;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><path d="M399.468 574.027h1.008" style="fill:none;fill-rule:evenodd;stroke:#fff;stroke-width:8.37332153;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/></g><g transform="matrix(1.5015 0 0 1.14938 -555.323 -595.069)"><circle cx="391.399" cy="540.31" r="13.404" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><circle cx="408.704" cy="540.31" r="13.404" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><circle cx="390.672" cy="612.173" r="13.404" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M400.08 609.923v-71.438" style="fill:none;fill-rule:evenodd;stroke:#004900;stroke-width:29.07647514;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><circle cx="409.673" cy="612.173" r="13.404" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><circle cx="406.897" cy="574.399" r="16.323" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><circle cx="393.352" cy="574.399" r="16.323" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M399.97 537.21v22.661m0 28.679v21.47" style="fill:none;fill-rule:evenodd;stroke:#fff;stroke-width:8.37332153;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><path d="M399.468 574.027h1.008" style="fill:none;fill-rule:evenodd;stroke:#fff;stroke-width:8.37332153;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/></g><g transform="matrix(1.5015 0 0 1.14938 -346.89 -595.069)"><circle cx="391.399" cy="540.31" r="13.404" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><circle cx="408.704" cy="540.31" r="13.404" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><circle cx="390.672" cy="612.173" r="13.404" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M400.08 609.923v-71.438" style="fill:none;fill-rule:evenodd;stroke:#004900;stroke-width:29.07647514;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><circle cx="409.673" cy="612.173" r="13.404" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><circle cx="406.897" cy="574.399" r="16.323" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><circle cx="393.352" cy="574.399" r="16.323" style="opacity:1;fill:#004900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/><path d="M399.97 537.21v22.661m0 28.679v21.47" style="fill:none;fill-rule:evenodd;stroke:#fff;stroke-width:8.37332153;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><path d="M399.468 574.027h1.008" style="fill:none;fill-rule:evenodd;stroke:#fff;stroke-width:8.37332153;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 400"><path d="M233.625 755.291C178.135 766.78 64.371 790.8 58.64 785.711c-15.982-10.874-32.954-4.258-22.85 10.4 16.24 27.58 41.082 52.952 53.053 82.844 2.289 4.334 4.579 5.01 6.867 4.976 34.894.598 59.617-7.137 92.96-10 5.246-.506 12.18 5.197 16.077 3.494 3.453-1.88 4.89-8.567 5.8-12.759 6.858-25.415 28.052-47.677 39.896-72.713 1.505-2.995 9.845-3.55 9.782-6.44-1.22-10.817-17.304-30.706-26.6-30.222zm-23.14 33.579c12.463-.305-.398 25.045-5.5 26.11-5.685.836-6.591-7.302-13.558-7.445-5.234.548-4.043 3.93-9.439 5.54-32.92 6.465-57.052 8.76-91.401 12.136-4.333.11-15.065-17.221-9.014-18.63 40.94-9.937 109.784-17.444 128.913-17.711zm-16.389 50.027c4.014 6.867-2.844 13.8-7.809 14.563-30.193 4.515-78.253 12.148-82.006 8.231-2.67-2.844-8.083-10.979-7.222-16.538 11.136-3.715 92.3-14.424 97.038-6.256z" style="fill:#142896;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" transform="matrix(.9007 0 0 .97529 22.48 -631.283)"/><path d="M123.101 656.13c-18.37-7.4-20.372 5.833-17.903 14.339 6.214 20.201 14.429 28.632 24.539 42.678 1.805 2.418 3.809 7.059 3.505 9.27l-2.804 207.597c.025 6.499-1.223 27.056-5.337 23.814-16.257-12.357-21.17-19.293-47.244-51.546-11.141-14.929-19.889-6.944-6.366 12.591 42.46 54.624 46.08 59.834 46.707 115.107 1.624 29.179 31.758 24.649 34.572 6.138 3.43-19.971-1.647-51.783-1.85-73.761-.774-84.028-.86-158.338 12.845-239.534 2.594-12.667 22.99-23.066 33.975-26.71 4.866-1.62 10.287-13.975.9-14.453-25.18-2.649-52.283-15.551-75.539-25.53z" style="fill:#142896;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" transform="matrix(.9007 0 0 .97529 22.48 -631.283)"/><path d="M90.059 749.955c-28.498-1.307-7.408 15.787-1.003 15.355 35.47-3.222 93.934-11.664 130.102-19.89 2.503-.078-.19-17.19-17.338-18.919-5.213-.255-4.317 2.601-10.48 4.835-27.632 6.003-76.155 20.22-101.281 18.62zm11.021 110.52c-20.041 38.808-38.468 52.625-99.097 78.81-23.46 9.394-21.788 23.654 6.644 13.897 77.17-29.987 93.352-48.707 105.936-85.053Zm47.824.762c24.812 28.938 58.744 106.952 77.56 95.367 14.853-9.54 33.95-10.668 42.066-8.482 10.623 2.799 11.134 7.754 17.08 10.97 15.635 6.588 12.364-2.021 6.937-9.595-14.043-21.6-80.571-34.668-122.31-92.57z" style="fill:#142896;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" transform="matrix(.9007 0 0 .97529 22.48 -631.283)"/></svg>
@@ -0,0 +1,103 @@
1
+ import React from 'react';
2
+ import {
3
+ Man1Black,
4
+ Man2Black,
5
+ Man3Black,
6
+ Man4Black,
7
+ Man5Black,
8
+ Man5DoraBlack,
9
+ Man6Black,
10
+ Man7Black,
11
+ Man8Black,
12
+ Man9Black,
13
+ Pin1Black,
14
+ Pin2Black,
15
+ Pin3Black,
16
+ Pin4Black,
17
+ Pin5Black,
18
+ Pin5DoraBlack,
19
+ Pin6Black,
20
+ Pin7Black,
21
+ Pin8Black,
22
+ Pin9Black,
23
+ Sou1Black,
24
+ Sou2Black,
25
+ Sou3Black,
26
+ Sou4Black,
27
+ Sou5Black,
28
+ Sou5DoraBlack,
29
+ Sou6Black,
30
+ Sou7Black,
31
+ Sou8Black,
32
+ Sou9Black,
33
+ TonBlack,
34
+ NanBlack,
35
+ ShaaBlack,
36
+ PeiBlack,
37
+ ChunBlack,
38
+ HakuBlack,
39
+ HatsuBlack,
40
+ BlankBlack,
41
+ } from '../src';
42
+
43
+ export default {
44
+ /* 👇 The title prop is optional.
45
+ * See https://storybook.js.org/docs/react/configure/overview#configure-story-loading
46
+ * to learn how to generate automatic titles
47
+ */
48
+ title: 'Dark',
49
+ component: Man1Black,
50
+ decorators: [
51
+ Story => (
52
+ <div
53
+ style={{
54
+ width: 200,
55
+ borderRadius: '8px',
56
+ border: '1px dashed #d9d9d9',
57
+ backgroundColor: 'black',
58
+ }}
59
+ >
60
+ <Story />
61
+ </div>
62
+ ),
63
+ ],
64
+ };
65
+
66
+ export const Man_1 = () => <Man1Black />;
67
+ export const Man_2 = () => <Man2Black />;
68
+ export const Man_3 = () => <Man3Black />;
69
+ export const Man_4 = () => <Man4Black />;
70
+ export const Man_5 = () => <Man5Black />;
71
+ export const Man_5Dora = () => <Man5DoraBlack />;
72
+ export const Man_6 = () => <Man6Black />;
73
+ export const Man_7 = () => <Man7Black />;
74
+ export const Man_8 = () => <Man8Black />;
75
+ export const Man_9 = () => <Man9Black />;
76
+ export const Pin_1 = () => <Pin1Black />;
77
+ export const Pin_2 = () => <Pin2Black />;
78
+ export const Pin_3 = () => <Pin3Black />;
79
+ export const Pin_4 = () => <Pin4Black />;
80
+ export const Pin_5 = () => <Pin5Black />;
81
+ export const Pin_5Dora = () => <Pin5DoraBlack />;
82
+ export const Pin_6 = () => <Pin6Black />;
83
+ export const Pin_7 = () => <Pin7Black />;
84
+ export const Pin_8 = () => <Pin8Black />;
85
+ export const Pin_9 = () => <Pin9Black />;
86
+ export const Sou_1 = () => <Sou1Black />;
87
+ export const Sou_2 = () => <Sou2Black />;
88
+ export const Sou_3 = () => <Sou3Black />;
89
+ export const Sou_4 = () => <Sou4Black />;
90
+ export const Sou_5 = () => <Sou5Black />;
91
+ export const Sou_5Dora = () => <Sou5DoraBlack />;
92
+ export const Sou_6 = () => <Sou6Black />;
93
+ export const Sou_7 = () => <Sou7Black />;
94
+ export const Sou_8 = () => <Sou8Black />;
95
+ export const Sou_9 = () => <Sou9Black />;
96
+ export const East = () => <TonBlack />;
97
+ export const South = () => <NanBlack />;
98
+ export const West = () => <ShaaBlack />;
99
+ export const North = () => <PeiBlack />;
100
+ export const Red_Dragon = () => <ChunBlack />;
101
+ export const White_Dragon = () => <HakuBlack />;
102
+ export const Green_Dragon = () => <HatsuBlack />;
103
+ export const Question_Mark = () => <BlankBlack />;
@@ -0,0 +1,102 @@
1
+ import React from 'react';
2
+ import {
3
+ Man1,
4
+ Man2,
5
+ Man3,
6
+ Man4,
7
+ Man5,
8
+ Man5Dora,
9
+ Man6,
10
+ Man7,
11
+ Man8,
12
+ Man9,
13
+ Pin1,
14
+ Pin2,
15
+ Pin3,
16
+ Pin4,
17
+ Pin5,
18
+ Pin5Dora,
19
+ Pin6,
20
+ Pin7,
21
+ Pin8,
22
+ Pin9,
23
+ Sou1,
24
+ Sou2,
25
+ Sou3,
26
+ Sou4,
27
+ Sou5,
28
+ Sou5Dora,
29
+ Sou6,
30
+ Sou7,
31
+ Sou8,
32
+ Sou9,
33
+ Ton,
34
+ Nan,
35
+ Shaa,
36
+ Pei,
37
+ Chun,
38
+ Haku,
39
+ Hatsu,
40
+ Blank,
41
+ } from '../src';
42
+
43
+ export default {
44
+ /* 👇 The title prop is optional.
45
+ * See https://storybook.js.org/docs/react/configure/overview#configure-story-loading
46
+ * to learn how to generate automatic titles
47
+ */
48
+ title: 'Light',
49
+ component: Man1,
50
+ decorators: [
51
+ Story => (
52
+ <div
53
+ style={{
54
+ width: 200,
55
+ borderRadius: '8px',
56
+ border: '1px dashed #d9d9d9',
57
+ }}
58
+ >
59
+ <Story />
60
+ </div>
61
+ ),
62
+ ],
63
+ };
64
+
65
+ export const Man_1 = () => <Man1 />;
66
+ export const Man_2 = () => <Man2 />;
67
+ export const Man_3 = () => <Man3 />;
68
+ export const Man_4 = () => <Man4 />;
69
+ export const Man_5 = () => <Man5 />;
70
+ export const Man_5Dora = () => <Man5Dora />;
71
+ export const Man_6 = () => <Man6 />;
72
+ export const Man_7 = () => <Man7 />;
73
+ export const Man_8 = () => <Man8 />;
74
+ export const Man_9 = () => <Man9 />;
75
+ export const Pin_1 = () => <Pin1 />;
76
+ export const Pin_2 = () => <Pin2 />;
77
+ export const Pin_3 = () => <Pin3 />;
78
+ export const Pin_4 = () => <Pin4 />;
79
+ export const Pin_5 = () => <Pin5 />;
80
+ export const Pin_5Dora = () => <Pin5Dora />;
81
+ export const Pin_6 = () => <Pin6 />;
82
+ export const Pin_7 = () => <Pin7 />;
83
+ export const Pin_8 = () => <Pin8 />;
84
+ export const Pin_9 = () => <Pin9 />;
85
+ export const Sou_1 = () => <Sou1 />;
86
+ export const Sou_2 = () => <Sou2 />;
87
+ export const Sou_3 = () => <Sou3 />;
88
+ export const Sou_4 = () => <Sou4 />;
89
+ export const Sou_5 = () => <Sou5 />;
90
+ export const Sou_5Dora = () => <Sou5Dora />;
91
+ export const Sou_6 = () => <Sou6 />;
92
+ export const Sou_7 = () => <Sou7 />;
93
+ export const Sou_8 = () => <Sou8 />;
94
+ export const Sou_9 = () => <Sou9 />;
95
+ export const East = () => <Ton />;
96
+ export const South = () => <Nan />;
97
+ export const West = () => <Shaa />;
98
+ export const North = () => <Pei />;
99
+ export const Red_Dragon = () => <Chun />;
100
+ export const White_Dragon = () => <Haku />;
101
+ export const Green_Dragon = () => <Hatsu />;
102
+ export const Question_Mark = () => <Blank />;