@cyrilverloop/codingame-configuration 1.13.2 → 1.15.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 (1152) hide show
  1. package/CHANGELOG.md +77 -0
  2. package/README.md +1 -1
  3. package/config/easy/ASCIIArt/code/CGCode.cpp +25 -0
  4. package/config/easy/ASCIIArt/code/CGCode.java +24 -0
  5. package/config/easy/ASCIIArt/code/CGCode.ts +11 -0
  6. package/config/easy/CrackTheTrioCode/code/CGCode.cpp +17 -0
  7. package/config/easy/CrackTheTrioCode/code/CGCode.java +16 -0
  8. package/config/easy/CrackTheTrioCode/code/CGCode.js +6 -0
  9. package/config/easy/CrackTheTrioCode/code/CGCode.php +7 -0
  10. package/config/easy/CrackTheTrioCode/code/CGCode.ts +6 -0
  11. package/config/easy/CrackTheTrioCode/config.json +48 -0
  12. package/config/easy/CrackTheTrioCode/input/01 - test 1.txt +1 -0
  13. package/config/easy/CrackTheTrioCode/input/02 - test 2.txt +1 -0
  14. package/config/easy/CrackTheTrioCode/input/03 - test 3.txt +1 -0
  15. package/config/easy/CrackTheTrioCode/input/04 - test 4.txt +1 -0
  16. package/config/easy/CrackTheTrioCode/input/05 - test 5.txt +1 -0
  17. package/config/easy/CrackTheTrioCode/input/06 - test 6.txt +1 -0
  18. package/config/easy/CrackTheTrioCode/input/07 - test 7.txt +1 -0
  19. package/config/easy/CrackTheTrioCode/input/08 - test 8.txt +1 -0
  20. package/config/easy/CrackTheTrioCode/output/01 - test 1.txt +1 -0
  21. package/config/easy/CrackTheTrioCode/output/02 - test 2.txt +1 -0
  22. package/config/easy/CrackTheTrioCode/output/03 - test 3.txt +1 -0
  23. package/config/easy/CrackTheTrioCode/output/04 - test 4.txt +1 -0
  24. package/config/easy/CrackTheTrioCode/output/05 - test 5.txt +1 -0
  25. package/config/easy/CrackTheTrioCode/output/06 - test 6.txt +1 -0
  26. package/config/easy/CrackTheTrioCode/output/07 - test 7.txt +1 -0
  27. package/config/easy/CrackTheTrioCode/output/08 - test 8.txt +1 -0
  28. package/config/easy/Defibrillators/code/CGCode.cpp +25 -0
  29. package/config/easy/Defibrillators/code/CGCode.java +24 -0
  30. package/config/easy/Defibrillators/code/CGCode.ts +11 -0
  31. package/config/easy/EgyptianMultiplication/code/CGCode.cpp +18 -0
  32. package/config/easy/EgyptianMultiplication/code/CGCode.java +17 -0
  33. package/config/easy/EgyptianMultiplication/code/CGCode.js +8 -0
  34. package/config/easy/EgyptianMultiplication/code/CGCode.php +7 -0
  35. package/config/easy/EgyptianMultiplication/code/CGCode.ts +8 -0
  36. package/config/easy/EgyptianMultiplication/config.json +28 -0
  37. package/config/easy/EgyptianMultiplication/input/01 - Simple a less than b.txt +1 -0
  38. package/config/easy/EgyptianMultiplication/input/02 - Simple a greater than b.txt +1 -0
  39. package/config/easy/EgyptianMultiplication/input/03 - Zero.txt +1 -0
  40. package/config/easy/EgyptianMultiplication/input/04 - Bigger numbers.txt +1 -0
  41. package/config/easy/EgyptianMultiplication/output/01 - Simple a less than b.txt +5 -0
  42. package/config/easy/EgyptianMultiplication/output/02 - Simple a greater than b.txt +4 -0
  43. package/config/easy/EgyptianMultiplication/output/03 - Zero.txt +2 -0
  44. package/config/easy/EgyptianMultiplication/output/04 - Bigger numbers.txt +14 -0
  45. package/config/easy/HorseRacingDuals/code/CGCode.cpp +21 -0
  46. package/config/easy/HorseRacingDuals/code/CGCode.java +19 -0
  47. package/config/easy/HorseRacingDuals/code/CGCode.ts +9 -0
  48. package/config/easy/MIMEType/code/CGCode.cpp +30 -0
  49. package/config/easy/MIMEType/code/CGCode.java +27 -0
  50. package/config/easy/MIMEType/code/CGCode.ts +17 -0
  51. package/config/easy/ProductionPipeline/code/CGCode.cpp +23 -0
  52. package/config/easy/ProductionPipeline/code/CGCode.java +23 -0
  53. package/config/easy/ProductionPipeline/code/CGCode.js +10 -0
  54. package/config/easy/ProductionPipeline/code/CGCode.php +12 -0
  55. package/config/easy/ProductionPipeline/code/CGCode.ts +10 -0
  56. package/config/easy/ProductionPipeline/config.json +43 -0
  57. package/config/easy/ProductionPipeline/input/01 - test 1.txt +5 -0
  58. package/config/easy/ProductionPipeline/input/02 - test 2.txt +7 -0
  59. package/config/easy/ProductionPipeline/input/03 - test 3.txt +9 -0
  60. package/config/easy/ProductionPipeline/input/04 - test 4.txt +2 -0
  61. package/config/easy/ProductionPipeline/input/05 - test 5.txt +4 -0
  62. package/config/easy/ProductionPipeline/input/06 - test 6.txt +152 -0
  63. package/config/easy/ProductionPipeline/input/07 - test 7.txt +252 -0
  64. package/config/easy/ProductionPipeline/output/01 - test 1.txt +1 -0
  65. package/config/easy/ProductionPipeline/output/02 - test 2.txt +1 -0
  66. package/config/easy/ProductionPipeline/output/03 - test 3.txt +1 -0
  67. package/config/easy/ProductionPipeline/output/04 - test 4.txt +1 -0
  68. package/config/easy/ProductionPipeline/output/05 - test 5.txt +1 -0
  69. package/config/easy/ProductionPipeline/output/06 - test 6.txt +1 -0
  70. package/config/easy/ProductionPipeline/output/07 - test 7.txt +1 -0
  71. package/config/easy/SquashPi/code/CGCode.cpp +19 -0
  72. package/config/easy/SquashPi/code/CGCode.java +17 -0
  73. package/config/easy/SquashPi/code/CGCode.js +7 -0
  74. package/config/easy/SquashPi/code/CGCode.php +8 -0
  75. package/config/easy/SquashPi/code/CGCode.ts +7 -0
  76. package/config/easy/SquashPi/config.json +33 -0
  77. package/config/easy/SquashPi/input/01 - test 1.txt +2 -0
  78. package/config/easy/SquashPi/input/02 - test 2.txt +2 -0
  79. package/config/easy/SquashPi/input/03 - test 3.txt +2 -0
  80. package/config/easy/SquashPi/input/04 - test 4.txt +2 -0
  81. package/config/easy/SquashPi/input/05 - test 5.txt +2 -0
  82. package/config/easy/SquashPi/output/01 - test 1.txt +1 -0
  83. package/config/easy/SquashPi/output/02 - test 2.txt +1 -0
  84. package/config/easy/SquashPi/output/03 - test 3.txt +1 -0
  85. package/config/easy/SquashPi/output/04 - test 4.txt +1 -0
  86. package/config/easy/SquashPi/output/05 - test 5.txt +1 -0
  87. package/config/easy/Temperatures/code/CGCode.cpp +21 -0
  88. package/config/easy/Temperatures/code/CGCode.java +19 -0
  89. package/config/easy/Temperatures/code/CGCode.ts +10 -0
  90. package/config/easy/Unary/code/CGCode.cpp +17 -0
  91. package/config/easy/Unary/code/CGCode.java +16 -0
  92. package/config/easy/Unary/code/CGCode.ts +6 -0
  93. package/config/expert/MusicScores/code/CGCode.cpp +20 -0
  94. package/config/expert/MusicScores/code/CGCode.java +21 -0
  95. package/config/expert/MusicScores/code/CGCode.ts +9 -0
  96. package/config/expert/NintendoSponsoredChallenge/code/CGCode.cpp +19 -0
  97. package/config/expert/NintendoSponsoredChallenge/config.json +38 -0
  98. package/config/expert/NintendoSponsoredChallenge/input/01 - 32 bits.txt +2 -0
  99. package/config/expert/NintendoSponsoredChallenge/input/02 - 32 bits.txt +2 -0
  100. package/config/expert/NintendoSponsoredChallenge/input/03 - 32 bits.txt +2 -0
  101. package/config/expert/NintendoSponsoredChallenge/input/04 - 32 bits.txt +2 -0
  102. package/config/expert/NintendoSponsoredChallenge/input/05 - 128 bits.txt +2 -0
  103. package/config/expert/NintendoSponsoredChallenge/input/06 - 256 bits (for mega NERD only).txt +2 -0
  104. package/config/expert/NintendoSponsoredChallenge/output/01 - 32 bits.txt +4 -0
  105. package/config/expert/NintendoSponsoredChallenge/output/02 - 32 bits.txt +4 -0
  106. package/config/expert/NintendoSponsoredChallenge/output/03 - 32 bits.txt +2 -0
  107. package/config/expert/NintendoSponsoredChallenge/output/04 - 32 bits.txt +2 -0
  108. package/config/expert/NintendoSponsoredChallenge/output/05 - 128 bits.txt +2 -0
  109. package/config/expert/NintendoSponsoredChallenge/output/06 - 256 bits (for mega NERD only).txt +2 -0
  110. package/config/expert/TheResistance/code/CGCode.cpp +23 -0
  111. package/config/expert/TheResistance/code/CGCode.java +20 -0
  112. package/config/expert/TheResistance/code/CGCode.ts +10 -0
  113. package/config/hard/AGameOfGo/code/CGCode.cpp +27 -0
  114. package/config/hard/AGameOfGo/code/CGCode.java +26 -0
  115. package/config/hard/AGameOfGo/code/CGCode.js +13 -0
  116. package/config/hard/AGameOfGo/code/CGCode.php +18 -0
  117. package/config/hard/AGameOfGo/code/CGCode.ts +13 -0
  118. package/config/hard/AGameOfGo/config.json +43 -0
  119. package/config/hard/AGameOfGo/input/01 - Some stones on an empty field.txt +12 -0
  120. package/config/hard/AGameOfGo/input/02 - Stones get removed.txt +14 -0
  121. package/config/hard/AGameOfGo/input/03 - Field not free.txt +8 -0
  122. package/config/hard/AGameOfGo/input/04 - Suicidal move.txt +12 -0
  123. package/config/hard/AGameOfGo/input/05 - Non-Suicidal move.txt +14 -0
  124. package/config/hard/AGameOfGo/input/06 - Ko rule violated.txt +10 -0
  125. package/config/hard/AGameOfGo/input/07 - Bigger field.txt +21 -0
  126. package/config/hard/AGameOfGo/output/01 - Some stones on an empty field.txt +5 -0
  127. package/config/hard/AGameOfGo/output/02 - Stones get removed.txt +5 -0
  128. package/config/hard/AGameOfGo/output/03 - Field not free.txt +1 -0
  129. package/config/hard/AGameOfGo/output/04 - Suicidal move.txt +1 -0
  130. package/config/hard/AGameOfGo/output/05 - Non-Suicidal move.txt +5 -0
  131. package/config/hard/AGameOfGo/output/06 - Ko rule violated.txt +1 -0
  132. package/config/hard/AGameOfGo/output/07 - Bigger field.txt +9 -0
  133. package/config/hard/AlternativeVote/code/CGCode.cpp +27 -0
  134. package/config/hard/AlternativeVote/code/CGCode.java +29 -0
  135. package/config/hard/AlternativeVote/code/CGCode.js +13 -0
  136. package/config/hard/AlternativeVote/code/CGCode.php +16 -0
  137. package/config/hard/AlternativeVote/code/CGCode.ts +13 -0
  138. package/config/hard/AlternativeVote/config.json +28 -0
  139. package/config/hard/AlternativeVote/input/01 - Example.txt +12 -0
  140. package/config/hard/AlternativeVote/input/02 - 3 candidates.txt +10 -0
  141. package/config/hard/AlternativeVote/input/03 - 5 candidates.txt +17 -0
  142. package/config/hard/AlternativeVote/input/04 - 2 candidats.txt +1003 -0
  143. package/config/hard/AlternativeVote/output/01 - Example.txt +3 -0
  144. package/config/hard/AlternativeVote/output/02 - 3 candidates.txt +3 -0
  145. package/config/hard/AlternativeVote/output/03 - 5 candidates.txt +5 -0
  146. package/config/hard/AlternativeVote/output/04 - 2 candidats.txt +2 -0
  147. package/config/hard/AppleTree/code/CGCode.cpp +25 -0
  148. package/config/hard/AppleTree/code/CGCode.java +23 -0
  149. package/config/hard/AppleTree/code/CGCode.js +15 -0
  150. package/config/hard/AppleTree/code/CGCode.php +11 -0
  151. package/config/hard/AppleTree/code/CGCode.ts +15 -0
  152. package/config/hard/AppleTree/config.json +38 -0
  153. package/config/hard/AppleTree/input/01 - No collisions.txt +3 -0
  154. package/config/hard/AppleTree/input/02 - Single collision.txt +7 -0
  155. package/config/hard/AppleTree/input/03 - Multiple collisions.txt +6 -0
  156. package/config/hard/AppleTree/input/04 - Cascade.txt +9 -0
  157. package/config/hard/AppleTree/input/05 - Multiple cascades.txt +11 -0
  158. package/config/hard/AppleTree/input/06 - Tower.txt +101 -0
  159. package/config/hard/AppleTree/output/01 - No collisions.txt +1 -0
  160. package/config/hard/AppleTree/output/02 - Single collision.txt +1 -0
  161. package/config/hard/AppleTree/output/03 - Multiple collisions.txt +1 -0
  162. package/config/hard/AppleTree/output/04 - Cascade.txt +1 -0
  163. package/config/hard/AppleTree/output/05 - Multiple cascades.txt +1 -0
  164. package/config/hard/AppleTree/output/06 - Tower.txt +1 -0
  165. package/config/hard/BalancedLevers/code/CGCode.js +11 -0
  166. package/config/hard/BalancedLevers/code/CGCode.php +13 -0
  167. package/config/hard/BalancedLevers/config.json +83 -0
  168. package/config/hard/BalancedLevers/input/01 - 3w #1.txt +3 -0
  169. package/config/hard/BalancedLevers/input/02 - 3w #2.txt +3 -0
  170. package/config/hard/BalancedLevers/input/03 - 3w #3.txt +3 -0
  171. package/config/hard/BalancedLevers/input/04 - 4w #1.txt +3 -0
  172. package/config/hard/BalancedLevers/input/05 - 4w #2.txt +3 -0
  173. package/config/hard/BalancedLevers/input/06 - 4w #3.txt +3 -0
  174. package/config/hard/BalancedLevers/input/07 - 5w #1.txt +3 -0
  175. package/config/hard/BalancedLevers/input/08 - 5w #2.txt +3 -0
  176. package/config/hard/BalancedLevers/input/09 - 5w #3.txt +3 -0
  177. package/config/hard/BalancedLevers/input/10 - 6w #1.txt +3 -0
  178. package/config/hard/BalancedLevers/input/11 - 6w #2.txt +3 -0
  179. package/config/hard/BalancedLevers/input/12 - 6w #3.txt +3 -0
  180. package/config/hard/BalancedLevers/input/13 - Single.txt +3 -0
  181. package/config/hard/BalancedLevers/input/14 - Tiny room.txt +3 -0
  182. package/config/hard/BalancedLevers/input/15 - Twins.txt +3 -0
  183. package/config/hard/BalancedLevers/output/01 - 3w #1.txt +1 -0
  184. package/config/hard/BalancedLevers/output/02 - 3w #2.txt +1 -0
  185. package/config/hard/BalancedLevers/output/03 - 3w #3.txt +1 -0
  186. package/config/hard/BalancedLevers/output/04 - 4w #1.txt +1 -0
  187. package/config/hard/BalancedLevers/output/05 - 4w #2.txt +1 -0
  188. package/config/hard/BalancedLevers/output/06 - 4w #3.txt +1 -0
  189. package/config/hard/BalancedLevers/output/07 - 5w #1.txt +1 -0
  190. package/config/hard/BalancedLevers/output/08 - 5w #2.txt +1 -0
  191. package/config/hard/BalancedLevers/output/09 - 5w #3.txt +1 -0
  192. package/config/hard/BalancedLevers/output/10 - 6w #1.txt +1 -0
  193. package/config/hard/BalancedLevers/output/11 - 6w #2.txt +1 -0
  194. package/config/hard/BalancedLevers/output/12 - 6w #3.txt +1 -0
  195. package/config/hard/BalancedLevers/output/13 - Single.txt +1 -0
  196. package/config/hard/BalancedLevers/output/14 - Tiny room.txt +1 -0
  197. package/config/hard/BalancedLevers/output/15 - Twins.txt +1 -0
  198. package/config/hard/BasicDecisionTree1/code/CGCode.js +9 -0
  199. package/config/hard/BasicDecisionTree1/code/CGCode.php +11 -0
  200. package/config/hard/BasicDecisionTree1/config.json +28 -0
  201. package/config/hard/BasicDecisionTree1/input/01 - test 1.txt +3 -0
  202. package/config/hard/BasicDecisionTree1/input/02 - test 2.txt +7 -0
  203. package/config/hard/BasicDecisionTree1/input/03 - test 3.txt +7 -0
  204. package/config/hard/BasicDecisionTree1/input/04 - test 4.txt +5 -0
  205. package/config/hard/BasicDecisionTree1/output/01 - test 1.txt +1 -0
  206. package/config/hard/BasicDecisionTree1/output/02 - test 2.txt +1 -0
  207. package/config/hard/BasicDecisionTree1/output/03 - test 3.txt +1 -0
  208. package/config/hard/BasicDecisionTree1/output/04 - test 4.txt +1 -0
  209. package/config/hard/BasicDecisionTree2/code/CGCode.js +11 -0
  210. package/config/hard/BasicDecisionTree2/code/CGCode.php +13 -0
  211. package/config/hard/BasicDecisionTree2/config.json +33 -0
  212. package/config/hard/BasicDecisionTree2/input/01 - test 1.txt +5 -0
  213. package/config/hard/BasicDecisionTree2/input/02 - test 2.txt +9 -0
  214. package/config/hard/BasicDecisionTree2/input/03 - test 3.txt +9 -0
  215. package/config/hard/BasicDecisionTree2/input/04 - test 4.txt +9 -0
  216. package/config/hard/BasicDecisionTree2/input/05 - test 5.txt +12 -0
  217. package/config/hard/BasicDecisionTree2/output/01 - test 1.txt +1 -0
  218. package/config/hard/BasicDecisionTree2/output/02 - test 2.txt +1 -0
  219. package/config/hard/BasicDecisionTree2/output/03 - test 3.txt +1 -0
  220. package/config/hard/BasicDecisionTree2/output/04 - test 4.txt +1 -0
  221. package/config/hard/BasicDecisionTree2/output/05 - test 5.txt +1 -0
  222. package/config/hard/BlunderEpisode2/code/CGCode.cpp +21 -0
  223. package/config/hard/BlunderEpisode2/code/CGCode.java +22 -0
  224. package/config/hard/BlunderEpisode2/code/CGCode.ts +9 -0
  225. package/config/hard/BlunderEpisode3/code/CGCode.cpp +22 -0
  226. package/config/hard/BlunderEpisode3/code/CGCode.java +20 -0
  227. package/config/hard/BlunderEpisode3/code/CGCode.ts +11 -0
  228. package/config/hard/Breakout/code/CGCode.cpp +37 -0
  229. package/config/hard/Breakout/code/CGCode.java +31 -0
  230. package/config/hard/Breakout/code/CGCode.js +25 -0
  231. package/config/hard/Breakout/code/CGCode.php +18 -0
  232. package/config/hard/Breakout/code/CGCode.ts +25 -0
  233. package/config/hard/Breakout/config.json +38 -0
  234. package/config/hard/Breakout/input/01 - Straight out.txt +6 -0
  235. package/config/hard/Breakout/input/02 - One brick.txt +6 -0
  236. package/config/hard/Breakout/input/03 - Off the walls.txt +6 -0
  237. package/config/hard/Breakout/input/04 - Escape.txt +53 -0
  238. package/config/hard/Breakout/input/05 - Off the paddle.txt +6 -0
  239. package/config/hard/Breakout/input/06 - Good game.txt +88 -0
  240. package/config/hard/Breakout/output/01 - Straight out.txt +1 -0
  241. package/config/hard/Breakout/output/02 - One brick.txt +1 -0
  242. package/config/hard/Breakout/output/03 - Off the walls.txt +1 -0
  243. package/config/hard/Breakout/output/04 - Escape.txt +1 -0
  244. package/config/hard/Breakout/output/05 - Off the paddle.txt +1 -0
  245. package/config/hard/Breakout/output/06 - Good game.txt +1 -0
  246. package/config/hard/CGChatInterpreter/code/CGCode.cpp +32 -0
  247. package/config/hard/CGChatInterpreter/code/CGCode.java +30 -0
  248. package/config/hard/CGChatInterpreter/code/CGCode.js +20 -0
  249. package/config/hard/CGChatInterpreter/code/CGCode.php +22 -0
  250. package/config/hard/CGChatInterpreter/code/CGCode.ts +20 -0
  251. package/config/hard/CGChatInterpreter/config.json +63 -0
  252. package/config/hard/CGChatInterpreter/input/01 - Syntax Constants.txt +29 -0
  253. package/config/hard/CGChatInterpreter/input/02 - Syntax Context.txt +42 -0
  254. package/config/hard/CGChatInterpreter/input/03 - Syntax Addition.txt +21 -0
  255. package/config/hard/CGChatInterpreter/input/04 - Syntax Subtraction.txt +20 -0
  256. package/config/hard/CGChatInterpreter/input/05 - Syntax Multiplication.txt +22 -0
  257. package/config/hard/CGChatInterpreter/input/06 - Syntax Squares.txt +17 -0
  258. package/config/hard/CGChatInterpreter/input/07 - Syntax me and you.txt +32 -0
  259. package/config/hard/CGChatInterpreter/input/08 - Syntax Nick references.txt +33 -0
  260. package/config/hard/CGChatInterpreter/input/09 - Syntax pop, dup, flip.txt +35 -0
  261. package/config/hard/CGChatInterpreter/input/10 - Syntax Nested arithmetic.txt +21 -0
  262. package/config/hard/CGChatInterpreter/input/11 - Quiz.txt +96 -0
  263. package/config/hard/CGChatInterpreter/output/01 - Syntax Constants.txt +1 -0
  264. package/config/hard/CGChatInterpreter/output/02 - Syntax Context.txt +1 -0
  265. package/config/hard/CGChatInterpreter/output/03 - Syntax Addition.txt +1 -0
  266. package/config/hard/CGChatInterpreter/output/04 - Syntax Subtraction.txt +1 -0
  267. package/config/hard/CGChatInterpreter/output/05 - Syntax Multiplication.txt +1 -0
  268. package/config/hard/CGChatInterpreter/output/06 - Syntax Squares.txt +1 -0
  269. package/config/hard/CGChatInterpreter/output/07 - Syntax me and you.txt +1 -0
  270. package/config/hard/CGChatInterpreter/output/08 - Syntax Nick references.txt +1 -0
  271. package/config/hard/CGChatInterpreter/output/09 - Syntax pop, dup, flip.txt +1 -0
  272. package/config/hard/CGChatInterpreter/output/10 - Syntax Nested arithmetic.txt +1 -0
  273. package/config/hard/CGChatInterpreter/output/11 - Quiz.txt +1 -0
  274. package/config/hard/CGXFormatter/code/CGCode.cpp +21 -0
  275. package/config/hard/CGXFormatter/code/CGCode.java +22 -0
  276. package/config/hard/CGXFormatter/code/CGCode.ts +9 -0
  277. package/config/hard/CGsNextTopModel/code/CGCode.cpp +19 -0
  278. package/config/hard/CGsNextTopModel/code/CGCode.java +17 -0
  279. package/config/hard/CGsNextTopModel/code/CGCode.js +7 -0
  280. package/config/hard/CGsNextTopModel/code/CGCode.php +8 -0
  281. package/config/hard/CGsNextTopModel/code/CGCode.ts +7 -0
  282. package/config/hard/CGsNextTopModel/config.json +53 -0
  283. package/config/hard/CGsNextTopModel/input/01 - Linear.txt +2 -0
  284. package/config/hard/CGsNextTopModel/input/02 - Parabola.txt +2 -0
  285. package/config/hard/CGsNextTopModel/input/03 - Sine.txt +2 -0
  286. package/config/hard/CGsNextTopModel/input/04 - Exponential.txt +2 -0
  287. package/config/hard/CGsNextTopModel/input/05 - Mystery One.txt +2 -0
  288. package/config/hard/CGsNextTopModel/input/06 - Mystery Two.txt +2 -0
  289. package/config/hard/CGsNextTopModel/input/07 - Mystery Three.txt +2 -0
  290. package/config/hard/CGsNextTopModel/input/08 - Are you using test data correctly.txt +2 -0
  291. package/config/hard/CGsNextTopModel/input/09 - Make sure to use training and test.txt +2 -0
  292. package/config/hard/CGsNextTopModel/output/01 - Linear.txt +1 -0
  293. package/config/hard/CGsNextTopModel/output/02 - Parabola.txt +1 -0
  294. package/config/hard/CGsNextTopModel/output/03 - Sine.txt +1 -0
  295. package/config/hard/CGsNextTopModel/output/04 - Exponential.txt +1 -0
  296. package/config/hard/CGsNextTopModel/output/05 - Mystery One.txt +1 -0
  297. package/config/hard/CGsNextTopModel/output/06 - Mystery Two.txt +1 -0
  298. package/config/hard/CGsNextTopModel/output/07 - Mystery Three.txt +1 -0
  299. package/config/hard/CGsNextTopModel/output/08 - Are you using test data correctly.txt +1 -0
  300. package/config/hard/CGsNextTopModel/output/09 - Make sure to use training and test.txt +1 -0
  301. package/config/hard/CloudyWeather/code/CGCode.cpp +30 -0
  302. package/config/hard/CloudyWeather/code/CGCode.java +26 -0
  303. package/config/hard/CloudyWeather/code/CGCode.js +19 -0
  304. package/config/hard/CloudyWeather/code/CGCode.php +13 -0
  305. package/config/hard/CloudyWeather/code/CGCode.ts +19 -0
  306. package/config/hard/CloudyWeather/config.json +53 -0
  307. package/config/hard/CloudyWeather/input/01 - Very small map #1.txt +7 -0
  308. package/config/hard/CloudyWeather/input/02 - Small map #2.txt +43 -0
  309. package/config/hard/CloudyWeather/input/03 - Small map #3.txt +43 -0
  310. package/config/hard/CloudyWeather/input/04 - Medium map #1.txt +53 -0
  311. package/config/hard/CloudyWeather/input/05 - Medium map #2.txt +103 -0
  312. package/config/hard/CloudyWeather/input/06 - Large map #1.txt +153 -0
  313. package/config/hard/CloudyWeather/input/07 - Large map #2.txt +203 -0
  314. package/config/hard/CloudyWeather/input/08 - Large map #3.txt +253 -0
  315. package/config/hard/CloudyWeather/input/09 - Large map #4.txt +253 -0
  316. package/config/hard/CloudyWeather/output/01 - Very small map #1.txt +1 -0
  317. package/config/hard/CloudyWeather/output/02 - Small map #2.txt +1 -0
  318. package/config/hard/CloudyWeather/output/03 - Small map #3.txt +1 -0
  319. package/config/hard/CloudyWeather/output/04 - Medium map #1.txt +1 -0
  320. package/config/hard/CloudyWeather/output/05 - Medium map #2.txt +1 -0
  321. package/config/hard/CloudyWeather/output/06 - Large map #1.txt +1 -0
  322. package/config/hard/CloudyWeather/output/07 - Large map #2.txt +1 -0
  323. package/config/hard/CloudyWeather/output/08 - Large map #3.txt +1 -0
  324. package/config/hard/CloudyWeather/output/09 - Large map #4.txt +1 -0
  325. package/config/hard/CodeYourOwnAutomaton2000Step1/code/CGCode.js +9 -0
  326. package/config/hard/CodeYourOwnAutomaton2000Step1/code/CGCode.php +11 -0
  327. package/config/hard/CodeYourOwnAutomaton2000Step1/config.json +33 -0
  328. package/config/hard/CodeYourOwnAutomaton2000Step1/input/01 - Simple example.txt +4 -0
  329. package/config/hard/CodeYourOwnAutomaton2000Step1/input/02 - Real case.txt +73 -0
  330. package/config/hard/CodeYourOwnAutomaton2000Step1/input/03 - Changing tree.txt +7 -0
  331. package/config/hard/CodeYourOwnAutomaton2000Step1/input/04 - Infinite loop.txt +6 -0
  332. package/config/hard/CodeYourOwnAutomaton2000Step1/input/05 - Border line cases.txt +6 -0
  333. package/config/hard/CodeYourOwnAutomaton2000Step1/output/01 - Simple example.txt +1 -0
  334. package/config/hard/CodeYourOwnAutomaton2000Step1/output/02 - Real case.txt +15 -0
  335. package/config/hard/CodeYourOwnAutomaton2000Step1/output/03 - Changing tree.txt +3 -0
  336. package/config/hard/CodeYourOwnAutomaton2000Step1/output/04 - Infinite loop.txt +1 -0
  337. package/config/hard/CodeYourOwnAutomaton2000Step1/output/05 - Border line cases.txt +3 -0
  338. package/config/hard/Cryptarithm/code/CGCode.js +10 -0
  339. package/config/hard/Cryptarithm/code/CGCode.php +12 -0
  340. package/config/hard/Cryptarithm/config.json +28 -0
  341. package/config/hard/Cryptarithm/input/01 - Example.txt +4 -0
  342. package/config/hard/Cryptarithm/input/02 - 9846+2+648=10496.txt +5 -0
  343. package/config/hard/Cryptarithm/input/03 - Sum of 5 values.txt +7 -0
  344. package/config/hard/Cryptarithm/input/04 - 85+15=100.txt +4 -0
  345. package/config/hard/Cryptarithm/output/01 - Example.txt +6 -0
  346. package/config/hard/Cryptarithm/output/02 - 9846+2+648=10496.txt +7 -0
  347. package/config/hard/Cryptarithm/output/03 - Sum of 5 values.txt +4 -0
  348. package/config/hard/Cryptarithm/output/04 - 85+15=100.txt +4 -0
  349. package/config/hard/DiscreteLogProblem/code/CGCode.js +9 -0
  350. package/config/hard/DiscreteLogProblem/code/CGCode.php +7 -0
  351. package/config/hard/DiscreteLogProblem/config.json +38 -0
  352. package/config/hard/DiscreteLogProblem/input/01 - test 1.txt +1 -0
  353. package/config/hard/DiscreteLogProblem/input/02 - test 2.txt +1 -0
  354. package/config/hard/DiscreteLogProblem/input/03 - test 3.txt +1 -0
  355. package/config/hard/DiscreteLogProblem/input/04 - test 4.txt +1 -0
  356. package/config/hard/DiscreteLogProblem/input/05 - Big test.txt +1 -0
  357. package/config/hard/DiscreteLogProblem/input/06 - Yet another big test.txt +1 -0
  358. package/config/hard/DiscreteLogProblem/output/01 - test 1.txt +1 -0
  359. package/config/hard/DiscreteLogProblem/output/02 - test 2.txt +1 -0
  360. package/config/hard/DiscreteLogProblem/output/03 - test 3.txt +1 -0
  361. package/config/hard/DiscreteLogProblem/output/04 - test 4.txt +1 -0
  362. package/config/hard/DiscreteLogProblem/output/05 - Big test.txt +1 -0
  363. package/config/hard/DiscreteLogProblem/output/06 - Yet another big test.txt +1 -0
  364. package/config/hard/DoublySolvedRubiksCube/code/CGCode.cpp +19 -0
  365. package/config/hard/DoublySolvedRubiksCube/code/CGCode.java +18 -0
  366. package/config/hard/DoublySolvedRubiksCube/code/CGCode.js +8 -0
  367. package/config/hard/DoublySolvedRubiksCube/code/CGCode.php +10 -0
  368. package/config/hard/DoublySolvedRubiksCube/code/CGCode.ts +8 -0
  369. package/config/hard/DoublySolvedRubiksCube/config.json +78 -0
  370. package/config/hard/DoublySolvedRubiksCube/input/01 - Single rotation.txt +11 -0
  371. package/config/hard/DoublySolvedRubiksCube/input/02 - Middle slice.txt +11 -0
  372. package/config/hard/DoublySolvedRubiksCube/input/03 - Solved.txt +11 -0
  373. package/config/hard/DoublySolvedRubiksCube/input/04 - 2 twists.txt +11 -0
  374. package/config/hard/DoublySolvedRubiksCube/input/05 - 5 twists.txt +11 -0
  375. package/config/hard/DoublySolvedRubiksCube/input/06 - 10 twists.txt +11 -0
  376. package/config/hard/DoublySolvedRubiksCube/input/07 - 15 twists.txt +11 -0
  377. package/config/hard/DoublySolvedRubiksCube/input/08 - 20 twists.txt +11 -0
  378. package/config/hard/DoublySolvedRubiksCube/input/09 - 1000 twists.txt +11 -0
  379. package/config/hard/DoublySolvedRubiksCube/input/10 - Random state 1.txt +11 -0
  380. package/config/hard/DoublySolvedRubiksCube/input/11 - Random state 2.txt +11 -0
  381. package/config/hard/DoublySolvedRubiksCube/input/12 - Random state 3.txt +11 -0
  382. package/config/hard/DoublySolvedRubiksCube/input/13 - Random state 4.txt +11 -0
  383. package/config/hard/DoublySolvedRubiksCube/input/14 - Random state 5.txt +11 -0
  384. package/config/hard/DoublySolvedRubiksCube/output/01 - Single rotation.txt +11 -0
  385. package/config/hard/DoublySolvedRubiksCube/output/02 - Middle slice.txt +11 -0
  386. package/config/hard/DoublySolvedRubiksCube/output/03 - Solved.txt +11 -0
  387. package/config/hard/DoublySolvedRubiksCube/output/04 - 2 twists.txt +11 -0
  388. package/config/hard/DoublySolvedRubiksCube/output/05 - 5 twists.txt +11 -0
  389. package/config/hard/DoublySolvedRubiksCube/output/06 - 10 twists.txt +11 -0
  390. package/config/hard/DoublySolvedRubiksCube/output/07 - 15 twists.txt +11 -0
  391. package/config/hard/DoublySolvedRubiksCube/output/08 - 20 twists.txt +11 -0
  392. package/config/hard/DoublySolvedRubiksCube/output/09 - 1000 twists.txt +11 -0
  393. package/config/hard/DoublySolvedRubiksCube/output/10 - Random state 1.txt +11 -0
  394. package/config/hard/DoublySolvedRubiksCube/output/11 - Random state 2.txt +11 -0
  395. package/config/hard/DoublySolvedRubiksCube/output/12 - Random state 3.txt +11 -0
  396. package/config/hard/DoublySolvedRubiksCube/output/13 - Random state 4.txt +11 -0
  397. package/config/hard/DoublySolvedRubiksCube/output/14 - Random state 5.txt +11 -0
  398. package/config/hard/DumbbellsSolver/code/CGCode.cpp +26 -0
  399. package/config/hard/DumbbellsSolver/code/CGCode.java +26 -0
  400. package/config/hard/DumbbellsSolver/code/CGCode.js +14 -0
  401. package/config/hard/DumbbellsSolver/code/CGCode.php +15 -0
  402. package/config/hard/DumbbellsSolver/code/CGCode.ts +14 -0
  403. package/config/hard/DumbbellsSolver/config.json +33 -0
  404. package/config/hard/DumbbellsSolver/input/01 - test 1 (empty not to fill).txt +5 -0
  405. package/config/hard/DumbbellsSolver/input/02 - test 2 (empty to fill).txt +5 -0
  406. package/config/hard/DumbbellsSolver/input/03 - test 3.txt +9 -0
  407. package/config/hard/DumbbellsSolver/input/04 - test 4.txt +7 -0
  408. package/config/hard/DumbbellsSolver/input/05 - test 5.txt +10 -0
  409. package/config/hard/DumbbellsSolver/output/01 - test 1 (empty not to fill).txt +3 -0
  410. package/config/hard/DumbbellsSolver/output/02 - test 2 (empty to fill).txt +3 -0
  411. package/config/hard/DumbbellsSolver/output/03 - test 3.txt +7 -0
  412. package/config/hard/DumbbellsSolver/output/04 - test 4.txt +5 -0
  413. package/config/hard/DumbbellsSolver/output/05 - test 5.txt +8 -0
  414. package/config/hard/ElectricalGrid/code/CGCode.cpp +25 -0
  415. package/config/hard/ElectricalGrid/code/CGCode.java +23 -0
  416. package/config/hard/ElectricalGrid/code/CGCode.js +15 -0
  417. package/config/hard/ElectricalGrid/code/CGCode.php +12 -0
  418. package/config/hard/ElectricalGrid/code/CGCode.ts +15 -0
  419. package/config/hard/ElectricalGrid/config.json +28 -0
  420. package/config/hard/ElectricalGrid/input/01 - Triangle.txt +4 -0
  421. package/config/hard/ElectricalGrid/input/02 - Some houses.txt +18 -0
  422. package/config/hard/ElectricalGrid/input/03 - Lonely house.txt +1 -0
  423. package/config/hard/ElectricalGrid/input/04 - Fully connectable.txt +7 -0
  424. package/config/hard/ElectricalGrid/output/01 - Triangle.txt +3 -0
  425. package/config/hard/ElectricalGrid/output/02 - Some houses.txt +10 -0
  426. package/config/hard/ElectricalGrid/output/03 - Lonely house.txt +1 -0
  427. package/config/hard/ElectricalGrid/output/04 - Fully connectable.txt +4 -0
  428. package/config/hard/EncounterSurface/code/CGCode.js +17 -0
  429. package/config/hard/EncounterSurface/code/CGCode.php +16 -0
  430. package/config/hard/EncounterSurface/config.json +38 -0
  431. package/config/hard/EncounterSurface/input/01 - First contact.txt +11 -0
  432. package/config/hard/EncounterSurface/input/02 - Real case.txt +15 -0
  433. package/config/hard/EncounterSurface/input/03 - Great battle.txt +22 -0
  434. package/config/hard/EncounterSurface/input/04 - Huge area.txt +28 -0
  435. package/config/hard/EncounterSurface/input/05 - No contact.txt +12 -0
  436. package/config/hard/EncounterSurface/input/06 - Side superposition.txt +10 -0
  437. package/config/hard/EncounterSurface/output/01 - First contact.txt +1 -0
  438. package/config/hard/EncounterSurface/output/02 - Real case.txt +1 -0
  439. package/config/hard/EncounterSurface/output/03 - Great battle.txt +1 -0
  440. package/config/hard/EncounterSurface/output/04 - Huge area.txt +1 -0
  441. package/config/hard/EncounterSurface/output/05 - No contact.txt +1 -0
  442. package/config/hard/EncounterSurface/output/06 - Side superposition.txt +1 -0
  443. package/config/hard/Erd/305/221sNumber/code/CGCode.cpp +27 -0
  444. package/config/hard/Erd/305/221sNumber/code/CGCode.java +26 -0
  445. package/config/hard/Erd/305/221sNumber/code/CGCode.js +13 -0
  446. package/config/hard/Erd/305/221sNumber/code/CGCode.php +16 -0
  447. package/config/hard/Erd/305/221sNumber/code/CGCode.ts +13 -0
  448. package/config/hard/Erd/305/221sNumber/config.json +38 -0
  449. package/config/hard/Erd/305/221sNumber/input/01 - Albert Einstein.txt" +6 -0
  450. package/config/hard/Erd/305/221sNumber/input/02 - Isaac Newton.txt" +8 -0
  451. package/config/hard/Erd/305/221sNumber/input/03 - Paul Erd/305/221s.txt" +8 -0
  452. package/config/hard/Erd/305/221sNumber/input/04 - Maryam Mirzakhani.txt" +12 -0
  453. package/config/hard/Erd/305/221sNumber/input/05 - Andrew Wiles.txt" +18 -0
  454. package/config/hard/Erd/305/221sNumber/input/06 - Alan Turing.txt" +34 -0
  455. package/config/hard/Erd/305/221sNumber/output/01 - Albert Einstein.txt" +3 -0
  456. package/config/hard/Erd/305/221sNumber/output/02 - Isaac Newton.txt" +1 -0
  457. package/config/hard/Erd/305/221sNumber/output/03 - Paul Erd/305/221s.txt" +1 -0
  458. package/config/hard/Erd/305/221sNumber/output/04 - Maryam Mirzakhani.txt" +4 -0
  459. package/config/hard/Erd/305/221sNumber/output/05 - Andrew Wiles.txt" +4 -0
  460. package/config/hard/Erd/305/221sNumber/output/06 - Alan Turing.txt" +6 -0
  461. package/config/hard/FlowerBeds/code/CGCode.js +11 -0
  462. package/config/hard/FlowerBeds/code/CGCode.php +11 -0
  463. package/config/hard/FlowerBeds/config.json +28 -0
  464. package/config/hard/FlowerBeds/input/01 - Small with few edges.txt +10 -0
  465. package/config/hard/FlowerBeds/input/02 - Small with many edges.txt +25 -0
  466. package/config/hard/FlowerBeds/input/03 - Big with few edges.txt +5 -0
  467. package/config/hard/FlowerBeds/input/04 - Versaille.txt +51 -0
  468. package/config/hard/FlowerBeds/output/01 - Small with few edges.txt +1 -0
  469. package/config/hard/FlowerBeds/output/02 - Small with many edges.txt +1 -0
  470. package/config/hard/FlowerBeds/output/03 - Big with few edges.txt +1 -0
  471. package/config/hard/FlowerBeds/output/04 - Versaille.txt +1 -0
  472. package/config/hard/GenomeSequencing/code/CGCode.cpp +21 -0
  473. package/config/hard/GenomeSequencing/code/CGCode.java +19 -0
  474. package/config/hard/GenomeSequencing/code/CGCode.ts +9 -0
  475. package/config/hard/Hangman/code/CGCode.js +7 -0
  476. package/config/hard/Hangman/code/CGCode.php +8 -0
  477. package/config/hard/Hangman/config.json +28 -0
  478. package/config/hard/Hangman/input/01 - Solution found.txt +2 -0
  479. package/config/hard/Hangman/input/02 - Wrong answer.txt +2 -0
  480. package/config/hard/Hangman/input/03 - White space.txt +2 -0
  481. package/config/hard/Hangman/input/04 - Same letter.txt +2 -0
  482. package/config/hard/Hangman/output/01 - Solution found.txt +5 -0
  483. package/config/hard/Hangman/output/02 - Wrong answer.txt +5 -0
  484. package/config/hard/Hangman/output/03 - White space.txt +5 -0
  485. package/config/hard/Hangman/output/04 - Same letter.txt +5 -0
  486. package/config/hard/HanoiTower/code/CGCode.cpp +20 -0
  487. package/config/hard/HanoiTower/code/CGCode.java +18 -0
  488. package/config/hard/HanoiTower/code/CGCode.js +8 -0
  489. package/config/hard/HanoiTower/code/CGCode.php +9 -0
  490. package/config/hard/HanoiTower/code/CGCode.ts +8 -0
  491. package/config/hard/HanoiTower/config.json +28 -0
  492. package/config/hard/HanoiTower/input/01 - test 1.txt +2 -0
  493. package/config/hard/HanoiTower/input/02 - test 2.txt +2 -0
  494. package/config/hard/HanoiTower/input/03 - test 3.txt +2 -0
  495. package/config/hard/HanoiTower/input/04 - test 4.txt +2 -0
  496. package/config/hard/HanoiTower/output/01 - test 1.txt +4 -0
  497. package/config/hard/HanoiTower/output/02 - test 2.txt +5 -0
  498. package/config/hard/HanoiTower/output/03 - test 3.txt +7 -0
  499. package/config/hard/HanoiTower/output/04 - test 4.txt +10 -0
  500. package/config/hard/HarmlessRooks/code/CGCode.js +9 -0
  501. package/config/hard/HarmlessRooks/code/CGCode.php +11 -0
  502. package/config/hard/HarmlessRooks/config.json +73 -0
  503. package/config/hard/HarmlessRooks/input/01 - Size 5.txt +6 -0
  504. package/config/hard/HarmlessRooks/input/02 - Size 7.txt +8 -0
  505. package/config/hard/HarmlessRooks/input/03 - Size 8.txt +9 -0
  506. package/config/hard/HarmlessRooks/input/04 - Size 10.txt +11 -0
  507. package/config/hard/HarmlessRooks/input/05 - Size 11.txt +12 -0
  508. package/config/hard/HarmlessRooks/input/06 - Size 16.txt +17 -0
  509. package/config/hard/HarmlessRooks/input/07 - Size 30.txt +31 -0
  510. package/config/hard/HarmlessRooks/input/08 - Size 50.txt +51 -0
  511. package/config/hard/HarmlessRooks/input/09 - Size 99 (1).txt +100 -0
  512. package/config/hard/HarmlessRooks/input/10 - Size 99 (2).txt +100 -0
  513. package/config/hard/HarmlessRooks/input/11 - Size 99 (3).txt +100 -0
  514. package/config/hard/HarmlessRooks/input/12 - Size 99 (4).txt +100 -0
  515. package/config/hard/HarmlessRooks/input/13 - Size 1.txt +2 -0
  516. package/config/hard/HarmlessRooks/output/01 - Size 5.txt +1 -0
  517. package/config/hard/HarmlessRooks/output/02 - Size 7.txt +1 -0
  518. package/config/hard/HarmlessRooks/output/03 - Size 8.txt +1 -0
  519. package/config/hard/HarmlessRooks/output/04 - Size 10.txt +1 -0
  520. package/config/hard/HarmlessRooks/output/05 - Size 11.txt +1 -0
  521. package/config/hard/HarmlessRooks/output/06 - Size 16.txt +1 -0
  522. package/config/hard/HarmlessRooks/output/07 - Size 30.txt +1 -0
  523. package/config/hard/HarmlessRooks/output/08 - Size 50.txt +1 -0
  524. package/config/hard/HarmlessRooks/output/09 - Size 99 (1).txt +1 -0
  525. package/config/hard/HarmlessRooks/output/10 - Size 99 (2).txt +1 -0
  526. package/config/hard/HarmlessRooks/output/11 - Size 99 (3).txt +1 -0
  527. package/config/hard/HarmlessRooks/output/12 - Size 99 (4).txt +1 -0
  528. package/config/hard/HarmlessRooks/output/13 - Size 1.txt +1 -0
  529. package/config/hard/HauntedManor/code/CGCode.cpp +41 -0
  530. package/config/hard/HauntedManor/code/CGCode.java +35 -0
  531. package/config/hard/HauntedManor/code/CGCode.js +29 -0
  532. package/config/hard/HauntedManor/code/CGCode.php +32 -0
  533. package/config/hard/HauntedManor/code/CGCode.ts +29 -0
  534. package/config/hard/HauntedManor/config.json +38 -0
  535. package/config/hard/HauntedManor/input/01 - 3x3 manor.txt +9 -0
  536. package/config/hard/HauntedManor/input/02 - 4x4 manor.txt +10 -0
  537. package/config/hard/HauntedManor/input/03 - 5x5 manor.txt +11 -0
  538. package/config/hard/HauntedManor/input/04 - 7x7 manor.txt +13 -0
  539. package/config/hard/HauntedManor/input/05 - Another 7x7 manor.txt +13 -0
  540. package/config/hard/HauntedManor/input/06 - Not much of a manor.txt +7 -0
  541. package/config/hard/HauntedManor/output/01 - 3x3 manor.txt +3 -0
  542. package/config/hard/HauntedManor/output/02 - 4x4 manor.txt +4 -0
  543. package/config/hard/HauntedManor/output/03 - 5x5 manor.txt +5 -0
  544. package/config/hard/HauntedManor/output/04 - 7x7 manor.txt +7 -0
  545. package/config/hard/HauntedManor/output/05 - Another 7x7 manor.txt +7 -0
  546. package/config/hard/HauntedManor/output/06 - Not much of a manor.txt +1 -0
  547. package/config/hard/Kgood/code/CGCode.js +7 -0
  548. package/config/hard/Kgood/code/CGCode.php +8 -0
  549. package/config/hard/Kgood/config.json +33 -0
  550. package/config/hard/Kgood/input/01 - test 1.txt +2 -0
  551. package/config/hard/Kgood/input/02 - test 2.txt +2 -0
  552. package/config/hard/Kgood/input/03 - test 3.txt +2 -0
  553. package/config/hard/Kgood/input/04 - test 4.txt +2 -0
  554. package/config/hard/Kgood/input/05 - test 5.txt +2 -0
  555. package/config/hard/Kgood/output/01 - test 1.txt +1 -0
  556. package/config/hard/Kgood/output/02 - test 2.txt +1 -0
  557. package/config/hard/Kgood/output/03 - test 3.txt +1 -0
  558. package/config/hard/Kgood/output/04 - test 4.txt +1 -0
  559. package/config/hard/Kgood/output/05 - test 5.txt +1 -0
  560. package/config/hard/LaserAndMirrors/code/CGCode.js +8 -0
  561. package/config/hard/LaserAndMirrors/code/CGCode.php +7 -0
  562. package/config/hard/LaserAndMirrors/config.json +38 -0
  563. package/config/hard/LaserAndMirrors/input/01 - Square.txt +1 -0
  564. package/config/hard/LaserAndMirrors/input/02 - Small rectangle.txt +1 -0
  565. package/config/hard/LaserAndMirrors/input/03 - Multiple bounces.txt +1 -0
  566. package/config/hard/LaserAndMirrors/input/04 - Big but feasible.txt +1 -0
  567. package/config/hard/LaserAndMirrors/input/05 - Too big.txt +1 -0
  568. package/config/hard/LaserAndMirrors/input/06 - Very very big room.txt +1 -0
  569. package/config/hard/LaserAndMirrors/output/01 - Square.txt +1 -0
  570. package/config/hard/LaserAndMirrors/output/02 - Small rectangle.txt +1 -0
  571. package/config/hard/LaserAndMirrors/output/03 - Multiple bounces.txt +1 -0
  572. package/config/hard/LaserAndMirrors/output/04 - Big but feasible.txt +1 -0
  573. package/config/hard/LaserAndMirrors/output/05 - Too big.txt +1 -0
  574. package/config/hard/LaserAndMirrors/output/06 - Very very big room.txt +1 -0
  575. package/config/hard/LegendaryArcherOctavius/code/CGCode.js +12 -0
  576. package/config/hard/LegendaryArcherOctavius/code/CGCode.php +11 -0
  577. package/config/hard/LegendaryArcherOctavius/config.json +48 -0
  578. package/config/hard/LegendaryArcherOctavius/input/01 - Trivial.txt +3 -0
  579. package/config/hard/LegendaryArcherOctavius/input/02 - Zipline Action.txt +4 -0
  580. package/config/hard/LegendaryArcherOctavius/input/03 - Chug, chug, chug!.txt +5 -0
  581. package/config/hard/LegendaryArcherOctavius/input/04 - Haste makes waste.txt +4 -0
  582. package/config/hard/LegendaryArcherOctavius/input/05 - Noclipping UFOs.txt +7 -0
  583. package/config/hard/LegendaryArcherOctavius/input/06 - Reinforcements.txt +15 -0
  584. package/config/hard/LegendaryArcherOctavius/input/07 - Surrounded.txt +18 -0
  585. package/config/hard/LegendaryArcherOctavius/input/08 - Martian Invasion.txt +30 -0
  586. package/config/hard/LegendaryArcherOctavius/output/01 - Trivial.txt +1 -0
  587. package/config/hard/LegendaryArcherOctavius/output/02 - Zipline Action.txt +1 -0
  588. package/config/hard/LegendaryArcherOctavius/output/03 - Chug, chug, chug!.txt +1 -0
  589. package/config/hard/LegendaryArcherOctavius/output/04 - Haste makes waste.txt +1 -0
  590. package/config/hard/LegendaryArcherOctavius/output/05 - Noclipping UFOs.txt +1 -0
  591. package/config/hard/LegendaryArcherOctavius/output/06 - Reinforcements.txt +1 -0
  592. package/config/hard/LegendaryArcherOctavius/output/07 - Surrounded.txt +1 -0
  593. package/config/hard/LegendaryArcherOctavius/output/08 - Martian Invasion.txt +1 -0
  594. package/config/hard/LevenshteinDistance/code/CGCode.js +7 -0
  595. package/config/hard/LevenshteinDistance/code/CGCode.php +8 -0
  596. package/config/hard/LevenshteinDistance/config.json +43 -0
  597. package/config/hard/LevenshteinDistance/input/01 - Simple.txt +2 -0
  598. package/config/hard/LevenshteinDistance/input/02 - Normal.txt +2 -0
  599. package/config/hard/LevenshteinDistance/input/03 - Harder.txt +2 -0
  600. package/config/hard/LevenshteinDistance/input/04 - Long words.txt +2 -0
  601. package/config/hard/LevenshteinDistance/input/05 - Sentence.txt +2 -0
  602. package/config/hard/LevenshteinDistance/input/06 - No change.txt +2 -0
  603. package/config/hard/LevenshteinDistance/input/07 - One very long word.txt +2 -0
  604. package/config/hard/LevenshteinDistance/output/01 - Simple.txt +1 -0
  605. package/config/hard/LevenshteinDistance/output/02 - Normal.txt +1 -0
  606. package/config/hard/LevenshteinDistance/output/03 - Harder.txt +1 -0
  607. package/config/hard/LevenshteinDistance/output/04 - Long words.txt +1 -0
  608. package/config/hard/LevenshteinDistance/output/05 - Sentence.txt +1 -0
  609. package/config/hard/LevenshteinDistance/output/06 - No change.txt +1 -0
  610. package/config/hard/LevenshteinDistance/output/07 - One very long word.txt +1 -0
  611. package/config/hard/MagicalFrog/code/CGCode.cpp +18 -0
  612. package/config/hard/MagicalFrog/code/CGCode.java +17 -0
  613. package/config/hard/MagicalFrog/code/CGCode.js +8 -0
  614. package/config/hard/MagicalFrog/code/CGCode.php +7 -0
  615. package/config/hard/MagicalFrog/code/CGCode.ts +8 -0
  616. package/config/hard/MagicalFrog/config.json +28 -0
  617. package/config/hard/MagicalFrog/input/01 - test 1.txt +1 -0
  618. package/config/hard/MagicalFrog/input/02 - test 2.txt +1 -0
  619. package/config/hard/MagicalFrog/input/03 - test 3.txt +1 -0
  620. package/config/hard/MagicalFrog/input/04 - test 4.txt +1 -0
  621. package/config/hard/MagicalFrog/output/01 - test 1.txt +1 -0
  622. package/config/hard/MagicalFrog/output/02 - test 2.txt +1 -0
  623. package/config/hard/MagicalFrog/output/03 - test 3.txt +1 -0
  624. package/config/hard/MagicalFrog/output/04 - test 4.txt +1 -0
  625. package/config/hard/MaxRect/code/CGCode.cpp +22 -0
  626. package/config/hard/MaxRect/code/CGCode.java +23 -0
  627. package/config/hard/MaxRect/code/CGCode.js +11 -0
  628. package/config/hard/MaxRect/code/CGCode.php +11 -0
  629. package/config/hard/MaxRect/code/CGCode.ts +11 -0
  630. package/config/hard/MaxRect/config.json +48 -0
  631. package/config/hard/MaxRect/input/01 - Small.txt +3 -0
  632. package/config/hard/MaxRect/input/02 - Medium.txt +11 -0
  633. package/config/hard/MaxRect/input/03 - Big.txt +31 -0
  634. package/config/hard/MaxRect/input/04 - Time out.txt +66 -0
  635. package/config/hard/MaxRect/input/05 - All Negatives.txt +4 -0
  636. package/config/hard/MaxRect/input/06 - 1x1.txt +2 -0
  637. package/config/hard/MaxRect/input/07 - One column.txt +10 -0
  638. package/config/hard/MaxRect/input/08 - One row.txt +2 -0
  639. package/config/hard/MaxRect/output/01 - Small.txt +1 -0
  640. package/config/hard/MaxRect/output/02 - Medium.txt +1 -0
  641. package/config/hard/MaxRect/output/03 - Big.txt +1 -0
  642. package/config/hard/MaxRect/output/04 - Time out.txt +1 -0
  643. package/config/hard/MaxRect/output/05 - All Negatives.txt +1 -0
  644. package/config/hard/MaxRect/output/06 - 1x1.txt +1 -0
  645. package/config/hard/MaxRect/output/07 - One column.txt +1 -0
  646. package/config/hard/MaxRect/output/08 - One row.txt +1 -0
  647. package/config/hard/MaximisingIntegers/code/CGCode.js +6 -0
  648. package/config/hard/MaximisingIntegers/code/CGCode.php +7 -0
  649. package/config/hard/MaximisingIntegers/config.json +38 -0
  650. package/config/hard/MaximisingIntegers/input/01 - test 1.txt +1 -0
  651. package/config/hard/MaximisingIntegers/input/02 - test 2.txt +1 -0
  652. package/config/hard/MaximisingIntegers/input/03 - test 3.txt +1 -0
  653. package/config/hard/MaximisingIntegers/input/04 - test 4.txt +1 -0
  654. package/config/hard/MaximisingIntegers/input/05 - test 5.txt +1 -0
  655. package/config/hard/MaximisingIntegers/input/06 - test 6.txt +1 -0
  656. package/config/hard/MaximisingIntegers/output/01 - test 1.txt +1 -0
  657. package/config/hard/MaximisingIntegers/output/02 - test 2.txt +1 -0
  658. package/config/hard/MaximisingIntegers/output/03 - test 3.txt +1 -0
  659. package/config/hard/MaximisingIntegers/output/04 - test 4.txt +1 -0
  660. package/config/hard/MaximisingIntegers/output/05 - test 5.txt +1 -0
  661. package/config/hard/MaximisingIntegers/output/06 - test 6.txt +1 -0
  662. package/config/hard/MisereNim/code/CGCode.js +16 -0
  663. package/config/hard/MisereNim/code/CGCode.php +18 -0
  664. package/config/hard/MisereNim/config.json +48 -0
  665. package/config/hard/MisereNim/input/01 - One heap.txt +4 -0
  666. package/config/hard/MisereNim/input/02 - Two heaps, simple.txt +5 -0
  667. package/config/hard/MisereNim/input/03 - Two heaps.txt +4 -0
  668. package/config/hard/MisereNim/input/04 - Three heaps, simple.txt +6 -0
  669. package/config/hard/MisereNim/input/05 - Multiple possibilities.txt +6 -0
  670. package/config/hard/MisereNim/input/06 - Three heaps.txt +6 -0
  671. package/config/hard/MisereNim/input/07 - Hard.txt +6 -0
  672. package/config/hard/MisereNim/input/08 - Hard, multiple moves.txt +5 -0
  673. package/config/hard/MisereNim/output/01 - One heap.txt +3 -0
  674. package/config/hard/MisereNim/output/02 - Two heaps, simple.txt +4 -0
  675. package/config/hard/MisereNim/output/03 - Two heaps.txt +3 -0
  676. package/config/hard/MisereNim/output/04 - Three heaps, simple.txt +5 -0
  677. package/config/hard/MisereNim/output/05 - Multiple possibilities.txt +5 -0
  678. package/config/hard/MisereNim/output/06 - Three heaps.txt +5 -0
  679. package/config/hard/MisereNim/output/07 - Hard.txt +5 -0
  680. package/config/hard/MisereNim/output/08 - Hard, multiple moves.txt +4 -0
  681. package/config/hard/MonteCarloTreeSearchExercise/code/CGCode.cpp +23 -0
  682. package/config/hard/MonteCarloTreeSearchExercise/code/CGCode.java +21 -0
  683. package/config/hard/MonteCarloTreeSearchExercise/code/CGCode.js +13 -0
  684. package/config/hard/MonteCarloTreeSearchExercise/code/CGCode.php +11 -0
  685. package/config/hard/MonteCarloTreeSearchExercise/code/CGCode.ts +13 -0
  686. package/config/hard/MonteCarloTreeSearchExercise/config.json +43 -0
  687. package/config/hard/MonteCarloTreeSearchExercise/input/01 - Tiny tree test.txt +4 -0
  688. package/config/hard/MonteCarloTreeSearchExercise/input/02 - Nondeterministic scores test.txt +6 -0
  689. package/config/hard/MonteCarloTreeSearchExercise/input/03 - Significant exploration test.txt +4 -0
  690. package/config/hard/MonteCarloTreeSearchExercise/input/04 - UCB1-tie test.txt +5 -0
  691. package/config/hard/MonteCarloTreeSearchExercise/input/05 - Small random test.txt +11 -0
  692. package/config/hard/MonteCarloTreeSearchExercise/input/06 - Large test.txt +251 -0
  693. package/config/hard/MonteCarloTreeSearchExercise/input/07 - Another large test.txt +351 -0
  694. package/config/hard/MonteCarloTreeSearchExercise/output/01 - Tiny tree test.txt +1 -0
  695. package/config/hard/MonteCarloTreeSearchExercise/output/02 - Nondeterministic scores test.txt +1 -0
  696. package/config/hard/MonteCarloTreeSearchExercise/output/03 - Significant exploration test.txt +1 -0
  697. package/config/hard/MonteCarloTreeSearchExercise/output/04 - UCB1-tie test.txt +1 -0
  698. package/config/hard/MonteCarloTreeSearchExercise/output/05 - Small random test.txt +1 -0
  699. package/config/hard/MonteCarloTreeSearchExercise/output/06 - Large test.txt +1 -0
  700. package/config/hard/MonteCarloTreeSearchExercise/output/07 - Another large test.txt +1 -0
  701. package/config/hard/PascalTrapezoid/code/CGCode.js +10 -0
  702. package/config/hard/PascalTrapezoid/code/CGCode.php +8 -0
  703. package/config/hard/PascalTrapezoid/config.json +43 -0
  704. package/config/hard/PascalTrapezoid/input/01 - test 1.txt +2 -0
  705. package/config/hard/PascalTrapezoid/input/02 - test 2.txt +2 -0
  706. package/config/hard/PascalTrapezoid/input/03 - test 3.txt +2 -0
  707. package/config/hard/PascalTrapezoid/input/04 - test 4.txt +2 -0
  708. package/config/hard/PascalTrapezoid/input/05 - test 5.txt +2 -0
  709. package/config/hard/PascalTrapezoid/input/06 - test 6.txt +2 -0
  710. package/config/hard/PascalTrapezoid/input/07 - test 7.txt +2 -0
  711. package/config/hard/PascalTrapezoid/output/01 - test 1.txt +1 -0
  712. package/config/hard/PascalTrapezoid/output/02 - test 2.txt +1 -0
  713. package/config/hard/PascalTrapezoid/output/03 - test 3.txt +1 -0
  714. package/config/hard/PascalTrapezoid/output/04 - test 4.txt +1 -0
  715. package/config/hard/PascalTrapezoid/output/05 - test 5.txt +1 -0
  716. package/config/hard/PascalTrapezoid/output/06 - test 6.txt +1 -0
  717. package/config/hard/PascalTrapezoid/output/07 - test 7.txt +1 -0
  718. package/config/hard/PedestrianTraffic/code/CGCode.cpp +21 -0
  719. package/config/hard/PedestrianTraffic/code/CGCode.java +21 -0
  720. package/config/hard/PedestrianTraffic/code/CGCode.js +8 -0
  721. package/config/hard/PedestrianTraffic/code/CGCode.php +9 -0
  722. package/config/hard/PedestrianTraffic/code/CGCode.ts +8 -0
  723. package/config/hard/PedestrianTraffic/config.json +68 -0
  724. package/config/hard/PedestrianTraffic/input/01 - Crossing Paths.txt +3 -0
  725. package/config/hard/PedestrianTraffic/input/02 - One Way Stampede.txt +3 -0
  726. package/config/hard/PedestrianTraffic/input/03 - Simple Dependency.txt +3 -0
  727. package/config/hard/PedestrianTraffic/input/04 - More Dependencies.txt +3 -0
  728. package/config/hard/PedestrianTraffic/input/05 - Complex Dependencies.txt +3 -0
  729. package/config/hard/PedestrianTraffic/input/06 - Temporary Blockage.txt +3 -0
  730. package/config/hard/PedestrianTraffic/input/07 - Ring Around the Rosie.txt +3 -0
  731. package/config/hard/PedestrianTraffic/input/08 - Empty Path.txt +3 -0
  732. package/config/hard/PedestrianTraffic/input/09 - Group Collision.txt +3 -0
  733. package/config/hard/PedestrianTraffic/input/10 - Long Path.txt +3 -0
  734. package/config/hard/PedestrianTraffic/input/11 - Longer Path.txt +3 -0
  735. package/config/hard/PedestrianTraffic/input/12 - Longest Path.txt +3 -0
  736. package/config/hard/PedestrianTraffic/output/01 - Crossing Paths.txt +1 -0
  737. package/config/hard/PedestrianTraffic/output/02 - One Way Stampede.txt +1 -0
  738. package/config/hard/PedestrianTraffic/output/03 - Simple Dependency.txt +1 -0
  739. package/config/hard/PedestrianTraffic/output/04 - More Dependencies.txt +1 -0
  740. package/config/hard/PedestrianTraffic/output/05 - Complex Dependencies.txt +1 -0
  741. package/config/hard/PedestrianTraffic/output/06 - Temporary Blockage.txt +1 -0
  742. package/config/hard/PedestrianTraffic/output/07 - Ring Around the Rosie.txt +1 -0
  743. package/config/hard/PedestrianTraffic/output/08 - Empty Path.txt +1 -0
  744. package/config/hard/PedestrianTraffic/output/09 - Group Collision.txt +1 -0
  745. package/config/hard/PedestrianTraffic/output/10 - Long Path.txt +1 -0
  746. package/config/hard/PedestrianTraffic/output/11 - Longer Path.txt +1 -0
  747. package/config/hard/PedestrianTraffic/output/12 - Longest Path.txt +1 -0
  748. package/config/hard/RollerCoaster/code/CGCode.cpp +23 -0
  749. package/config/hard/RollerCoaster/code/CGCode.java +21 -0
  750. package/config/hard/RollerCoaster/code/CGCode.ts +12 -0
  751. package/config/hard/SevenSegmentDisplay/code/CGCode.js +8 -0
  752. package/config/hard/SevenSegmentDisplay/code/CGCode.php +9 -0
  753. package/config/hard/SevenSegmentDisplay/config.json +28 -0
  754. package/config/hard/SevenSegmentDisplay/input/01 - 8.txt +3 -0
  755. package/config/hard/SevenSegmentDisplay/input/02 - 256.txt +3 -0
  756. package/config/hard/SevenSegmentDisplay/input/03 - 333.txt +3 -0
  757. package/config/hard/SevenSegmentDisplay/input/04 - 14790.txt +3 -0
  758. package/config/hard/SevenSegmentDisplay/output/01 - 8.txt +7 -0
  759. package/config/hard/SevenSegmentDisplay/output/02 - 256.txt +13 -0
  760. package/config/hard/SevenSegmentDisplay/output/03 - 333.txt +9 -0
  761. package/config/hard/SevenSegmentDisplay/output/04 - 14790.txt +11 -0
  762. package/config/hard/SimpleCPUEmulation1/code/CGCode.cpp +17 -0
  763. package/config/hard/SimpleCPUEmulation1/code/CGCode.java +16 -0
  764. package/config/hard/SimpleCPUEmulation1/code/CGCode.js +6 -0
  765. package/config/hard/SimpleCPUEmulation1/code/CGCode.php +7 -0
  766. package/config/hard/SimpleCPUEmulation1/code/CGCode.ts +6 -0
  767. package/config/hard/SimpleCPUEmulation1/config.json +28 -0
  768. package/config/hard/SimpleCPUEmulation1/input/01 - 5+5.txt +1 -0
  769. package/config/hard/SimpleCPUEmulation1/input/02 - (11-6+2) 8.txt +1 -0
  770. package/config/hard/SimpleCPUEmulation1/input/03 - Overflow 145+192.txt +1 -0
  771. package/config/hard/SimpleCPUEmulation1/input/04 - 15-18.txt +1 -0
  772. package/config/hard/SimpleCPUEmulation1/output/01 - 5+5.txt +1 -0
  773. package/config/hard/SimpleCPUEmulation1/output/02 - (11-6+2) 8.txt +1 -0
  774. package/config/hard/SimpleCPUEmulation1/output/03 - Overflow 145+192.txt +1 -0
  775. package/config/hard/SimpleCPUEmulation1/output/04 - 15-18.txt +1 -0
  776. package/config/hard/SimpleSafecracking/code/CGCode.js +6 -0
  777. package/config/hard/SimpleSafecracking/code/CGCode.php +7 -0
  778. package/config/hard/SimpleSafecracking/config.json +28 -0
  779. package/config/hard/SimpleSafecracking/input/01 - test 1.txt +1 -0
  780. package/config/hard/SimpleSafecracking/input/02 - test 2.txt +1 -0
  781. package/config/hard/SimpleSafecracking/input/03 - test 3.txt +1 -0
  782. package/config/hard/SimpleSafecracking/input/04 - test 4.txt +1 -0
  783. package/config/hard/SimpleSafecracking/output/01 - test 1.txt +1 -0
  784. package/config/hard/SimpleSafecracking/output/02 - test 2.txt +1 -0
  785. package/config/hard/SimpleSafecracking/output/03 - test 3.txt +1 -0
  786. package/config/hard/SimpleSafecracking/output/04 - test 4.txt +1 -0
  787. package/config/hard/SimplifySelectionRanges/code/CGCode.cpp +17 -0
  788. package/config/hard/SimplifySelectionRanges/code/CGCode.java +16 -0
  789. package/config/hard/SimplifySelectionRanges/code/CGCode.js +6 -0
  790. package/config/hard/SimplifySelectionRanges/code/CGCode.php +7 -0
  791. package/config/hard/SimplifySelectionRanges/code/CGCode.ts +6 -0
  792. package/config/hard/SimplifySelectionRanges/config.json +28 -0
  793. package/config/hard/SimplifySelectionRanges/input/01 - test 1.txt +1 -0
  794. package/config/hard/SimplifySelectionRanges/input/02 - test 2.txt +1 -0
  795. package/config/hard/SimplifySelectionRanges/input/03 - test 3.txt +1 -0
  796. package/config/hard/SimplifySelectionRanges/input/04 - test 4.txt +1 -0
  797. package/config/hard/SimplifySelectionRanges/output/01 - test 1.txt +1 -0
  798. package/config/hard/SimplifySelectionRanges/output/02 - test 2.txt +1 -0
  799. package/config/hard/SimplifySelectionRanges/output/03 - test 3.txt +1 -0
  800. package/config/hard/SimplifySelectionRanges/output/04 - test 4.txt +1 -0
  801. package/config/hard/SlidingMazePuzzle/code/CGCode.cpp +22 -0
  802. package/config/hard/SlidingMazePuzzle/code/CGCode.java +23 -0
  803. package/config/hard/SlidingMazePuzzle/code/CGCode.js +11 -0
  804. package/config/hard/SlidingMazePuzzle/code/CGCode.php +11 -0
  805. package/config/hard/SlidingMazePuzzle/code/CGCode.ts +11 -0
  806. package/config/hard/SlidingMazePuzzle/config.json +28 -0
  807. package/config/hard/SlidingMazePuzzle/input/01 - 9 steps.txt +10 -0
  808. package/config/hard/SlidingMazePuzzle/input/02 - 22 steps.txt +10 -0
  809. package/config/hard/SlidingMazePuzzle/input/03 - 42 steps.txt +10 -0
  810. package/config/hard/SlidingMazePuzzle/input/04 - 189 steps.txt +10 -0
  811. package/config/hard/SlidingMazePuzzle/output/01 - 9 steps.txt +10 -0
  812. package/config/hard/SlidingMazePuzzle/output/02 - 22 steps.txt +23 -0
  813. package/config/hard/SlidingMazePuzzle/output/03 - 42 steps.txt +43 -0
  814. package/config/hard/SlidingMazePuzzle/output/04 - 189 steps.txt +190 -0
  815. package/config/hard/Staircases/code/CGCode.js +6 -0
  816. package/config/hard/Staircases/code/CGCode.php +7 -0
  817. package/config/hard/Staircases/config.json +33 -0
  818. package/config/hard/Staircases/input/01 - Exemple.txt +1 -0
  819. package/config/hard/Staircases/input/02 - 10.txt +1 -0
  820. package/config/hard/Staircases/input/03 - 25.txt +1 -0
  821. package/config/hard/Staircases/input/04 - 500.txt +1 -0
  822. package/config/hard/Staircases/input/05 - 4.txt +1 -0
  823. package/config/hard/Staircases/output/01 - Exemple.txt +1 -0
  824. package/config/hard/Staircases/output/02 - 10.txt +1 -0
  825. package/config/hard/Staircases/output/03 - 25.txt +1 -0
  826. package/config/hard/Staircases/output/04 - 500.txt +1 -0
  827. package/config/hard/Staircases/output/05 - 4.txt +1 -0
  828. package/config/hard/SuperComputer/code/CGCode.cpp +22 -0
  829. package/config/hard/SuperComputer/code/CGCode.java +20 -0
  830. package/config/hard/SuperComputer/code/CGCode.ts +11 -0
  831. package/config/hard/Surface/code/CGCode.cpp +32 -0
  832. package/config/hard/Surface/code/CGCode.java +30 -0
  833. package/config/hard/Surface/code/CGCode.ts +18 -0
  834. package/config/hard/SymbolicSystemOfEquations/code/CGCode.cpp +27 -0
  835. package/config/hard/SymbolicSystemOfEquations/code/CGCode.java +26 -0
  836. package/config/hard/SymbolicSystemOfEquations/code/CGCode.js +14 -0
  837. package/config/hard/SymbolicSystemOfEquations/code/CGCode.php +17 -0
  838. package/config/hard/SymbolicSystemOfEquations/code/CGCode.ts +14 -0
  839. package/config/hard/SymbolicSystemOfEquations/config.json +38 -0
  840. package/config/hard/SymbolicSystemOfEquations/input/01 - Example.txt +5 -0
  841. package/config/hard/SymbolicSystemOfEquations/input/02 - Circular reference, 2 variables.txt +5 -0
  842. package/config/hard/SymbolicSystemOfEquations/input/03 - Self reference.txt +5 -0
  843. package/config/hard/SymbolicSystemOfEquations/input/04 - No equations.txt +3 -0
  844. package/config/hard/SymbolicSystemOfEquations/input/05 - Levels.txt +7 -0
  845. package/config/hard/SymbolicSystemOfEquations/input/06 - Levels again.txt +6 -0
  846. package/config/hard/SymbolicSystemOfEquations/output/01 - Example.txt +3 -0
  847. package/config/hard/SymbolicSystemOfEquations/output/02 - Circular reference, 2 variables.txt +1 -0
  848. package/config/hard/SymbolicSystemOfEquations/output/03 - Self reference.txt +1 -0
  849. package/config/hard/SymbolicSystemOfEquations/output/04 - No equations.txt +2 -0
  850. package/config/hard/SymbolicSystemOfEquations/output/05 - Levels.txt +6 -0
  851. package/config/hard/SymbolicSystemOfEquations/output/06 - Levels again.txt +4 -0
  852. package/config/hard/TANNetwork/code/CGCode.cpp +31 -0
  853. package/config/hard/TANNetwork/code/CGCode.java +31 -0
  854. package/config/hard/TANNetwork/code/CGCode.ts +15 -0
  855. package/config/hard/TheGreatestNumber/code/CGCode.js +7 -0
  856. package/config/hard/TheGreatestNumber/code/CGCode.php +8 -0
  857. package/config/hard/TheGreatestNumber/config.json +43 -0
  858. package/config/hard/TheGreatestNumber/input/01 - Simple.txt +2 -0
  859. package/config/hard/TheGreatestNumber/input/02 - Positif.txt +2 -0
  860. package/config/hard/TheGreatestNumber/input/03 - Sans virgule.txt +2 -0
  861. package/config/hard/TheGreatestNumber/input/04 - G/303/251rer le z/303/251ro.txt" +2 -0
  862. package/config/hard/TheGreatestNumber/input/05 - G/303/251rer le z/303/251ro une 2/303/250me fois.txt" +2 -0
  863. package/config/hard/TheGreatestNumber/input/06 - Pleins de z/303/251ros.txt" +2 -0
  864. package/config/hard/TheGreatestNumber/input/07 - Retour aux bases.txt +2 -0
  865. package/config/hard/TheGreatestNumber/output/01 - Simple.txt +1 -0
  866. package/config/hard/TheGreatestNumber/output/02 - Positif.txt +1 -0
  867. package/config/hard/TheGreatestNumber/output/03 - Sans virgule.txt +1 -0
  868. package/config/hard/TheGreatestNumber/output/04 - G/303/251rer le z/303/251ro.txt" +1 -0
  869. package/config/hard/TheGreatestNumber/output/05 - G/303/251rer le z/303/251ro une 2/303/250me fois.txt" +1 -0
  870. package/config/hard/TheGreatestNumber/output/06 - Pleins de z/303/251ros.txt" +1 -0
  871. package/config/hard/TheGreatestNumber/output/07 - Retour aux bases.txt +1 -0
  872. package/config/hard/TheHolyGrail/code/CGCode.cpp +23 -0
  873. package/config/hard/TheHolyGrail/code/CGCode.java +21 -0
  874. package/config/hard/TheHolyGrail/code/CGCode.js +13 -0
  875. package/config/hard/TheHolyGrail/code/CGCode.php +11 -0
  876. package/config/hard/TheHolyGrail/code/CGCode.ts +13 -0
  877. package/config/hard/TheHolyGrail/config.json +28 -0
  878. package/config/hard/TheHolyGrail/input/01 - Simple 3x3.txt +8 -0
  879. package/config/hard/TheHolyGrail/input/02 - Stairs.txt +14 -0
  880. package/config/hard/TheHolyGrail/input/03 - One more challenging one.txt +99 -0
  881. package/config/hard/TheHolyGrail/input/04 - Even more complex.txt +149 -0
  882. package/config/hard/TheHolyGrail/output/01 - Simple 3x3.txt +1 -0
  883. package/config/hard/TheHolyGrail/output/02 - Stairs.txt +1 -0
  884. package/config/hard/TheHolyGrail/output/03 - One more challenging one.txt +1 -0
  885. package/config/hard/TheHolyGrail/output/04 - Even more complex.txt +1 -0
  886. package/config/hard/TheHungryDuckPart2/code/CGCode.cpp +24 -0
  887. package/config/hard/TheHungryDuckPart2/code/CGCode.java +22 -0
  888. package/config/hard/TheHungryDuckPart2/code/CGCode.js +14 -0
  889. package/config/hard/TheHungryDuckPart2/code/CGCode.php +15 -0
  890. package/config/hard/TheHungryDuckPart2/code/CGCode.ts +14 -0
  891. package/config/hard/TheHungryDuckPart2/config.json +28 -0
  892. package/config/hard/TheHungryDuckPart2/input/01 - city pond.txt +16 -0
  893. package/config/hard/TheHungryDuckPart2/input/02 - Lake Constance.txt +41 -0
  894. package/config/hard/TheHungryDuckPart2/input/03 - Nile.txt +101 -0
  895. package/config/hard/TheHungryDuckPart2/input/04 - Atlantic Ocean.txt +66 -0
  896. package/config/hard/TheHungryDuckPart2/output/01 - city pond.txt +1 -0
  897. package/config/hard/TheHungryDuckPart2/output/02 - Lake Constance.txt +1 -0
  898. package/config/hard/TheHungryDuckPart2/output/03 - Nile.txt +1 -0
  899. package/config/hard/TheHungryDuckPart2/output/04 - Atlantic Ocean.txt +1 -0
  900. package/config/hard/TheMaxSurfaceBox/code/CGCode.js +6 -0
  901. package/config/hard/TheMaxSurfaceBox/code/CGCode.php +7 -0
  902. package/config/hard/TheMaxSurfaceBox/config.json +38 -0
  903. package/config/hard/TheMaxSurfaceBox/input/01 - test 1.txt +1 -0
  904. package/config/hard/TheMaxSurfaceBox/input/02 - test 2.txt +1 -0
  905. package/config/hard/TheMaxSurfaceBox/input/03 - test 3.txt +1 -0
  906. package/config/hard/TheMaxSurfaceBox/input/04 - test 4.txt +1 -0
  907. package/config/hard/TheMaxSurfaceBox/input/05 - test 5.txt +1 -0
  908. package/config/hard/TheMaxSurfaceBox/input/06 - test 6.txt +1 -0
  909. package/config/hard/TheMaxSurfaceBox/output/01 - test 1.txt +1 -0
  910. package/config/hard/TheMaxSurfaceBox/output/02 - test 2.txt +1 -0
  911. package/config/hard/TheMaxSurfaceBox/output/03 - test 3.txt +1 -0
  912. package/config/hard/TheMaxSurfaceBox/output/04 - test 4.txt +1 -0
  913. package/config/hard/TheMaxSurfaceBox/output/05 - test 5.txt +1 -0
  914. package/config/hard/TheMaxSurfaceBox/output/06 - test 6.txt +1 -0
  915. package/config/hard/TheTotalIsRightWeirdEdition/code/CGCode.js +7 -0
  916. package/config/hard/TheTotalIsRightWeirdEdition/code/CGCode.php +8 -0
  917. package/config/hard/TheTotalIsRightWeirdEdition/config.json +33 -0
  918. package/config/hard/TheTotalIsRightWeirdEdition/input/01 - test 1.txt +2 -0
  919. package/config/hard/TheTotalIsRightWeirdEdition/input/02 - test 2.txt +2 -0
  920. package/config/hard/TheTotalIsRightWeirdEdition/input/03 - test 3.txt +2 -0
  921. package/config/hard/TheTotalIsRightWeirdEdition/input/04 - test 4.txt +2 -0
  922. package/config/hard/TheTotalIsRightWeirdEdition/input/05 - test 5.txt +2 -0
  923. package/config/hard/TheTotalIsRightWeirdEdition/output/01 - test 1.txt +1 -0
  924. package/config/hard/TheTotalIsRightWeirdEdition/output/02 - test 2.txt +1 -0
  925. package/config/hard/TheTotalIsRightWeirdEdition/output/03 - test 3.txt +1 -0
  926. package/config/hard/TheTotalIsRightWeirdEdition/output/04 - test 4.txt +1 -0
  927. package/config/hard/TheTotalIsRightWeirdEdition/output/05 - test 5.txt +1 -0
  928. package/config/hard/ThreeLittlePiggies/code/CGCode.cpp +21 -0
  929. package/config/hard/ThreeLittlePiggies/code/CGCode.java +20 -0
  930. package/config/hard/ThreeLittlePiggies/code/CGCode.js +10 -0
  931. package/config/hard/ThreeLittlePiggies/code/CGCode.php +13 -0
  932. package/config/hard/ThreeLittlePiggies/code/CGCode.ts +10 -0
  933. package/config/hard/ThreeLittlePiggies/config.json +28 -0
  934. package/config/hard/ThreeLittlePiggies/input/01 - Day 1Three pigs.txt +4 -0
  935. package/config/hard/ThreeLittlePiggies/input/02 - Night 1 Three pigs.txt +4 -0
  936. package/config/hard/ThreeLittlePiggies/input/03 - Day 2 Two pigs.txt +4 -0
  937. package/config/hard/ThreeLittlePiggies/input/04 - Night 2 Two pigs.txt +4 -0
  938. package/config/hard/ThreeLittlePiggies/output/01 - Day 1Three pigs.txt +4 -0
  939. package/config/hard/ThreeLittlePiggies/output/02 - Night 1 Three pigs.txt +4 -0
  940. package/config/hard/ThreeLittlePiggies/output/03 - Day 2 Two pigs.txt +4 -0
  941. package/config/hard/ThreeLittlePiggies/output/04 - Night 2 Two pigs.txt +4 -0
  942. package/config/hard/Vortex/code/CGCode.js +15 -0
  943. package/config/hard/Vortex/code/CGCode.php +16 -0
  944. package/config/hard/Vortex/config.json +33 -0
  945. package/config/hard/Vortex/input/01 - Simplest.txt +5 -0
  946. package/config/hard/Vortex/input/02 - Example 7x5 matrix.txt +7 -0
  947. package/config/hard/Vortex/input/03 - Just an 8x12 matrix.txt +14 -0
  948. package/config/hard/Vortex/input/04 - Many pixels.txt +22 -0
  949. package/config/hard/Vortex/input/05 - INSANE!!!.txt +14 -0
  950. package/config/hard/Vortex/output/01 - Simplest.txt +3 -0
  951. package/config/hard/Vortex/output/02 - Example 7x5 matrix.txt +5 -0
  952. package/config/hard/Vortex/output/03 - Just an 8x12 matrix.txt +12 -0
  953. package/config/hard/Vortex/output/04 - Many pixels.txt +20 -0
  954. package/config/hard/Vortex/output/05 - INSANE!!!.txt +12 -0
  955. package/config/hard/WallStreet/code/CGCode.cpp +24 -0
  956. package/config/hard/WallStreet/code/CGCode.java +22 -0
  957. package/config/hard/WallStreet/code/CGCode.js +13 -0
  958. package/config/hard/WallStreet/code/CGCode.php +11 -0
  959. package/config/hard/WallStreet/code/CGCode.ts +13 -0
  960. package/config/hard/WallStreet/config.json +38 -0
  961. package/config/hard/WallStreet/input/01 - Simple Trade.txt +3 -0
  962. package/config/hard/WallStreet/input/02 - Two Symbols.txt +4 -0
  963. package/config/hard/WallStreet/input/03 - No Trade.txt +3 -0
  964. package/config/hard/WallStreet/input/04 - Multiple Trades.txt +12 -0
  965. package/config/hard/WallStreet/input/05 - Busy Day.txt +101 -0
  966. package/config/hard/WallStreet/input/06 - Crazy Day.txt +130 -0
  967. package/config/hard/WallStreet/output/01 - Simple Trade.txt +1 -0
  968. package/config/hard/WallStreet/output/02 - Two Symbols.txt +1 -0
  969. package/config/hard/WallStreet/output/03 - No Trade.txt +1 -0
  970. package/config/hard/WallStreet/output/04 - Multiple Trades.txt +9 -0
  971. package/config/hard/WallStreet/output/05 - Busy Day.txt +46 -0
  972. package/config/hard/WallStreet/output/06 - Crazy Day.txt +76 -0
  973. package/config/hard/Winamax/code/CGCode.cpp +17 -0
  974. package/config/medium/BlunderEpisode1/code/CGCode.cpp +22 -0
  975. package/config/medium/BlunderEpisode1/code/CGCode.java +23 -0
  976. package/config/medium/BlunderEpisode1/code/CGCode.ts +11 -0
  977. package/config/medium/ConwaySequence/code/CGCode.cpp +19 -0
  978. package/config/medium/ConwaySequence/code/CGCode.java +17 -0
  979. package/config/medium/ConwaySequence/code/CGCode.ts +7 -0
  980. package/config/medium/CowsInAMaze/code/CGCode.cpp +29 -0
  981. package/config/medium/CowsInAMaze/code/CGCode.java +26 -0
  982. package/config/medium/CowsInAMaze/code/CGCode.js +18 -0
  983. package/config/medium/CowsInAMaze/code/CGCode.php +19 -0
  984. package/config/medium/CowsInAMaze/code/CGCode.ts +18 -0
  985. package/config/medium/CowsInAMaze/config.json +38 -0
  986. package/config/medium/CowsInAMaze/input/01 - Sample.txt +6 -0
  987. package/config/medium/CowsInAMaze/input/02 - Farmer Nhoj is cruel.txt +11 -0
  988. package/config/medium/CowsInAMaze/input/03 - Why does Farmer John have so few cows.txt +16 -0
  989. package/config/medium/CowsInAMaze/input/04 - BIG MAZE (actually pretty small).txt +16 -0
  990. package/config/medium/CowsInAMaze/input/05 - Yay all the cows survived.txt +16 -0
  991. package/config/medium/CowsInAMaze/input/06 - How come Nhoj only knows 1 number.txt +11 -0
  992. package/config/medium/CowsInAMaze/output/01 - Sample.txt +1 -0
  993. package/config/medium/CowsInAMaze/output/02 - Farmer Nhoj is cruel.txt +1 -0
  994. package/config/medium/CowsInAMaze/output/03 - Why does Farmer John have so few cows.txt +1 -0
  995. package/config/medium/CowsInAMaze/output/04 - BIG MAZE (actually pretty small).txt +1 -0
  996. package/config/medium/CowsInAMaze/output/05 - Yay all the cows survived.txt +1 -0
  997. package/config/medium/CowsInAMaze/output/06 - How come Nhoj only knows 1 number.txt +1 -0
  998. package/config/medium/DwarfsStandingOnTheShouldersOfGiants/code/CGCode.cpp +24 -0
  999. package/config/medium/DwarfsStandingOnTheShouldersOfGiants/code/CGCode.java +22 -0
  1000. package/config/medium/DwarfsStandingOnTheShouldersOfGiants/code/CGCode.ts +13 -0
  1001. package/config/medium/FrogDate/code/CGCode.cpp +21 -0
  1002. package/config/medium/FrogDate/code/CGCode.java +20 -0
  1003. package/config/medium/FrogDate/code/CGCode.js +11 -0
  1004. package/config/medium/FrogDate/code/CGCode.php +7 -0
  1005. package/config/medium/FrogDate/code/CGCode.ts +11 -0
  1006. package/config/medium/FrogDate/config.json +78 -0
  1007. package/config/medium/FrogDate/input/01 - test 1.txt +1 -0
  1008. package/config/medium/FrogDate/input/02 - test 2.txt +1 -0
  1009. package/config/medium/FrogDate/input/03 - test 3.txt +1 -0
  1010. package/config/medium/FrogDate/input/04 - test 4.txt +1 -0
  1011. package/config/medium/FrogDate/input/05 - test 5.txt +1 -0
  1012. package/config/medium/FrogDate/input/06 - test 6.txt +1 -0
  1013. package/config/medium/FrogDate/input/07 - test 7.txt +1 -0
  1014. package/config/medium/FrogDate/input/08 - test 8.txt +1 -0
  1015. package/config/medium/FrogDate/input/09 - test 9.txt +1 -0
  1016. package/config/medium/FrogDate/input/10 - test 10.txt +1 -0
  1017. package/config/medium/FrogDate/input/11 - test 11.txt +1 -0
  1018. package/config/medium/FrogDate/input/12 - test 12.txt +1 -0
  1019. package/config/medium/FrogDate/input/13 - test 13.txt +1 -0
  1020. package/config/medium/FrogDate/input/14 - test 14.txt +1 -0
  1021. package/config/medium/FrogDate/output/01 - test 1.txt +1 -0
  1022. package/config/medium/FrogDate/output/02 - test 2.txt +1 -0
  1023. package/config/medium/FrogDate/output/03 - test 3.txt +1 -0
  1024. package/config/medium/FrogDate/output/04 - test 4.txt +1 -0
  1025. package/config/medium/FrogDate/output/05 - test 5.txt +1 -0
  1026. package/config/medium/FrogDate/output/06 - test 6.txt +1 -0
  1027. package/config/medium/FrogDate/output/07 - test 7.txt +1 -0
  1028. package/config/medium/FrogDate/output/08 - test 8.txt +1 -0
  1029. package/config/medium/FrogDate/output/09 - test 9.txt +1 -0
  1030. package/config/medium/FrogDate/output/10 - test 10.txt +1 -0
  1031. package/config/medium/FrogDate/output/11 - test 11.txt +1 -0
  1032. package/config/medium/FrogDate/output/12 - test 12.txt +1 -0
  1033. package/config/medium/FrogDate/output/13 - test 13.txt +1 -0
  1034. package/config/medium/FrogDate/output/14 - test 14.txt +1 -0
  1035. package/config/medium/FunctionNotation/code/CGCode.js +6 -0
  1036. package/config/medium/FunctionNotation/code/CGCode.php +7 -0
  1037. package/config/medium/FunctionNotation/config.json +93 -0
  1038. package/config/medium/FunctionNotation/input/01 - test 1.txt +1 -0
  1039. package/config/medium/FunctionNotation/input/02 - test 2.txt +1 -0
  1040. package/config/medium/FunctionNotation/input/03 - test 3.txt +1 -0
  1041. package/config/medium/FunctionNotation/input/04 - test 4.txt +1 -0
  1042. package/config/medium/FunctionNotation/input/05 - test 5.txt +1 -0
  1043. package/config/medium/FunctionNotation/input/06 - test 6.txt +1 -0
  1044. package/config/medium/FunctionNotation/input/07 - test 7.txt +1 -0
  1045. package/config/medium/FunctionNotation/input/08 - test 8.txt +1 -0
  1046. package/config/medium/FunctionNotation/input/09 - test 9.txt +1 -0
  1047. package/config/medium/FunctionNotation/input/10 - test 10.txt +1 -0
  1048. package/config/medium/FunctionNotation/input/11 - test 11.txt +1 -0
  1049. package/config/medium/FunctionNotation/input/12 - test 12.txt +1 -0
  1050. package/config/medium/FunctionNotation/input/13 - test 13.txt +1 -0
  1051. package/config/medium/FunctionNotation/input/14 - test 14.txt +1 -0
  1052. package/config/medium/FunctionNotation/input/15 - test 15.txt +1 -0
  1053. package/config/medium/FunctionNotation/input/16 - test 16.txt +1 -0
  1054. package/config/medium/FunctionNotation/input/17 - test 17.txt +1 -0
  1055. package/config/medium/FunctionNotation/output/01 - test 1.txt +1 -0
  1056. package/config/medium/FunctionNotation/output/02 - test 2.txt +1 -0
  1057. package/config/medium/FunctionNotation/output/03 - test 3.txt +1 -0
  1058. package/config/medium/FunctionNotation/output/04 - test 4.txt +1 -0
  1059. package/config/medium/FunctionNotation/output/05 - test 5.txt +1 -0
  1060. package/config/medium/FunctionNotation/output/06 - test 6.txt +1 -0
  1061. package/config/medium/FunctionNotation/output/07 - test 7.txt +1 -0
  1062. package/config/medium/FunctionNotation/output/08 - test 8.txt +1 -0
  1063. package/config/medium/FunctionNotation/output/09 - test 9.txt +1 -0
  1064. package/config/medium/FunctionNotation/output/10 - test 10.txt +1 -0
  1065. package/config/medium/FunctionNotation/output/11 - test 11.txt +1 -0
  1066. package/config/medium/FunctionNotation/output/12 - test 12.txt +1 -0
  1067. package/config/medium/FunctionNotation/output/13 - test 13.txt +1 -0
  1068. package/config/medium/FunctionNotation/output/14 - test 14.txt +1 -0
  1069. package/config/medium/FunctionNotation/output/15 - test 15.txt +1 -0
  1070. package/config/medium/FunctionNotation/output/16 - test 16.txt +1 -0
  1071. package/config/medium/FunctionNotation/output/17 - test 17.txt +1 -0
  1072. package/config/medium/InsideArea/code/CGCode.js +11 -0
  1073. package/config/medium/InsideArea/code/CGCode.php +11 -0
  1074. package/config/medium/InsideArea/config.json +38 -0
  1075. package/config/medium/InsideArea/input/01 - /345/217/243.txt" +5 -0
  1076. package/config/medium/InsideArea/input/02 - /345/207/271.txt" +9 -0
  1077. package/config/medium/InsideArea/input/03 - /345/207/270.txt" +9 -0
  1078. package/config/medium/InsideArea/input/04 - arc de triomphe.txt +33 -0
  1079. package/config/medium/InsideArea/input/05 - really large.txt +15 -0
  1080. package/config/medium/InsideArea/input/06 - really really large.txt +603 -0
  1081. package/config/medium/InsideArea/output/01 - /345/217/243.txt" +1 -0
  1082. package/config/medium/InsideArea/output/02 - /345/207/271.txt" +1 -0
  1083. package/config/medium/InsideArea/output/03 - /345/207/270.txt" +1 -0
  1084. package/config/medium/InsideArea/output/04 - arc de triomphe.txt +1 -0
  1085. package/config/medium/InsideArea/output/05 - really large.txt +1 -0
  1086. package/config/medium/InsideArea/output/06 - really really large.txt +1 -0
  1087. package/config/medium/MayanCalculation/code/CGCode.cpp +36 -0
  1088. package/config/medium/MayanCalculation/code/CGCode.java +29 -0
  1089. package/config/medium/MayanCalculation/code/CGCode.ts +20 -0
  1090. package/config/medium/NetworkCabling/code/CGCode.cpp +22 -0
  1091. package/config/medium/NetworkCabling/code/CGCode.java +20 -0
  1092. package/config/medium/NetworkCabling/code/CGCode.ts +11 -0
  1093. package/config/medium/Scrabble/code/CGCode.cpp +23 -0
  1094. package/config/medium/Scrabble/code/CGCode.java +23 -0
  1095. package/config/medium/Scrabble/code/CGCode.ts +10 -0
  1096. package/config/medium/ShapeOutline/code/CGCode.js +11 -0
  1097. package/config/medium/ShapeOutline/code/CGCode.php +13 -0
  1098. package/config/medium/ShapeOutline/config.json +48 -0
  1099. package/config/medium/ShapeOutline/input/01 - Triangle.txt +5 -0
  1100. package/config/medium/ShapeOutline/input/02 - X.txt +8 -0
  1101. package/config/medium/ShapeOutline/input/03 - Play.txt +8 -0
  1102. package/config/medium/ShapeOutline/input/04 - Plus.txt +8 -0
  1103. package/config/medium/ShapeOutline/input/05 - Heart.txt +14 -0
  1104. package/config/medium/ShapeOutline/input/06 - Codin Game.txt +9 -0
  1105. package/config/medium/ShapeOutline/input/07 - Maze.txt +22 -0
  1106. package/config/medium/ShapeOutline/input/08 - Dark Night.txt +14 -0
  1107. package/config/medium/ShapeOutline/output/01 - Triangle.txt +6 -0
  1108. package/config/medium/ShapeOutline/output/02 - X.txt +28 -0
  1109. package/config/medium/ShapeOutline/output/03 - Play.txt +12 -0
  1110. package/config/medium/ShapeOutline/output/04 - Plus.txt +12 -0
  1111. package/config/medium/ShapeOutline/output/05 - Heart.txt +44 -0
  1112. package/config/medium/ShapeOutline/output/06 - Codin Game.txt +62 -0
  1113. package/config/medium/ShapeOutline/output/07 - Maze.txt +136 -0
  1114. package/config/medium/ShapeOutline/output/08 - Dark Night.txt +52 -0
  1115. package/config/medium/StockExchangeLosses/code/CGCode.cpp +21 -0
  1116. package/config/medium/StockExchangeLosses/code/CGCode.java +19 -0
  1117. package/config/medium/StockExchangeLosses/code/CGCode.ts +10 -0
  1118. package/config/medium/TelephoneNumbers/code/CGCode.cpp +23 -0
  1119. package/config/medium/TelephoneNumbers/code/CGCode.java +21 -0
  1120. package/config/medium/TelephoneNumbers/code/CGCode.ts +11 -0
  1121. package/config/medium/TheGift/code/CGCode.cpp +23 -0
  1122. package/config/medium/TheGift/code/CGCode.java +20 -0
  1123. package/config/medium/TheGift/code/CGCode.ts +10 -0
  1124. package/config/medium/War/code/CGCode.cpp +27 -0
  1125. package/config/medium/War/code/CGCode.java +23 -0
  1126. package/config/medium/War/code/CGCode.ts +13 -0
  1127. package/config/medium/YeAnthrWrdSerch/code/CGCode.js +12 -0
  1128. package/config/medium/YeAnthrWrdSerch/code/CGCode.php +12 -0
  1129. package/config/medium/YeAnthrWrdSerch/config.json +63 -0
  1130. package/config/medium/YeAnthrWrdSerch/input/01 - Horizontal Vertical Forward.txt +12 -0
  1131. package/config/medium/YeAnthrWrdSerch/input/02 - Horizontal Vertical Backward.txt +12 -0
  1132. package/config/medium/YeAnthrWrdSerch/input/03 - Diagonal Forward.txt +12 -0
  1133. package/config/medium/YeAnthrWrdSerch/input/04 - Diagonal Backward.txt +12 -0
  1134. package/config/medium/YeAnthrWrdSerch/input/05 - All Directions.txt +12 -0
  1135. package/config/medium/YeAnthrWrdSerch/input/06 - Flower Power.txt +21 -0
  1136. package/config/medium/YeAnthrWrdSerch/input/07 - Overlap.txt +9 -0
  1137. package/config/medium/YeAnthrWrdSerch/input/08 - Dog Pound.txt +18 -0
  1138. package/config/medium/YeAnthrWrdSerch/input/09 - Many Short Words.txt +18 -0
  1139. package/config/medium/YeAnthrWrdSerch/input/10 - Tightly Packed.txt +10 -0
  1140. package/config/medium/YeAnthrWrdSerch/input/11 - Knuth/342/200/231s Mathematicians.txt" +14 -0
  1141. package/config/medium/YeAnthrWrdSerch/output/01 - Horizontal Vertical Forward.txt +10 -0
  1142. package/config/medium/YeAnthrWrdSerch/output/02 - Horizontal Vertical Backward.txt +10 -0
  1143. package/config/medium/YeAnthrWrdSerch/output/03 - Diagonal Forward.txt +10 -0
  1144. package/config/medium/YeAnthrWrdSerch/output/04 - Diagonal Backward.txt +10 -0
  1145. package/config/medium/YeAnthrWrdSerch/output/05 - All Directions.txt +10 -0
  1146. package/config/medium/YeAnthrWrdSerch/output/06 - Flower Power.txt +19 -0
  1147. package/config/medium/YeAnthrWrdSerch/output/07 - Overlap.txt +7 -0
  1148. package/config/medium/YeAnthrWrdSerch/output/08 - Dog Pound.txt +16 -0
  1149. package/config/medium/YeAnthrWrdSerch/output/09 - Many Short Words.txt +16 -0
  1150. package/config/medium/YeAnthrWrdSerch/output/10 - Tightly Packed.txt +8 -0
  1151. package/config/medium/YeAnthrWrdSerch/output/11 - Knuth/342/200/231s Mathematicians.txt" +12 -0
  1152. package/package.json +1 -1
@@ -0,0 +1,11 @@
1
+ 10
2
+ ..XXXXX.X.
3
+ X....X.X.X
4
+ X..X..XX..
5
+ X..X.XXX..
6
+ X..X.X..X.
7
+ X....XX..X
8
+ ..X...X...
9
+ X........X
10
+ X..X....X.
11
+ XXX.XX...X
@@ -0,0 +1,12 @@
1
+ 11
2
+ ..X....X.XX
3
+ X.X.....X..
4
+ ..X..XX...X
5
+ ..X..X..XX.
6
+ X..X...X.X.
7
+ XX.XX.XX.XX
8
+ X.......X.X
9
+ .X..X...XX.
10
+ X.X.X..X.X.
11
+ .X.XX...X..
12
+ X..X.XX.X..
@@ -0,0 +1,17 @@
1
+ 16
2
+ .X......XXX.....
3
+ .X.............X
4
+ .....X..........
5
+ X..X.......X.X..
6
+ ..XX..X..X.XXX.X
7
+ X...............
8
+ ...X...X..X.X.X.
9
+ .X.X..........XX
10
+ ...XX.XX....XX..
11
+ ....X...X.....X.
12
+ .X......X....X..
13
+ .X.X...X.X..XX..
14
+ .........X......
15
+ .X..X.X........X
16
+ .X..X.X....X...X
17
+ ..X.............
@@ -0,0 +1,31 @@
1
+ 30
2
+ XXX.X.X.....X..X......X..X..X.
3
+ X........XXX........XX...X....
4
+ .X..XXXXXX.......X...X......X.
5
+ ....X.....X.....X.X.X...X.X...
6
+ .XXXX..X......XXX.X...X.X.....
7
+ X..XXX...XX..X......X..X.....X
8
+ ....XX...XX..X..X....X......X.
9
+ .......X..X...X............X.X
10
+ X...X.X...X.......XX.X..X...X.
11
+ ...XX........X.X..X.XX....X...
12
+ .X.....X...X....X...X..X......
13
+ .X....X.....X.X..X..X.X......X
14
+ ...X......XX.XXX..X.XX.XXX....
15
+ X.....XX...X.X..............X.
16
+ ...X......X...X...X...X..X....
17
+ .XXX.X.....X...............X.X
18
+ .XXX................X.X.XX....
19
+ ...X......XXX..X....X...X..X.X
20
+ ..XX...X..............X..X.XXX
21
+ .X..X......X.........X.X.XXXX.
22
+ X..X......X.....X.....XX....XX
23
+ ..X.X.XX.........X.X.XX..XX...
24
+ ..XX...X....................XX
25
+ ..X...XX........X.......X.X...
26
+ ...X..X..X.X....X..XX...X..X..
27
+ ....X..X.....X............X.X.
28
+ .XX.XX...X.X..X........X......
29
+ X........XX..X..X....X....XX..
30
+ X.X.X.....X..XX......X....X...
31
+ ...X.......X.X..X...........X.
@@ -0,0 +1,51 @@
1
+ 50
2
+ ..X..XX.X.....X...XX.X............X.XXXXX..X.X.XX.
3
+ ...X..X......X..XX.X.X.X.X.....X.........X...X....
4
+ ....X.X.....X.XXX.......X..X...XXX.......X.....X..
5
+ .X.....X....X..X....XX...X.XX...X........XX.......
6
+ X.....XX..X......XX...X.XX..XX..XX.......XXX.....X
7
+ ...X.X...XXX.X....X...X..X.X.X.......X.X...XXXX.XX
8
+ X..X..............X...X...X...X.XX.X..XXX.X.......
9
+ ....X...XX......X..X....X..X.......XX..X..XX.X....
10
+ ..XX..X........X.XX......X....X.XXXX.....X........
11
+ X..X....X...X.XX..X........XXX.X.......XX...X.X.X.
12
+ .........XX.X...X..X.XX....X.X.XXX.X.......X..X...
13
+ X......X..XX..X.X..X...X.XXX....X.X.X.XX.X..X.X..X
14
+ XXX......XX..X...X...X.....XXX.X...XXX..........X.
15
+ .X.X........X.X.......X...X.X..XXX...X..X....X..X.
16
+ .....X.X.XX.........XX......XXXX....X....X...X.X..
17
+ X.XX........X.XX..X...X..XX..XX.X.X........X......
18
+ ...X....XX..XX.X..X.X...X.X.......X........XXX..X.
19
+ .....X..XXX....X.....XX..X.....XX.X.XXX.X.X...XX..
20
+ X...........X.X..X....X.....X......X.........X....
21
+ X.X.XX....XXX.X.X.......XX.....XXX.........X......
22
+ .XXX..X..............X.XXXX...X.............X...XX
23
+ ......X......X..X.XXX....XX..X....XX..X..X...X.X..
24
+ .....X..X.........X.X...X.X..XXX..X.X.X..X.X.....X
25
+ .X.X.X...X.X...X.....X..XX.XX..........XX..XX.....
26
+ XX.......X.XX..X..X.....X...X....X...XXX..X.XXX..X
27
+ ......XX..XX....X.XX..X..X..X.....X..X.X....XX....
28
+ XX.XX...X..X........XX.X.....XX.X.....X......X...X
29
+ X..X......X.....X..X..X.....X.X....X......X.X.....
30
+ XX..XX.....XX..XX..X.X...X......X......X..X..X..X.
31
+ XXX....XX...X.XX..X..X..XX.....X..X.X..X....XXX.X.
32
+ .X.....XX..X.........XX.XX....X........XXX.X...XX.
33
+ XX........X..XX.....X.....X.X..XXXX.....X.......XX
34
+ .X....X......X.X.X..XX..X..X.X......XXX....X.X...X
35
+ ......X....XX...........X...X.........X......X.X..
36
+ X..................X.......X.......XX...XX...X.X.X
37
+ ....XXX.X..XX....X..........X...XX.X..........X...
38
+ XX.X.X..XX...........X......X...X.....X.......XX..
39
+ .XXX..XX...X..X....XX....XXXX.X.X.X.X.X.XXXXX...X.
40
+ .XX....X....XX..X.......X..XXX..XX..X.XXXXX.X...X.
41
+ ....XX....XX.X......X.X...X.XX....XX..XXX...X.XX.X
42
+ X..XXX....X..........X.XXX.XX....X.X....X.........
43
+ .X...X...XX..X.........X..X.X..XX..X.X......X.X.X.
44
+ ...X.X....X..X.XX...X................X.XX.X......X
45
+ X.X.XXXX....X.X.X..X......XXXXX....XX.............
46
+ X..XXXX.X........X.XXXX.X....X...X..XX.XX..XX.....
47
+ ...X..XX.X......X.X..XX..X.X.....X.X..X..XX.......
48
+ .X.X.....X......XX..XX..X.....XX.X...X..X.X.......
49
+ X.......X...X...X.......XX......X....X..XXX....X..
50
+ ....XXX..X.X....X..X..X...X.X.X.....X.X..X.X..X..X
51
+ ......X....XX.X......XX...X..XX...XX.X..X....X....
@@ -0,0 +1,100 @@
1
+ 99
2
+ ..XX..XX....X...XXX....X....XX..X....XX.......XX...X.XX......XX...........X...X.....X..X..X....X...
3
+ ....XX...X.X.X......XXX.X.X...X.X...XX..X..X............X...X...X..XXX..XXXXX.X..X.X...XX.X....XX..
4
+ .....XX..X....XX.X....X......X...X...X.XX...X.X.X...X....X.........X...X..X....XX....X........XX..X
5
+ X.X..X..X......X.X.X...X....X..X........XX.X........X....X..........X.....XX.X.........X........X..
6
+ .X...X....XXX.......XX.XX.....XX......X.X......................X.......X.XXXX.X...X......X.X..X....
7
+ ..X..X..X........X.XXXX....XXX..X..........X..X..X.XX..XX..X.....X...X.....X....X.....X....X.X.X...
8
+ ..X..X.........XX.X...X.XX.X.X.X..XXXX...X.....X...X......X...X.X.XX...X....XX...........XX...X....
9
+ ...X...X.XX.XX.XX.X....X.XXXX.X...X.XXX...XX...X.X.X..X..X.XX....X..X.X...X......XXX...XXX...X.X.X.
10
+ .X..X....X............XX...........XX...XX...XXXXX.XX..X...X......X..X.X.......X..X...X.XX.....X...
11
+ X.....X..XXX..X.XX.XXX.X.X.X....X.....X.X...XX.XXXX........X....X...X...X..X.....X.X...X.....X.....
12
+ .......X.......XX..X.X...X.........XX.....XXXX.....X....XX........XX..XXX.....XX.X.XXXXX...........
13
+ ..XX.XX.......X..XX.X..X....XX..X...X...X......X.X.X.......X...XXX..XXXX.XX.X.XX......X.X.X..X..XX.
14
+ ....XX...X.X.X.X..XXX....X..X..X.X.X.XX...X.XX.X.XX.XX.....X...XX..............X.X..X.X..X.....X.XX
15
+ X..X.X...X...X..XXX..XX..XXXX.XXXXX..X.XX.....X........X.XX.........X........XXXXX..XX...X...X.....
16
+ XX...XX.XX......X..........X.....X.X.X..X...X.....X...X.....X....X......XX..XX....X..X.XX...XX.XXX.
17
+ X..X.X....XXXX.XX..X..X....X...X...XX.X..XX....X................X..X.X.X.XX....X...XX...XX.XXX.X...
18
+ X.X...X.....X..XXX.....X...X.X..X...XX.XXX..X..XX......X...XX....XXX....X..X..XXX...X.......XX..X..
19
+ ..XX..X..X....XX....X.X..X..X.X.......X..XX...X..XXX..X..X....X........XX.....XX....X..........X.X.
20
+ ........X..XX.....X....X..X.X.X..X.XX...X..X...X..XX....X..X..X.........X......XX..X.X...X....X.X..
21
+ X..X...X.........XXX..X..X....XXXX.....XXX...XXX..X......XXXXX.XX..X..X....XX..X.....X..XX....X....
22
+ ........X.......X.X..........X..X...XX...X.X...X........X.XX.X..XX.X.XX..X...X...X........X......X.
23
+ X...XXX..X...X..X......XX.X.X..X........X...X.XXX..X....X.....X....XXXXX....X.......X....XXX......X
24
+ ..X..XX..XXXX..X.X.XX....X.X....X.X.XX...X........X..X...X.X.........XX................X.XX..X.....
25
+ ..X...X....X.XX....X...XXX...X..XX......X...X.XX..XXX........XX.XX..X.......X..X...X....X..XX..X.X.
26
+ XX.XX....X.......X.X..X.......X....X..X..XXX.X.X.XX.....X..XXX..X.XX..XX.XX..X..X..XX.........X...X
27
+ ...X.XX..X.....X.....X.X.........XX..X..X.X.X.XX.....XXX..X.XXX.XXX...X...X.X.X..X.X..XX.X.....X...
28
+ ..XX..X....X.X.X..X...XXX...XXX...XXX.X.XX..X.X..X......X...X..X.......X......XXXXX....X..XXX.X....
29
+ .X...X.XXX..X...XX..............X..X...X......X.X.X..X..X.X....XXXX.......X.X...XX.X.XX..X..X....X.
30
+ ....X.....X...X..X....X.XX.X..XX...X.X...X...X.X.X...X.X......XX..X..X........X.....XX..X.XX...X...
31
+ .....XX.......X..XX.X...X.X.X.XXX.XX.......X..X..X...XXX..X.......X..X....X..XX......X....X.X.X...X
32
+ .......X...XX.......X.X....X.X...X..XX...X..XX.X.X....XX...XX.......X.X...X........X.X.......X...XX
33
+ .XX.............X...XX.X..XX...X.X.X.X...X....X.X.X..X.X...XX...XX.X.......X...X.....X..X.X...X....
34
+ ....XX.X.XX.X....XX.X...XXXXX..........X.X.X....X.......XX......X...XXX....X.......X......X.X...X..
35
+ ......X....X..X........X..XXX..XX.......X.X..XXX...X........XX.....XX.X...X..X....X..X....XX.......
36
+ ...X.X.....X....X.....X.X...............X.X.....XX..X...XX......X....X....X.......XX....XX...XX.XXX
37
+ ...XX.X....X......X...X....X...X..XX.X..X..X.X.X........X...X.....X.X.XX...X......X...X.X.X......X.
38
+ .X...X.......X..X.X..XX..XXX.X...X...X.XX...XX.X.X...X...X...XX.XX..X..X...X..X.X.X.X....XX.X.X...X
39
+ .....X......XXXX....X.XX.XX.XX..XX.....X..X..X..X...X.XX...XX...X..X.X..X..XXXXX....X.......X..X...
40
+ ...X..X..X....XXX..X...XX...X...XX.X..X.X..X.X.....X..........X.....X....XX.X.X............XX...X.X
41
+ ......XXX.X.X.X.......X.X..X....X.X...X..X.X.X...X.XXX....X.........X.X.......XX....X........XX.X..
42
+ .XX.....X......X...X..X.........XX...X......X.X..XX...XXX..X.X..X....X..X........X...XXX......X..X.
43
+ X...X..XX..X.X.......XX.XXXXX..X...X.X..X....X.....X.X...XX.XX..X...........XXX.....X...X...X.XX.XX
44
+ ...X..X...X.X....XXX........X.XX.X.X.....XX.XXX.........X....X......X...XX...X..X....X.X.X...XX....
45
+ ...X....X......X......X............X......XX....X...XX.X..X..X............X..X.X.........XX...X..XX
46
+ X..XX..XX.X...XX..XX.XX..X....X..X.......XXX....X.X.....X.....X..X.X......XX...X..XX....X..X.XX.XX.
47
+ .X.X.....X..X.X...X...XXXX...X.XX....XX..XXX.X...X..X.X.XX...X..XX..X...X...X.X....X.....X.X.XX....
48
+ ..X...X..X.X..X.X.XXXX.X..X.....XX.X.......XX..XX......X..XX......X......X..X...X.XX....XX..X.X..X.
49
+ ....X.XX..X.X.X..XX.X....X..X.X.X...X..XX.X..X.XXX..X........XX..........X..XXXX....X....XX....XX..
50
+ ....X....X.X......X.X.X..X...X.X.X...XX....X...X.X...X....X...X.......X.XX.....XX........X....X...X
51
+ ...X.X.........X..X.X.....XX.X..X...........X..XX.X...XX.XX....XX.XX.....XXXXXX...X..XX...X.XX.XX..
52
+ X.X.X.X.......X..X.XXX...X.........X.X..X....X...X..XX.....X.XX......X.X.X...............X..XX.....
53
+ X..........X..X..XX...X.....X...XX....XX.........X..X.X.X..X..X....X..X...XX.X......X.X.....X.X.X.X
54
+ XX......X........XX.X......X........X..XX...X.X...X.....XX....X....X...XX.XXX...X...X..X..X....X...
55
+ .X........X..XXXX..X....X...X....XX..........X...X.....XX..X....X.X....X.X...X..X...X....XXXX..XX..
56
+ XXX.X.XXX....X...X...X...XX................XX..X.X..X...XX.X...XX......X.XXX.....X....X.X.XX.....X.
57
+ .X......X.....X...X.X.X...X..XXX.....X..X....XX..X..X...X.X.X..XX.X....XX..X..XX.XX.X......XX.XX..X
58
+ XX.X....X..X...X.......XX....X.........X.XX..X.X..X.X...X......XX.X.X.XX...X....X..........X.XX.X.X
59
+ ..X.........XXXX....X.....X..X...XX.X.X.....XX..X......X.....X..XX........X.XX.......X...X...X.....
60
+ .XX..X.X.X...X..XX..X.X.XXXX..XX...X.X.....X..X..X.X.X...XXX.X..X.X...X..XX.XXX.X.X...XXX.X.X...XX.
61
+ XX...X..X.......XXX....X.XXX...XX.....X.........XX....XXXXXX.X......X....X..XX..X..X.X...XXX....XX.
62
+ .X.....X......X....X..X..X.XX...........XXXXX......X........XXXXX...X..XX..XXX..X....XXXX...X......
63
+ XX......XX.XX.X..XXX..XXX.X..X....XXX...X.X..X....X..X........X....X.X..X....X.X..XXXX..X....X.XXXX
64
+ X.XXX..X..XX......XX.....X..X.X..XX..X...XX......XX.X........X......X..X.X...X.X.X....X...X....X..X
65
+ ..XX.XX.X.......X..X..X...X.XX..X..X.XXX......X....X..X.....XX.XX....X.X..XX...X......XX..XXX.X..X.
66
+ XX.....XX.XXX.........X.X..X.XX.X.X.......XX.....XXX.....XXXX.X..X.........X........XX....XX...X.X.
67
+ .X.......X...X.....X.XX.X.....X.....X.XX.....X.X...XX..X..X.X....XXX.....X.X.X.........X..X.X..X...
68
+ ......XXX.....X..X.X....XXXX....XX..X.....XX..........X..X..X..X.X........X.XX..X..XX.X.XX.XXXX.X.X
69
+ .X...X.......X..X....X.......XX.XX..X.X..X.X.X.XX.X....X....XXX....XX...X.X.X.X....X..X.XXX.......X
70
+ X..X.X........X..X.XXX......X..XX...XX..X.X.....X.X.X...X...X........X..XX..XXX.......XXX........X.
71
+ .X..XX..XX.XX..X.X.X......XX..X.X......XXX...XX.XX..X..X.......X.XX......XX...X....X.XX....X.XX..X.
72
+ ....X.X..X.X..X.XX.X.......X.......XX.X.XXX........X..X..X..X.X.....X.......X......XX...X.XX.XXX.X.
73
+ ...X......XX.XX...X.X.......XX.....X.X.......X.......X...X.X............X.XX..XXXX.XX...X.......X.X
74
+ X...X....X..X...X...XX.X.XX..X..XXX....XX.X..X...X.X.X.X....XX...X....X....X....X..X.X.......X....X
75
+ XX.X....X.X...X..X.XXX......XX..XX..........X....X.X......X.X.X..X..XXX.....X.XX.X.....X..XX..X...X
76
+ ...XX...........XX....X...XXX.........X.........XX...X.XX..X...X.XXX..XX.X.........X...X...XX..X.XX
77
+ ..X.X..X........X.X.......X.XX........XX....X.X.......XXX.......XXXXX.XXX.......XX..X....XXX.X.X..X
78
+ ...X.X........X.X..X.XX.X..........X..X..X..X................XXX....X..X......XXX...X.XX...XX..XXX.
79
+ .X..X.X....X..XX.....X..XXX.X.X....X.X........X.X...XX..X..XX...XX.....X.X....X...........X..X...XX
80
+ ...X...X.X.........X...X.XXXXX...XX.X..XXX..X.XXX.X..X..XX......X.X.X..X....X....X.XX......X..X....
81
+ .X...XXX..X.....XX.XXX.X.........X..XX..X....X....X..........X............X.X......X...X.......X...
82
+ .XX..X..XX......X....X...X...X...XXX..X...XX....X...X..X.....XX.....X...X..X.........X...X..X.XX...
83
+ ..X...XXX....XXX....X...X..X........X.X.X...X.X...X.XX.......X.X..XX..X......X...X..X..XX..X.......
84
+ X.X.XX.......X.X.......X.XX.....X......X......XXXX...XXX..X.X...X..X.X.XX......XX.....X....X..X....
85
+ ...X...XX.XX.X...XX..XX.X.........X.XX..X.X.X..XX..XXX.X......XX..X...X..X..XX....X.X.X..XX....XXXX
86
+ ......X...X...X..XX......XXX.XX.X..........XX.X.X..XX...X...X......X.X.X....X.XXX...XX..X....X.....
87
+ .....XX..X.....X........X...X..X..XX..X.X....X.........X.........X.....X.X...XXX.X.X.X...XXX.X.....
88
+ .X..XX.X.X..X....X...........X.XXX.XX...X.X...XXXXX.XX...X......X.......X..X.X.X....X.X..X.X.X..XX.
89
+ X.X..X......XX...XX...X.....X.X...X..X.....X..X..........X..X...XXX.XX.X.X....X....XXX...........X.
90
+ ...X.XXX.X..X.X......X..X.X...X.XX.XXX.XX.......X..XXX..XX.........XX..XXX....XX...XX.......X...XX.
91
+ X......X..XX...X.X.....X..X...........X..X....X....X.XXXX..XX..X.X.X..XX....XXX......X........X....
92
+ ......X.....X.XXX..X..XX..XX.........XX...X......XX...X......XX.X....X.XX....XXXX....X..XX.X..X....
93
+ X.XX..XX..XXX..............X....X..X....X....X.......XX.XXX........X.X...XXX..X.XX..X..............
94
+ ......X.......XXXX.....X..XX.X.X.XX.X.........X...X.XX...XX.....X....X....XX..X..XX.X......XXX...X.
95
+ X........XXX......X...XX......XXX...X.........X.XX.X......X..X.X..X....XX.X.X.X.....X.........XXX..
96
+ ........XX..X....X.....X.X...X......X..X....X.......X.XX.X.X......X....X....X.X...XX.X.XXX.XX.X..X.
97
+ ....XX......XX..XX.......XXX.....X...XXX......X..X...X..X.....XX.X.XX..........X.X...X.....X.......
98
+ X..X..XX..X.X..X..XXX...XX.XX..X..X.XX.............XXX..X..X........X.....X..X.X.X.X..X...X...XX...
99
+ ...X..X..X..X......X..X..X.X.XX..X.X..X.X.XX...X...X......X.X....X...X...X....X........X.X.XX.X.XXX
100
+ ....X..XX....X..X.XX..X....XX.......X.XXXX...................XX..XX..X.X.X......X..X....X..X.......
@@ -0,0 +1,100 @@
1
+ 99
2
+ XX....X.X......X.......X..X.X..XXX.X....XX.X.X.X.....XXXX..X.XXX..X...X.......X..X..X..XXXXX.....X.
3
+ XXX.X..XX.........XXXXX....X.X...X.........X.....XXX...XXX...X..XXXXX...X..X..X.....X..X.XX.X.X.X..
4
+ XXXXXX..X...X.X.X...X...XX..X....XXX..XX..XX...XXX.XX.XX..X..XX...XXX..X.XXX.XX.X..XX...XX.XXX..XX.
5
+ XXX..X.XX.XX....XXXX..X....X.X.XX..XXX..X.X.X.......X....XX.....XXX..X.XX........XXX.XX...X.X.X...X
6
+ .X..XXX..XX...X.X.X...XXX..X..........X....XX...XX..X...X.X..X...X.X.....X.XX.........X...X...X.X..
7
+ X.X.....XX.X..X.X..XXX..XXXXX..X...X.XXX.X..X...XXXX..X..X.XXX.XX..XXX...XXX....X..X....XXX...X....
8
+ ...XX........XX....XX...X.....XXX......XX....X....X.X..X.....XXXXXXX..X....X...X..XX.X...X.........
9
+ X...X........X....XX.X.....XX.XX.X..XX.X.X.XX....XX..X.X...XX......X......XX.XX....XX.....X....XX..
10
+ X.XXX.X.X..X....X..X.....X...X..XXX.XX.X.X..XXX...X.X....X.XXX.....X.X.XXX.XX..X....XX.X.....XXX.X.
11
+ .XXXXX...X....XX....X....X.X.XX...XXX....X.X....XX.XX.XXX.XXX.XX...X..XX.XXXX..XX..XX....X.X...XXX.
12
+ .X.XXX...XX.........X...X...XXXXX..XX....X..X.XX.X..XXX.......XXXXX.X.X...XXX..XX..XXX.XX...XX.X..X
13
+ ...XX..XX..X..X..X..X......X..X.XX..X....XX..X.....XXX.XX.X.X..X..X.X.XXXXXX.X...X.X.X.XX......XX..
14
+ .X..XX...X.XX.XXX......XX.X.XX..XXXX....XXXX.X.X....XXX..XX........X.XX.X..X.....X.X.....XXXX.X..XX
15
+ X...X.XXX...X.X.X...XX.......X.X.....X..XX....X.X.X..XXX....XX.X.XX.X......XX..XXX........X..XX..X.
16
+ XXX.X........X.......X.XX.XXX.X....XX..XXX..........XXX..X.XX.XXX.X.XX..X..XXX.XX..XX.X..XX....X.X.
17
+ .XX.XXX...X.X....X.......XX.....XX....XXX.....X...X.XXXXXXXXX...X..XX..X...X..X.X.XX..XX.XX.XXXX...
18
+ ....XX..XX.X...X.X.....X..X.XXXX...XXX......X.X.XXX.X........XX.XX...XX...X.X..X..X..X...XX.X....X.
19
+ X.XX.X.XXX.XX....XX...XX..X..X...XXXXX.XX.X..XX.XX.X.X...XXX........X..X.X.X..X.X....XXX..X....X..X
20
+ X.X.XX......XXX.X..XXXXX...X..X..X.XXX......X.XXXX...XX..X...X.....X..X.X...X.X.XXX..X..XX..XX....X
21
+ X...XXXX...X.XX.X...XXX.....XX......XXX...X....XX........X.XX.X.....XX.....XX..XXXX...XXX.X...X..XX
22
+ .XXXX..XX..X..XXXX.X.X...XX.X......X.X....X.....XXXX.X..XX...XX...X.X....XX..X...........X.X...XX..
23
+ ...X...X.XX.X...XX.X...XX....X......XXXX.X..X..X....X..XXXXXX....XXX.X..X....X.XX..X...X......XXXX.
24
+ .X..X......XX....XXX..XX..XX.XX.X..X..X.X.XX.X..XX......X.....XXXX.XX..XX.XX.X...X.XXX..XX....X.X.X
25
+ ..X......X.XX.XX...X.XX..XXXXXX.XXXXX.......X.XXX...X...X..XX.XX.......X.X...X......X.....X..XX....
26
+ .XXX.XX.XX......X..XX.X...X...X.XX.X.......X.X..X....X.XXX.......XXX..XX...XX...X.XXXXX..XXXXX.....
27
+ .XX...X.X...X....XX..X..XXXXXX...X........X.....X.........X..X.....X....XXX.XX.......X...X......X..
28
+ X.X.X.XXX.XXX...XXXXX..X.XX....XX.XX....XXX...X..XX.X.X.X..XX.X.X...X.X.X.X.......XX....X.XX..X....
29
+ X.XX..XX....X.X...XX........X.X....X.XX.XX....X.X..X...X.X...X.X..X.....X..X.......X...XX...X.XXXX.
30
+ .XX.X.XXXXX..X.X.........X........XX....X.X......X.X.X.X..X..X..X...X.X..XX..XX.XXX.X.XXX.X.X.X...X
31
+ XXX.XXX.......X..XXX...X..X...X.X........XX.X.X.X..XXXXXXXXXXX..X........X.XX..X...XXXX......X.X...
32
+ ..XXX...X......X..X.X.X....X.....X...X.X.X.X...XXXXX...XXXX.....X.X.X....X.X.......XXXX...X....X.XX
33
+ ..XX...XX.X......X........X.X...X.X.X.X.X....XXX...X..XX...X.X.X.XX.X..X..X.....XXX...XXXXX..X..X..
34
+ .X.XXX..X...XX.X..X..XX...XX.X..X..XXX...XXX..X.X.X...XX.XX..X.X.............X.X.XXXX...XXX.X.XX...
35
+ ...XXX...XX..X....X.X..X.X.X...X......X.X..X..XX..X..X...XXXXX.XX.....X.XX...X...XXX..X.X...X..XXX.
36
+ XXXX.....X.X.X.X.X..X..XXX.XXX..X....XX..XX...XXX...X..XXXX.X..X....XXX..X..XX.XX....XXXX.X...XX...
37
+ ....X.XXX.X...X.....XX.XX.X..X.X.......X.X.X.X.X...XXXXX.X..XXXXXX..XX.X.X...X.....X.XX..XXX....X.X
38
+ X.XX..X.XXXX..X...X.....X..XX.X...XX.X.X..XX.....XXX..X.X...X..X...XXX.XX..X.X.X.X..X..X.....XX...X
39
+ ....XXX.X..X...X........X.........X.XX..XX...XX....XX.XXX.X....X...XXXXXXXX.......X.XX.X...X....XX.
40
+ ..X..X.X.....X.X.XXX.X..X...XX..X....XXX...XX.......XX....X..XX.X.X.X....XXXX..X.X..X.X.X..XX..X...
41
+ .X.XX.X..XXX.X..X..X.XX..XX......X.....X.....X.X.XX.XX..X..X...XXXXXX...XX..XX.X.X.XXXX.X...X.XXXXX
42
+ .XX..X.....XXXX...X..XXXXXX.X..XX........X.X.X..X..XX..X..XXX...XXX.X....X......XXX.X...X..XXXX....
43
+ ......X.XX..XXXXXX.XXXX.X.X..XX.XX.X.X..XX.X.XXX.....X...XXXXX...X.XX......X.X.X....XX.XXX....XX...
44
+ ..X.XX.....XXX.X.X...X..X.X.........XXXXX.X....X..X...X.....X.X.X..XXXX.....X.XX........X.X...X.XX.
45
+ ..XX.....X.XXXX.X.X..XX..X...X.X.....X.X....X.XXX..XX...X..XX.XX.XX.X.X.X...X.XX..XX....X.X.X....X.
46
+ XXXX...XXX.X.XX.X.X...XX..XXXX......XXX....XX....XXX....X.X..XX....X.X..XX...XXX.XXXX...X.X....X..X
47
+ X..XX.....XX.......X..XXXX...X.X.X..XX.X.X...XX..XXXX..XXXXX.X.......XX..X..X.......X..X...XXXXX.X.
48
+ .XX.X....X.X........X....XX..X...X.X.X....XX..XX..XXX..X.X.X.X..XX.XXX...XX..X...X.X..XXX..X...XX.X
49
+ .X.X.X.X....X.X..XX.X......XX....XXX..X.X.X.X.....XXX.X.X.......XXXX..XX.......X...XX.X..X.XXX..X.X
50
+ XX....XX...X..X...XX..XX..XXX...............XXXX....X.X.X......X...XX.XX.X..X.X.X.X.X..XX...XX.X.X.
51
+ ......XXX.X...X..X.X.X.X...XXXX...XXXX....X.X.XXX.....X......X.X..X..XXX.........X...X........X.X.X
52
+ X....X.....X...X.......X.X.X...X..XX.........X...X.XXX..X....XX.....XXX..X..XX...X..X..XXXXX....X..
53
+ X.X.X....XXX..X....XX..XXX.X..XX..XX..X..XXX..X....X.XX.......XXX.X.....X.X..X....X....X...........
54
+ X.X....X....XXX.XXXX..XXXX...X..XX.....X.XX....XX..XX.X.XX.XX......X.XX.XX..X....X..XX..XX.X.......
55
+ .X...X...XX..XX...X..XXXXXXXX...XXX.X.XX..X.....X...X.XX..X.X.X.....X...XXX.XXX....XX.XXXX..XXX.X..
56
+ .X...X.X..X...XX...X.X....X.X..XX..X.....X...X..X.X....X....XXXXX.......XX.X....X..X....X.X..X.X.XX
57
+ X.XX..XX.XX.XXXXX......X..X.X...X..X..X.X.XX..X...XX.....XX.XX.X...X..XX...XXX.XXX.X.X.XX.X..XX....
58
+ X..XX.X.X...XXXX.X....XXX....XX..XXX.XXXXXX.XXXXXXX....XXXX..XXX.XX.......X..X.......X.XXX....XX.X.
59
+ ..X..X..XXXX..X...X...X...X...X.XX..X..XX.....X.XXXXXX.XX....X..XX...XX.XX..X......XX...X..........
60
+ .X....XXXX.......X..X......X..X......XXX....XX.....XX.X..XX....XX..X.XXX.....XXX.....X.XXX..XX.XX..
61
+ .XX.XX.X..X.XX.XX..X.XXXX..X...X..XX..X.XX.X.XXXXX....X..XX.X.X....X....X.X.XXXXX.XXX....XXXXX.XX.X
62
+ .X..X...X...XX.XXX....XX.X.XXX..XXX.XX.X..XX.......X......X.X...X...XXX.XX..XXX..XX.......X.XXX.X..
63
+ XX.X.XX.XXX........XX.XXXXX.....X.X..X.....X...X.....X..XX....X....X.X.........X....XX...X.X.X.XX..
64
+ XX.XXXX........XX......X.X..XX...X..XXXXXXX.XX.......XX.X.XX.X..X.X.XX...XX.XXX.XXX...XXXXXX..X...X
65
+ ...X.X.XX.....X.XX.XX..XXX.X.XX..X..X....XX.X.X...X..X..XX......XX.X.X....XXXXXXX...XXX..X....XXX..
66
+ .XX..X..XX.X.X....X.X.XXXXXXXXX..XX......X.X.X.XXXXXX.X....X.X..XXX.X.X..XXXX.........X..X.X...X.X.
67
+ XXXX.X..X.X.X..XX..X.X..X.X.XX.X.X..X.XX...XX..X.X..XX.X.X...XXX..XXXX..XX..X...XX....X...XX.XXXXXX
68
+ ...X.X..X..X.........XX......X.X......XX.X..X........XXX....X.....XX.X..X.....XX..X...XX.X..X.XXX..
69
+ ......X.X...X....XXX...X..XXX.....XXXX.XX....XX........XXXX..X.X...X.XXX...X....XX....XXX..XX..XX.X
70
+ XX......X.X.XXX.X...X...X..X.......X.X.X.........XXXXX....X..XX......XX.X......XX....XXXXX.X...X.XX
71
+ ..XX..X..XX..X.....X....XXXX.X...X..XX.......XX..XXXXX...XX..XXX...X....X..X.....XXX..X.....XXXX..X
72
+ .X.....X.XX.XX.....XX.X.XXXXXXX....X...X..X..X......XX.X..X.X...X.XX...XX...X.XXXX.X....X.....XX..X
73
+ .XX.X..XX...X...XXX..XX..X....X..XX.XX.X.XX..X.X..XX....X.XX..X......X..........X......XX.X....X.XX
74
+ X..X.X...X.X..X.XXXXX...X.....XXX.XX.XXX...XX....XX...X.X......X.X..X...X.XX...X.X..X..XXXX..XX..X.
75
+ X.X..X..X....X....X....X.....X..X.XX.X.X...X...X.....X...X..X....XX....X.X..XXX..X.....XXX.X..X.XX.
76
+ .X..XX.X.XXX.....X..X..X..XXXX..X............X..XX..X...XXXX......XXX.....XX.X...XXX..XXX...X....XX
77
+ X.XX.XX..X.XXXXX..X.X...X..XX.XXXXX.X..XXX.....X.X.......XX.X.XXX...X.....XXXXX..XXXXX.......X.X...
78
+ ........X.X.X..X.XX....X....X......X...XX.XX.X...X......XX..XX..XX...........XX.X.X.X.XX..XX.......
79
+ ....X.XXXXX..X...X..X.XX.XX.XX.XX..XX..X..XX.......X.........XXXXXXX...X.X..X.......X.X.......X...X
80
+ XXXX..XXX..X...XXXX..XXX...XX.XX..X..X..X....XXX.XXX..X..X.X.XXXX..XXXX..X.X......X....XXX.X..XX...
81
+ X.....X..............XX.X.XX...X..X..XXX.X.X.....XX....X..X..X.XX.X...X..XX...XX.X..X..XX..XXX..X..
82
+ .X..XXX.X.X.XXXX....X.XXXXXX..X...X.X....X.X.......X.XX.X.....XX..XXXX...X...XX..X.XX.XX.....X.X..X
83
+ ......XXX.XX.X..XX..X..XX..X.....X.XXX..........XX.....XX...XX...X.X......XXX...XXXXXXX.XX..X.....X
84
+ .X..XX.X...XX.X..XX....X.X...XX.XX.XX.XX....XXXX...X..X..X..X.X.XXX.......X.....X......XX.X..XX....
85
+ X.....XXX..X...X..X....XXX.XX..X..XX.....X..XXX.X...XX...X....X.XXXXX....X..X.............XXX.....X
86
+ XXX.XXXX...XX..XX....X.XXXX..X......X......XX....XXXX.XX...X.XX...XX..X.X..X..X...XXXXXX.X....X..XX
87
+ .........X...X.....XXXX..X...X..X...............XX..X....X..XX.X.XXXX..XXXXX.X..X..X.X.....XX.XXX.X
88
+ .X..X.X.....X.X.XX..X..X..X...X..XX..X.X.....XX.X...XX.X.....X..XXX.X.......X.X.XX..X......X.X.X...
89
+ X.X.X.......XX..X...X...X.XXX.XX.XX.X...XXXX.X......XX.....XX..X..XX.....XX...X....X.X..X.X.X..X.X.
90
+ .XXX.XXXXXXX.X.X...XX.X..X.X.X........X...X.X....X.XX.XXX...X.X....X.XXXX......X...X....XX.X..XXX.X
91
+ X.......X..XXX..XX..XXXX...X..X.X.X.XXX..X..X...X..X...X.XX.....X..X.X..X.X.XXX..XX.XX.......X..XX.
92
+ ......X...XX..XX..X.X......X....X.XX.X.XXXXX.....X..X.X...XX...X.X...XX.......XX..X.X....XX...X.X..
93
+ .X.XXX...........X..XX..X.X....XXX.XXX.X.XXX.X.XX.X.X.XXXX...X.XX.X.X..X...X..XXX.X.XX...X....X.XXX
94
+ .X.X......X..X...XXX.XX.......XXXXX..X.X..X.XX.X....XXXX.....X...XX..X..XX.XXXXX...X.X.X..X.X..XXXX
95
+ .XX....X..X.X..X..X.X.X......X..X...XX.XX....XXX.XX.X..X..XX.....XX.XX...X....XXX......X....X...XX.
96
+ XX...X....X..XX.....X.XX.......X.....XX.X.XX...X..X.XX..X..X....X..XX...XXX.XXX.........X...X.XX.XX
97
+ XXX.....X.XX.X.X..X.XX..XXXX.X.X......X..XXX.....X..XX...X........XX....X.X..X.....X.XXXX..XX.X....
98
+ X..X.X....X.XX.X....XXXX.X.X.X.X.XX.XX...X.XX....XX.....XX...X.X.........X..XX...XX.X...X....X...X.
99
+ X....XXXX.....XX..X......X..X.XX.....XXX....XX..X........X......X..XX.X.XX......XX..X...X......XXX.
100
+ ...X.....XX..X..XX......XXX.X.X..X...X..X.X..X......XX.X...XX...X..XX..X.XX.X.X...XX...XX........X.
@@ -0,0 +1,100 @@
1
+ 99
2
+ X...X...XXX.X...X.X.X....XX.XX.XX..X...X..XXXX.XXXX..X.X.XXXX.X.X...X..XX.XXXXX....XX...X...XXXX.X.
3
+ ..XXXXX.......XXX.XX.XX.XXXXX..XX..X.XX.XX.XXX..X.X..X.X.XX...X..X.X....XXXX..X..X..XXX..XXX.X..X.X
4
+ XX..XXX.XX.X..XXX...X.XX.XXX.XXXXXX.....X..XX..XXXXXX..X.X..X.......X..X..X.X.XX...XX.XX.XXX..X.XXX
5
+ ..X.XXX..X.X.....XXXX..XXXXX..X.XX..XXX.XXXX...XX....XX.X.X.XXX..X..XXX..X.X.X.X.XX.XXXXXXXXX.....X
6
+ XXX.XXXXX.XXXX.XX..X....X..X.X.X.XXXX.XX.X..XX.XX.......XX.X...X........X.X..XXX.....X.XX.X.X......
7
+ XX.X..X.X...X.XXXX......X.XX.....X.....X..XX.X.XX..X.X.X.X...XX...XX.......XX.XXX.XX...X...X.X....X
8
+ ..X.X..XXX.X.XX..XX..XXX...X.X.XXXXXXXX..X.X...XXX.XX...X.X..XX..X..X..XXXX.X.XX..XX...XXX.XXXX.XX.
9
+ X...X.XXXXXXXXXX.X..XXXX.XXX..X..X..XXX..X..X..X....X..XX..X.XXXXX..X.X.XX...XX.X..X..X.X.XX.XXXX.X
10
+ .XXX.....XX..XX.XXX.X.X...X..XX............XXX.XXX..X.X...X..XX....X.....X.XXXXX..XX.X.X.XXX......X
11
+ XXXXX.X.XX....XXX.XXXX..XX..X.X.X.X.....X.X..X.X.XXXX.X....XX...X..XX.XXX.XXX..X..X.X.X..XX.XXX.X..
12
+ X.X....XX..XXXXXX..XXXXX..XX..X.X.......X.X...X..XX..XXX.X.X...X....X..X.X.XX.XXXX...XX..X.X.X...X.
13
+ .X.X...X.XXX.X.X.X.X.X......X.X..XXX.XXX.X...XX...X..X.X....X..X.XX...XXXXX..X.X.X.....XX.....X.X..
14
+ ....XXXXX.XXX.X...XX..XXX...XXX.X.....X..X....XX..X....X.XXXXX..X...XXXX...X.XX..XXXXX...X..X.XXXX.
15
+ ........X.XXX...X.X.XXXXXX...XXXXXXX.....XX.XXXXX.......XX.X.....X...XXXX....X.X..XX..X..X.XXXXX...
16
+ XX...XXXXX.XX...XX..X...X.X.X.XXX..X.X..X..XXXXXXX..X.X...X.X.X.X...XX.XX......XX.XX...XX.XX..XXXX.
17
+ ....X.X.XXXXX...XXX...XX.X.X.XXXXXXXX.X.XX...XXXXXXX.XX..X.X.X.XX..........X.X..X.....X.X.X.X.X...X
18
+ X....XXX..XXX...X..XXX...X....XX.X..XX..XXX.XXXX..XX..XX......XX.X.X..X....X.XX...XXXXXX..X.XX..XX.
19
+ .XXX.X..X..XXX.XX.X.X.XX...X...X..X....XX.X.X.X.XX..XXXXXX..X....XX....XX....X.XX..XXX...XX.X...X..
20
+ X.X.X.XX..XX.X.X.X..X..XXXXX.X.XX....XXXXX.X........XX.X..X....X...X.....X..XXXXX.....X.XX..X.X..XX
21
+ .X.X...XXX..X....X.XXXXXX.X.XXXX.X.X.XX.XXX.X....X.XXXXXXXXX...X....XX...X.XX.X...XX.X..XX.X...X..X
22
+ XX...X...X..XX.XX.XX....X.X.X..X.XX.XX.XXXX.X.X.XXXX..XX...X.X.....XXXXX..X..X..XX..X.X.X..X..XX.X.
23
+ .X.XX..XX....X.X.X.XX.X.X...XXXXX..X..XX.XXX.....X.X.XXX..X.X...XX..XXXXX.X..XX.XX.XX....X.X.XX....
24
+ .XXX..X.......X...X..XXX..X.XXX.X..XXXXX..XX..XXX.X....X.X..X.XX.XXX.X....XXXXXX..XX.X.XXX.X.X.XX.X
25
+ XXX.XXX..XXX..X.X.X.X.X....XXXX.XX.XX.XXX.X.X....X.XXXX.XXX..XX.X.X.XXX.XX......X.X.X.XXXXX.X...X..
26
+ .X.X.X...X..X.X.XXXXXX.X....XX.XXX.X..XXX....X.X.XX..XXX..X.XX....XX...XXXX..XX.XXX.X.XXX..X......X
27
+ XXX.XX.X...XXXX..X..XX..XX.......X.X..XXX..XXX..X...XX....XXXX...XXXX.X...XXX....X...X.X.XXXX.X.XXX
28
+ .X.X.XX.X....X...XX.XXX..X...X..X.XX.X....XXXXXXX....XXXXXX.XXXX...XXXX..XXXXXXXX..XX.XX...XXXX.XXX
29
+ X.X..XX.X.X...XXXX.XX...X......X.X...XX.XXXXX.X..XXX.XXXXX.....X...X.X.X...X...XXX.XX.X.X.X..XXXXX.
30
+ .XXX.X...XX..X...XX.X.X.XX.XX.XX..X..XXX.XX..XXXX..XXXX......X...X.XXXXX...XXXX....X...X....XX..XXX
31
+ ...XXXXX..XXX...XXXXX.XX..X..X.X...X.X.XXXX..XXXX.X..XX.X.XX.....XX..XXXX...X...XX...X.XX....X.X.X.
32
+ X..X.......XX.XX..XX..X.X..XX.X.XX.X.X.XXXX..X..XXX..X..X....X.XXXX.XXXX.XXXX.XXX.X..XXX..XX.X..XXX
33
+ XX....XXX.XXX.X.XX.XXX.X.XXXXX.....X.X..X.X....XXXXXX..X.....X..X...X..X......X.X.X.XXXXXX.....X.X.
34
+ XXX.X...XXX....X...XX..XX.XXXX.XX....X.X.X..X.X.XX.XX.X..X..XXX.XXX.XXX..X.X.X..XXXX.XXX..XXXX.X..X
35
+ X..XX..XX..XXXXXXX..X.X...X.X..XX..XXXX.XX...X.X..X.X..XXX.X.XX.X....XX..XX.XXX.X.X......X.X...X.X.
36
+ .XXXX.X.....XXX.XXXX.X..X..XXXXXX...XXX.X.XXX...X...XXXXXXXX..XX.X.X.X.XX.X.X......X..XXXX...XXXX.X
37
+ X.X...XXX.X..X....X...X.X...X.X.XX.X..XXX..X..XX.XXXX.X.X..X.X...XX.X..XXXXX.XXXX..X..XX....XXX....
38
+ ..XX..X..X....XXX...XXX.X.....XXX.X..XXX.....XXX..X..XX..X.X..XX..X.XX.X..XXXXX...XXX.X.XXXX..XX.XX
39
+ .XXX..X.X...X...XXXX.XXXXXX.X.....X.XX.X.X...XXXXXXX..XX.X..X.XX..X..XXX.X.X...XX..XX.XX..XX.......
40
+ ..XX..X..XX.XXX.XX...X.XX.XXXX...X.XXXXXX...XX...X..XX...XX.X..XX.X..XXXXXX.X.X.XX.XX.X......XX.XXX
41
+ .XXX.XX..XX....XXXXX...XX.X.....X..X...X..X...XXXXXX.X.XXX..XXXX.X.X.....XXXX.X...X.X.X..X....XX.XX
42
+ ..XX.X.X..X..X...X...XX..XXX..XX.XX..X.X..X..XXXX.X.X..X.X..X..X.....XX.X.XXX...X.X.X.XX.X.X.XXX.X.
43
+ X.XX....XX...XX.............XXXX.X.X....X...XX.XX..X........XXX...XX.X....XX.X.X.XXXX.X..XXXX..X.X.
44
+ ...X.XX.X..X.XXX..XX...X.XX.X.X.X..XX.X.X.XX.....XXX.X..X......X....XXXX.....X.XX..XXXXXXXX........
45
+ .XXXX..XX..X..XXX......XX...XXXX...XX.X.X..XXXXX.XXXX..X.X.X..XXX..X.X.XX..XX..XX..XX.XXX.X...X...X
46
+ ......X...XX...X..XX..X.X.X.XXX.XX...XXXXXXXXXXX.XXXXXX...X....X.XXX.X.XX.X......X..X...X.XXX.X....
47
+ .X..XXXXXX.XX.....XXXXXX.X.X.XXXX.X.XXXX.X..XXXX.X.X.X..XX.XXX.............XXX...XXXXX.XX.X.XX..X..
48
+ XX.....X.XXX....XXX..X...XXXX..X..XX..X.XX.X..X....X....XXX..XXXXXX...X..XXX.XX.....XXX.XX...X.X.XX
49
+ XX.X..XX..X.X..X.X.XX.X.X.....X.XX.X.X....XXXXX.X.....X..XX.XXX.XXXXXXX.X.X..X.....XX...X...X....X.
50
+ X.X.XX...XXX..X........XX.XX...XX.X.X.XX..XXX..X.......X.XX..X.X.X.XX....XX...XX.XX...XX.X.XXX.XX..
51
+ X...X.X..XX..X.X....X..X..XXX..XXX..XXXXX.XXX.......X.X....XXX.XX..X......XX..X..XXXXXX..XX..X.X.XX
52
+ XX...XXX......X.X.X.X.X...XX.X.......XXX.X.X...X.XX.X.XX...XX......XX..XX....X..XX....XXX..XXX.XX..
53
+ XXX..XXX.XXX.X..X.....XX.X....XXX.XXXX.X.X.X.X.X......XXX..XX...XX.X.X.XXX..XXXXXX.XX.X..X..X.XX..X
54
+ ..X....X...X....X.X.XXX..XX.XX.XXX.X..XX..XXXXX...X......X.X.X.X.X..X.X.X.XX...XX.X.X.XX.XX...X.X.X
55
+ ..XX.X...XXXX.XXXX.X.X.X..X..XX...X..X.........X.X....X.X.XX..X........X....XX.XXX.X..X.X.XX.X.XX..
56
+ ..XX.XXX......X...X.X.....XXX..XXXXX.XXX.X.X.XXXX..X..X....XXX.X.XX.............XX.XX.XX.X..XX..X.X
57
+ XX....X.XXX.XX.XXX.X...XX.XXX.XX..XX..X..X.XXX..XX....XXXXXX.X.....XX.XX...XXXXXXXX..XXX...XX.X....
58
+ X..X.X..X...XX.XXX.XX..XX.X...XXX.XX..X..XX.XX...XX..XX.X...X.XXXX.XXX..X.X.....X..XX.XX..XXX.....X
59
+ .XXX...X..XXXX...X..X..X..XXXXX.XX.XX....XXX...XX...XXXXX.XXXX.X.....X.X.....X...X..XXXX.X..XXXX.X.
60
+ X..X..X............XXXXXXXX...XXX....X..XXXXXX.XX.X.XXXXX..XXXX.X.XX....X.X...X.X.XX.X..XXX..X.....
61
+ X...XX.....XX..X....XXXXXX..X.X.XX..X.XXX.X..X.X.X..XXX.X...X.X..XX..XXXX..X.XX.XX.XXX...X.XX..XX..
62
+ ..XX.X..XX.XXXXX.X..XX.X......X.X...X..XX.XX.XXXX..XXX.X..XX.X.XX.X..XX.X...X..X...XX....XX.XX..XXX
63
+ X.XX.X.XXX..XXXXX.X.X.X...X.X.........X.XXXX...XXXX..X..X..X.....X.X.X.X.X.XX.X.XXX.X...X.XX..X.X.X
64
+ .XX.XX.XXX.XX.X.XXXX..X.XX..X.X.X...X..X.X.X...X..X....XXX..XXXX.X.X..XXX...X..XX..X.XXX...XX.X....
65
+ XX..XXXXX.X...XX.........XXXXXXX.XXXX.....XX.X...XX.X.X.XX.X....X.X.XX.XX.X.XX..X.X..X..X.XX.X..XXX
66
+ ..XXX..XX.X..XX..XXXXXXXXXX.XX.X.XX.X..X..X.X..XX..XXXX.XXXX.XX.X.X.X...XXX..X.X.XXXX..X..X.X.XX.X.
67
+ X.X.XX..X..XXX.X..XXXXXX.XXXXX...XX.XXXXXX.XXXX..X...XXXXXXX.XX.XX...XX.XX....XXXXX.X.XX..X.XXX..XX
68
+ .XX.X...XXXX...XX.XXX.X..XX.XX..X.XX..X....XXX.XXX.X...X........X.X...XXXXX.X...XXXX.XX.X...XXXXXXX
69
+ XXX.XX.X..XX..XXX.XXXX.X.X..X....XXXXX...X.XXXX..XX.XX...X.XXX....XX.X.XX..XX...XX.XX..XX.X..X.X..X
70
+ .X...X.X.XX.XXX.X...X.X...XXX.XXXX...X....XXXXXX.XXXX.X.X....XXXX..XX..X..X.XXX...X.XXX.XX.XXX.XXXX
71
+ ..X.XXXXX.X.XX.X.X.X..X.XX......X.XXX.XX.XX...X...XXXX...X.X..XXXXXXXX.X.XX.X..XXXX....XXXX....XXX.
72
+ .XXXXX..X..X.XXXX...XXXXX.X.XXX..XXX.XX.X.XX..XX..XXX.XXXXXXXXX...XXXXXXXXXXX...X..X.......XXX...X.
73
+ ...XX.X..X.X.X.X.XX.X..XXX..XX...X....XX...X..XX......XX.X.XX.X.....XX......XXXXXXXXXXX.XX.XXXX.X.X
74
+ XXX..XX..XXXX.XXXXX....X...XXXXXX.XX.XXX..X.XX......X....XX....XX.XXX.....X..XX..XX.X.XX.XX.X.X.X.X
75
+ XX..X.X.XXX.....XX.XX..X.X.X..X.XXXX.X.XX.XXXX.X.X..X..XXX.XXX.X.X..X......XX..XX.XXXX..XXXXXX..X..
76
+ .XXX....X....X.XX.XX.XXX...X.XXXX.XXX..XX.....XX..X.X..XXX.X...XX.X.......XXX....X.X...X.....XX..X.
77
+ .XXXXXXXXXX.X..XXX.X...X..XXX.XXX....X..XXXXXX.X.XXXX..XXX..X.XXX...X...X....X.X..X.....XXX..X...X.
78
+ .....X..XXX..XXX.XX...X..XX.X..XX.X.......XXXXXXXXXX.X.X.X.XX.XX.X..X...X......X.X...XX....X.X.....
79
+ .XXXXX.XXXX...XXX.....X.XXXX..XXX.XXXXX....XXX....XXX.XXX.X..X.XXXX.....XX.X.....XXXXX.X.X.XXXX..XX
80
+ XX.X..XX.XXX.XXX.XXX..X...X.XXXX..X......X...XX.......XXX..X..XXXX...X.XX.XXX.X..X..X..X.X....X.X..
81
+ XX..XX.X...XXX.XX.....XXX.....XXXX.XX.XXXXXXXXX.XXX..XXXXX.X.XXX.XX.XX...X..XXX...X..X..XX.X...X.X.
82
+ ..XX.....XXXXX....X..X..X.XX.XXX.X......XXX..XX..XX.XX...X.XXX.XXXXXXXXXXX..XX..X.X...X...X........
83
+ X.XXXXXX.X.....X..X.XXXX...X.X..XXX..X.XXXXX.X..X.X....XX.X.XX.X.XXXXXX..X.XXXX...X.....XXXXXXXXXXX
84
+ .......X..X.XXXX...X.XX.X.XXXXXXX.X.X..X.XXXXX....XX.XX.......XX.XXXXXX.X...XX.XXX.X...XX.XX..X.X.X
85
+ .XX..XXXX...X..X.XX.XX...XXX.X..XXX.XX..X.X.XXX..X..X.XXX....XXX.XX....XX.X.XXXX.....X.X.XXXXX.....
86
+ X.XX.XX..XX.....XX.XX.XXX..XX......X.XXX.XX.XX.XX.XX.X......XX..XXX..XX..XX..XXX...XXX.XX..X...X..X
87
+ X.XXX...X.....X..X.XX.X.XXXXXX.....XX.X..XXXXX..X...XXXX.XX....XX.X..XX..X..XXXXX...X..X.XX..XX.XXX
88
+ X..XX..X.XX.XXX.XX.XX.XX.X...XX..XX...XXX.X.X.XX.....X...X.XX..X.XXXXX...X.XXXX..X..X.X...X.X....X.
89
+ .X..XX.XXX.X.X.X.X.XX.X.X.......X.XX..X.X..X..XX..X....XX.XXX..X...XX....X.XXXXXXX.X...XXX.XXX..X.X
90
+ ....XXX.X.X.X....X...X.....X.X.XX..X.XX..X....XX.X.X..X.X...XX.X...X..X...X....XXX.X.X...XXX...XXX.
91
+ XXXX.XX.X.XXXXXXX...XXXX..X...X.X..XXX..X....X.X.XXXXXXX.X..XX.X.X.XX.X.XX.XXXX.X...X.XXX.X.XX..XX.
92
+ X..XX.XXX.XXX.X.X.XX.XXXX....X.XX.X.X...X..XXXX..X.X..X.XXXX...XX...X....XX.X.........XXX.X.XX...XX
93
+ .X....XXXXX..XX.XXX.X...X..X.X.X.XX.XXX.XX..XXXX..X.XXX.X...XXXX.X..X.X..XX.X.X.XX...X..XXXXXXXX.XX
94
+ XX.....X.X....XX..XX.XXXX.XXXX...X.........XX....XX....X.X....XX.XX.XXXX..X..X....X.X.XX...X.X.XX..
95
+ ...X.XX.XXX.XXX.X...XXX...XXX.XXXX.X.XXX.X...X..XX....X..X...X.XXX.XXX.......XXX.XX..X..XXXXXXXXX..
96
+ ........X.X..X..XX.XXX.X.XXXXXXX.X.X.X.X..XXXXX..XXX.....X.....XX......X.XX...XX.....X...XX.XX..X.X
97
+ X......XX.X...X......X..X.X.X..XX......XX..XX.......XX.X.X.X...XX..X.XXXXX.X.XXXX.X.XX...X.X.XX.XX.
98
+ ..XXXXX....XX.XXX.....X.XXXXX....XX.XXX..XX......XX.XXXX.X..X.X...XX.XXX....XX..X..XXX.XXX..X..XXXX
99
+ X..XXX.X..XX.....X.....XXXXXX.X....XXXX..X.XX..X.XXX....XX..XX.X.X.XXXXX...X..XXX..X.XX...X..X..X.X
100
+ .XXXXX.XXXX..XX...XXX.X.X..XXX.X..X.X..X....XXXXXXX.X.X.....XXXX..X...XXXX.....X....XXXXX...X.XXX..
@@ -0,0 +1,100 @@
1
+ 99
2
+ X.XX.X...........XX........X.X.X...X.....X...X...X...XX.X..X..XXXX...XXXX.X.X.XX..X.X....X.XXX..XX.
3
+ .X..XX......XX..X.X.X...X....X..XX.X.XXX....X....XX.X.X.XX.X.X..X.X.X..X.X...X.X.X..X...X.XXXXX.X..
4
+ X...X.........X.XXX.X.XX..XX...X.XXXX...XX.X.XX...XXX...XXX.X.XX..XXX.XX.XXX.X....X...XXX...X.X.X..
5
+ .....X........X.X.......X.X..XX...XX.X.XX.X..X..X..X.X.X..XXXX...X..X....X.X.X..XX....X........X...
6
+ .............X..XX....XX......XX..X...X....X.X...X.XX.X..X.X..X.X...XX.X..X.X......X.X.......X.X...
7
+ ..X..XX..X....X..XXX.XX...X...XX..X.....X....XX..X....X.X..X.XX......XX....X.....X...XXX...X.X.....
8
+ ..X...X....X..X...X....X.XX.XXX.XXX.X.X..X..X....X..X.XXXX..XXX.XXX.X..X...........X.X.....XX.X...X
9
+ XXXX...XX.........X.X..XX...XX.X..X.....XXX.XX..XXX..XX.X....XXXX.XX......X..X.XXXX..X.X.X.X.XX...X
10
+ ..XX...X..X.X.XX.....X...XX...XXXXX..XXX...X.X.....XX.......X..X..XXXX.X...XX..X...XX....X..XXXXX.X
11
+ XX......XX....X..X..X.XX.XX.......XX.XX...XXX...X......XX.X..X..XXX...XXX.X..X.XX..XX...X.XX.......
12
+ XX.X.X.X..X.X.....X..X..XXXX.......XXXX...XX.XXX.XXX.X...XX......XXX.XX..X.X..X......X..XX..X..X.XX
13
+ ...XX...X.XX...X.XX.....X.X..XX..XX..X..X.XXXXXX....XXX..XX....X..XXXX.X.XXX.....XXX..XX....X..X..X
14
+ XX.......XX..X.X....XXXXXXX..X...X.XXXXXX.XXX..XXXX.XX..XX.XX..XX..XX.X.XX.X..XX..X...X..X.........
15
+ .X.X...X.X.X.X.......X.XXXXXX.X.XX...XXX.X.X..XXX.X..X..X..X..X...X..XX.X.XX.X..X.X....X...X.XX.XXX
16
+ X....X..XX....XX..X..X.X......X.XX..X...XX....XX..X....X..X....XX...X..XXX...XXXXX..X.XX....X.....X
17
+ ...X.X..XX..X..X.XXX.XX.X.X..X....XX.....X.XXX.XX..X.XX........XX.....X.XXX.X...XX..XXX...X.....X..
18
+ .XXXX.X....XX.XXXX.X.X....XX.X.XX.XXXX....X...X....X...X.X..XXX.X..XX......X..X...X..XX..XX..XX..XX
19
+ .X....X..X...XX...X.XX.X..X..X.X....XXXXXX.X.X.X..XXXX...X.X...X.X...X....X.X.X...X......X.X..X.XX.
20
+ ....X.XX....XX..XXXXXX.X...XXXX...X..XX.X...X..X..XX...X.XX...X.X.X......X..XX...X......X.X........
21
+ X..XXXX.XX.X...X...X..X.X....X....XX.X.....X.X.XX...XXXX......X.X.....XX..XX.........X.X..X.....XX.
22
+ .X......X..X.X..X.XXX....X.X..XX.XX..X......X..X.XX.X...X.X..X.XXX...X..X....X...XX...X.XX.XXX..X..
23
+ .XXX..X....XX..X..X...XX...X.X....X.X.X...X.XX...X....XXXXX.XX..XX..X..X....X.XX..X..XXX......X....
24
+ .....XXX...X.XX.......XX.X.XXX.....X...X..XXXXX.X...X.X.......X.XXXX....X..XXX.XX..X..X.X...X...X..
25
+ ...XX.X.XX.XXX.....X..X....XXXXXX.X.X.X....XXXX...X...XXX.XXX.X.X......X...XX..XXXXXXXXX.X.X...X.X.
26
+ X.X.X.XXXX.XXXXX....X....XX......XXXX.......X.....X.....XX..XXX.......XX.X.X..XXX...X....XXX.....XX
27
+ .X...X...X...X..X.XXX.X......XXXX..X..X.X......XX..XX.X...X...X....X.X..X.XXXXX.X...XXX..X.XXXX..X.
28
+ .......X....X..X...X........XX...XX....XXX.XX......XXX.XX.XX...X...XX..........XXX.X.X..XX...XX.XXX
29
+ ...X...X..X..X.X.XX.X.X..X.X...XX.XX..XX.X.X.X...XX.X.X..X...XX...X......X..X.X.X..XX...XX..XX.X.XX
30
+ XX.....XXX.X.X..X.XX.XX.XX..XX...X.X..X....X....XX.X...X.XX.X.X........X.X.....XXX...X..XX..X....X.
31
+ ..XX.XXXXX.X....X..XX...XX.....XX........X.XXXX..........X......X...X.XX.X..X....X..X.X..XX...XX..X
32
+ .....XXX.X.......XXXX.XX..X....XXX..XXX.XX......X.X.XX......X......XX.....XX.....X..XX.X....X.XXX.X
33
+ ..X.XX........X.....XXXXX.X..X.X...XXXX..X...X............XX.X..XX.X...X..XXX....X.XX.....X..XX....
34
+ ..X..X...XX.X.X....X.....X.X..XXX.X.XX.X.X.XXXXXX.XX.....X.XXXXXXX..X.XXXXX..X.X..X.X.XX........XXX
35
+ ..X....X.XX.XXX..XXX...XXX.X.XX.X.X..X.X..X.X.X......XX.X.X.X.XXX..X...X......X.XX.X.....X.X..X....
36
+ ..X..........X..X...XX.X....XX...X...X...X.X.....X....XXX..XX....X......XX..X..X.X..X.X..XX.X...X..
37
+ .XX.X.X....XX.X..XX....X.X..X..XX..X.XX....X.......X..X.XX...XX......XXX...X..X......X.X.X.......X.
38
+ X.XX..X.X.X...XXX...XX.X..XX.X.X.......X.X..X....XX.X.X.X...XX.XX..X..XXX...XX...X.X...XX.XX..X...X
39
+ .X.....X.X.......X..X.X..XXXX...X..X.......X....X..XX..XX.X..X.X....XXXXX.X.X...X.XXX.X..X.XXX..X.X
40
+ X....X.X.X.XX..XX.X..XX......XX.X..X...XX......X...XX....X.....X.X....XX.X.X....X..X.X....X.X.X...X
41
+ .X..X.......XXXX...X..XXX.XXX..XX.......X.....X.X.X.X..X...X...X.......XX.X..X..X..X.X.XX......X..X
42
+ .XXX.XXX.X.....XXX.XX....X.X..X.XXXXXX..XXXX.X.XX.X..XX.X.XX.XX.......XXX.XX.X....X...XX.XXX.X..XX.
43
+ X.....X.XX.X..XX.X..XX.XX....XX....X....X.X........X.XXXXXX.X......XXXX..X....XXX.XXX..XXX........X
44
+ .X.....XXX.XXXXXX..X...X.....XX.XXX.X.XXX.....X..X..X.X..........XX.XXXX.X.........XX.XX.XX...XX..X
45
+ ...XX.X.X......X...XX.X.....XXX.XXXX...XXX.XXX.X.X..XXX.X...X.X.XX.X..X.XXXXXX.X....XX...XXX.XX....
46
+ .X....X.XXXX..X...X.XX..XX.XX.X.XXXXX...X..X...X..X.XXX...X...X.XX..X.XXX...X...X..X.....XX.X.....X
47
+ .XXX.XX...XX.X..XXX.X.XX..XXXXXXX..X.X..XX..XX.XX....X..X.X..XX..X...X...X.X.XX...XX...XXX.X.....X.
48
+ ..XX..XX..X.XX..XXX.X...X..XXX.....X.......XX.XX..XX.XX.X......XX..XX.XXXX.XX.X.....XX.X.XX..XX..X.
49
+ ...XXXX.X.XX..XX...X..X.....X..........X..X.XXXX.X..XX..X....X..X..XX...X..XX.X.XX.X...XXXXXXX.X.X.
50
+ .X..X.....X...X..XXX....XX.X.....X.X....X.XXX.X.XXX.X.XXX..X.X..XX..X.XX.X..X....XX.....X.XX....XX.
51
+ X..XXXXX.XXX..XXX...XXXX...X.......XX.........XXXXX.X..X.X..X..XXX.X..X.X...X..XXX....XX.X....XXX.X
52
+ X..X.X.X...X.X.XX........X.X.XXXX...X...X.X.X..X....X.X.X.XXXXXX..X.XX.X...XXX.XX.......X..X..XX.XX
53
+ ...X..X.X...XX..X.X.XXX.XXX.XXXX....X...X...X.XXXX..X.X..XXXX.X..XX..X..XX.X...X..X..X..X.X.....XXX
54
+ .X..XXX...X..X.X.......XX..XX......X..X...X..X...X..X.X...X.X..X.XX..X.XXX..X.X..X...X.X..XXX.X..X.
55
+ .X..X...X.XX.X.X.....X..........XX.XX.....X.X..XX..XX.......XX....X...XXXX....XXX..XX...X.X.....X.X
56
+ .X.XX.XX...X..........X..X...X.X.......X.XX.XX.XX.....X.XX.........XX..X...X.....XXX.XX...XXX.X.X..
57
+ X..X.X..X..XX.X.X....XX......XXX...XX....X...XXX..XX.XXX..X.X........X..X..X..XXXX...X.XXX.X....XXX
58
+ ..X...X....X....XX.X.....XXX..XXX.X..X.X.XX...X..X...X.XX..X.X...XX.XX.XX...X...X.....X....X...X...
59
+ ..X...XXX............X.X..X.XX.XXX..X..X..XXX.XX........XXXX.....X........X.X....XX....XXXX.X..XXX.
60
+ XX.X..XX...XX.X.X..X.X..XXX......XXX.XX.X..X.XX.XX.XX.X.....XXX.X..X...X........XXXX.X....XX.X..X.X
61
+ X.X...XXX.XX.X.X.X..XXX...X.........XX.XX...XX...XXX.....X..X....XXX.XX.XXXXX...X........X..X......
62
+ XX..X...X..XX..XX.XX..X.X....X.XX.X....X..XXXX....X.X..X.X.....X...XX...XX..X.X..XXX..XX.X.X...XX..
63
+ .....XX....XXX...XXXX.......XXXX..X.....XX.X.....X....XXX.X.X...X.....X...X..X...X.X..X.X.XX...X...
64
+ ..X....X...XX.....X..XXXX...XXX..XX...XX.XXX.X..X.....X.X.X..X.....XXXX.......XXXX.XXXX.....X.X....
65
+ ..X..XX.X..X.XX...X.....X.X.X.....X.XXXX.X.......X.XX..X....X.XXXXX...XXX..XX.X...X.X.....X.X.X.XXX
66
+ ...........XX...X.X..XX.X.X..XXX..XX.X.....XX........XXX.X.X..X.XX..X....X.X.X..X.X...X.....X..XX..
67
+ XX..X.X.XXX.X.X.X.XXX.X...X..X.XX...XXX.XXXXXX...XX...XXX..........X..XX...X..XX..X..X.XX.XX..XX.XX
68
+ .X.X...XXX...X..X.X.X.............X.XXX..XX.XX.XX..X..X...XX......X.X...XX....X.X...XXX.X...X.....X
69
+ XX...X...X.XX.XX..XX....X.X..X.XXX.X.X.X.X..XXX..XXX....X..X..X.X.X.XXX.XX....X.XX...X....X...XXXX.
70
+ ..XXX......X.XX.X.XX.XXX.X.X...X....X...XXX...X.XX.X......X..............XXX.X...........XXXX..X..X
71
+ ..X...XX...XXX.X.X.X............XX...X..X.X...X.X..X....X...XXX.....X.X.XX.........X.XX...X.X..XXX.
72
+ X.X..X.XX..X.XX....XX..X...X..XXX.XX.XX.X..XX.X.X.....X.....X.XXXX....X..X.XXXXX.X.X.XX....X.XXXXX.
73
+ .XXX.X.XXX..X.X..X....XXX..X....X.....XX.XX..XX.XX...X...X........X.X..X.X.XX.XX..X.....XXXXXXX.X..
74
+ .X......X.......XX...X.X..X..XX..............XX.X.X.......X.XX.XXX...XXXX..X.X.XXX.XXXX.X....XXX..X
75
+ ..X..X.XX..X.X..X......XX...XX......X.....X.XXX.X.XXX..XXX.X.X......XX...XXX..X.X.XX.X......X.XX...
76
+ XX......X..XX........X.X..X..X..XX.XX..X..XX...XX...XX....X...X.X.X.X.....XX.X.X.X..X.XX.....X.X...
77
+ X.XX.XX..XX.X..X...X..XX..XXX.XX..X..X.X.........XXXX.XXX.XXX..X............XX.......X.X..X...X....
78
+ .X.XX.X..XX.X..XX.X.X.X.XX....XX...XX........XXX.X.......X.XX.XX.XX..X.X...XXX.X..X...XX.X.XXXXXX..
79
+ XX..XX...X.X.....X...X..X.X.....X...XXXX..X..XXXXX....XX.........XX.XX.XXXXX...X.XXX..X.XXXX....XXX
80
+ .X.X.X...XX.X.X.....XXX...............X.X.X.X....XX.XX.X...XXX.X.XXX.X..X.X..XX.X...........XX..X..
81
+ X.X.XX.X......X.X.X...X...X..XXX..X.X.XXXXX.X.X....XX..XX.X...X..X........X.X.XXXXX..XX..X.X..XXXXX
82
+ ...X.X.XXXXX..X.X.X.....X.X...X.....XX..XX...XX..XXX..XX..X.X.X...XX..XX.X..X....X..X.XXX..XXX.....
83
+ X..X.X.X...X.XXX...X...X.X.XX.XX...XX......X.XX.XX.X..X......X.....XX.X........XX..XX.....XX.X.....
84
+ ..X.XX.XX.XX..XXX.X.X...X.XX.XXX...X..XXX..XX.X.X....XXXXX..X...XXX.XXXX.XXX..X.XXX..XXXX.X.XX.....
85
+ XX..X...X.XX.XX....X...X.XXXX....XXXXX.X......XX..X.X.X.X..X...XX.X..X.XXXXXX........XX.X........XX
86
+ X.X......X.......X...X.X......X.XX..X.XXX..XX...XX...XX..XXXXX.X.XX.......XX....XXX...XXX....X...X.
87
+ X.X...XX.X...X........XX.X.....X.X.X........X.X.X...X....X.XX..X..X..XXX.XXXXX..X...X.X.XXXX.XXXX..
88
+ .X.XX.XX..XX......XX.XXXXX..XXX...XX.X..XX.X....XXX..XXX......XX...X..X.X..X...X..X..X....XX...XXXX
89
+ XXX..XXX...X.....X...XXX...X..XXX.X..X.....X..X..XXX.X.X..X...X.XX..X.XXX.X.....X.XX.X.X.........XX
90
+ X.X..X.XX.X..X...X..X.XXX.....XX......X....XX...XX...X.....X.X..X.XXXX..X..X....XX..X.XX.X....X...X
91
+ X.XXX.X.X.X..X..X..XX.X...X.X...X......X..X.X.X.......XXX.X.XXXX.XXX......X.XX....X...X.XX...X..XXX
92
+ ..........XX..XX.........X.......XX..X.....XX..X..X.X.XXX.X.X...X......X.XX...XX.XX.X.XX......XXX..
93
+ X..X..XX.....X.X......X....X.XX.XX.X...X....X..XX......X....XXX.....XXXXX.XXXX..X.X.X.X.X..X.X....X
94
+ XXX..XX.X..XX.XX...X.X.XX...XXX.XX.X..X.X.X...XXXX....XXX..X.X...X.X...X..X.X..X.XXX......X.X....XX
95
+ .X.......X....X...X.X...XX.XXXXX..X...X.XX....XX.X...X..XX...X.X...X.XX.....X.XX...XXX.........X..X
96
+ XX....X....X.X.X..XXX.XXXXX....X....X.XX..X.....XXXXXXXX...XX.XX...X..X....XXX.XX..X.....XXX.XX.X..
97
+ X.X..X.X...X..X..X...XX.XX.X..X...X..X.X.X.XX..X..X.X..XXXXX.X.XX..X..X.X.XX....X............X.X.XX
98
+ ......X...XX.......XXX.X........X...XXX.XXX.X.XX.....X...XX...XX.XX..X....X..XXX.XX.XX.X.XX.XXX..XX
99
+ .XXX..X...X....X...XX..X..XX.X...X.XXX....X...XX.X...X.XX...X.....XX..X....XX..XX.XX.....X..XXX..XX
100
+ X.X......XX.......X..X.XXXXX....XX....X....X.XX.XXX...X..XX.X........XX......X.X.X...XX..X..X..X...
@@ -0,0 +1,41 @@
1
+ #include <iostream>
2
+ #include <string>
3
+ #include <vector>
4
+ #include <algorithm>
5
+
6
+ using namespace std;
7
+
8
+ int main()
9
+ {
10
+ int vampire_count;
11
+ int zombie_count;
12
+ int ghost_count;
13
+ cin >> vampire_count >> zombie_count >> ghost_count; cin.ignore();
14
+ int size;
15
+ cin >> size; cin.ignore();
16
+ for (int i = 0; i < size; i++) {
17
+ int can_see_from_top;
18
+ cin >> can_see_from_top; cin.ignore();
19
+ }
20
+ for (int i = 0; i < size; i++) {
21
+ int can_see_from_bottom;
22
+ cin >> can_see_from_bottom; cin.ignore();
23
+ }
24
+ for (int i = 0; i < size; i++) {
25
+ int can_see_from_left;
26
+ cin >> can_see_from_left; cin.ignore();
27
+ }
28
+ for (int i = 0; i < size; i++) {
29
+ int can_see_from_right;
30
+ cin >> can_see_from_right; cin.ignore();
31
+ }
32
+ for (int i = 0; i < size; i++) {
33
+ string row;
34
+ getline(cin, row);
35
+ }
36
+
37
+ // Write an answer using cout. DON'T FORGET THE "<< endl"
38
+ // To debug: cerr << "Debug messages..." << endl;
39
+
40
+ cout << "answer" << endl;
41
+ }