fork download
  1. #include <chrono>
  2. #include <cstring>
  3. #include <iostream>
  4. #include <map>
  5. #include <random>
  6. #include <string>
  7. #include <vector>
  8.  
  9. template <size_t w, size_t h>
  10. class CGameSolver {
  11. static_assert(w*h,"Game Table Size must be a valid value.");
  12.  
  13. std::string m_table;
  14. public:
  15. inline bool operator<(const CGameSolver& o) const {return m_table<o.m_table;}
  16. const std::string& getHash() const {return m_table;}
  17. void fromHash(std::string const& hash)
  18. {
  19. if(hash.size()!=(w*h)) return;
  20. for(size_t i=0;i<hash.size();++i) { if(hash[i] != ' ' && hash[i] != 'x') return; }
  21. m_table=hash;
  22. }
  23.  
  24. CGameSolver()
  25. {
  26. m_table.resize(w*h);
  27. for(size_t i=0;i<(w*h);++i)
  28. m_table[i]=' ';
  29. }
  30. inline size_t get_index(size_t x, size_t y) const
  31. {
  32. return (y*w)+x;
  33. }
  34. static bool IsValidIndex(size_t x, size_t y)
  35. {
  36. return x<w&&y<h;
  37. }
  38. void Toggle(size_t x, size_t y)
  39. {
  40. if(!IsValidIndex(x,y)) return;
  41.  
  42. bool m_toggleTable[w*h];
  43. for(size_t i=0;i<(w*h);++i) { m_toggleTable[i]=0; }
  44.  
  45. for(size_t i=0;i<w;++i)
  46. {
  47. m_toggleTable[get_index(i,y)]=1;
  48. }
  49. for(size_t i=0;i<h;++i)
  50. {
  51. m_toggleTable[get_index(x,i)]=1;
  52. }
  53.  
  54. for(size_t i=0;i<(w*h);++i)
  55. {
  56. if(m_toggleTable[i])
  57. {
  58. m_table[i] = (m_table[i]=='x')?' ':'x';
  59. }
  60. }
  61. }
  62. };
  63.  
  64. struct PathPoint {
  65. size_t X;
  66. size_t Y;
  67. };
  68.  
  69. class CSolvingPath {
  70. std::vector<PathPoint> m_Path;
  71. public:
  72. void Append(PathPoint const& b) {m_Path.push_back(b);}
  73. template <size_t x, size_t y>
  74. bool ComputeTable(CGameSolver<x,y> const& src, CGameSolver<x,y>& dst) const
  75. {
  76. for(size_t i=0;i<m_Path.size();++i)
  77. {
  78. if(!CGameSolver<x,y>::IsValidIndex(m_Path[i].X,m_Path[i].Y))
  79. return 0;
  80. }
  81. dst = src;
  82. for(size_t i=0;i<m_Path.size();++i)
  83. {
  84. dst.Toggle(m_Path[i].X,m_Path[i].Y);
  85. }
  86. return 1;
  87. }
  88. };
  89.  
  90. int main(int argc, char** argv)
  91. {
  92. const size_t width=3;
  93. const size_t height=3;
  94. typedef CGameSolver<width,height> ActualTable;
  95.  
  96. int doContinue(0);
  97. do {
  98. std::string userHash;
  99.  
  100. //! Generate from commandline hash?
  101. if(argc==2)
  102. {
  103. //! Format:
  104. //! Either an X/x, or any other symbol.
  105. //! String is truncated, the rest is whitespace.
  106. userHash.assign(width*height,' ');
  107. size_t userlen = std::strlen(argv[1]);
  108. if(userlen > (width*height))
  109. userlen = (width*height);
  110. for(size_t i=0;i<userlen;++i)
  111. {
  112. if( (argv[1][i] == 'x') || (argv[1][i] == 'X') )
  113. userHash[i] = 'x';
  114. }
  115.  
  116. //! So that next loop we will generate randomly.
  117. argc=1;
  118. }
  119. else
  120. {
  121. //! Generate randomly
  122. std::mt19937 rng;
  123. std::uniform_int_distribution<std::int8_t> distr(0,1);
  124. rng.seed(std::chrono::steady_clock::now().time_since_epoch().count());
  125. userHash.resize(width*height);
  126. for(size_t i=0;i<(width*height);++i)
  127. {
  128. userHash[i] = (!distr(rng)) ? ' ' : 'x';
  129. }
  130.  
  131. std::cout << "Computed hash:" << std::endl << "\t[" << userHash << ']' << std::endl << std::endl;
  132. }
  133.  
  134. //! Initial table, initialized from hash
  135. //! The hash is simply a combination of either a ' ' or a 'x'.
  136. //! An "123456789" hash is stored as follows:
  137. //! [--][x1][x2][x3]
  138. //! [y1][ 1][ 2][ 3]
  139. //! [y2][ 4][ 5][ 6]
  140. //! [y3][ 7][ 8][ 9]
  141.  
  142. ActualTable sourceTable;
  143. sourceTable.fromHash(userHash);
  144.  
  145. //! Store all the possible combinations,
  146. //! and the shortest path to any of them.
  147. std::map<ActualTable,CSolvingPath> m_solvers;
  148. m_solvers[sourceTable] = CSolvingPath();
  149.  
  150. {
  151. //! Shouldn't be returned to our older scope,
  152. //! but should also not be in the for loop
  153.  
  154. //! Our computed table is recomputed correctly from ComputeTable.
  155. //! This does not need to be constructed each time.
  156. ActualTable m_newTable;
  157.  
  158. //! Did we find a new combination this one loop?
  159. //! If we didn't, we can simply stop iterating.
  160. bool m_thisLoopAdded;
  161.  
  162. do {
  163. m_thisLoopAdded=0;
  164.  
  165. //! For all existing combinations...
  166. //! [Note: This loop can be optimized:
  167. //! When a new node gets added, it may be stored in a different map.
  168. //! This could save iterating over all previously-iterated nodes.
  169. //! ]
  170. for(auto it = m_solvers.begin(); it != m_solvers.end(); ++it)
  171. {
  172. ActualTable const& m_result = it->first;
  173. CSolvingPath& m_path = it->second;
  174.  
  175. PathPoint pp;
  176. //! For every possible position in the table...
  177. for(pp.X=0;pp.X<width;++pp.X)
  178. {
  179. for(pp.Y=0;pp.Y<height;++pp.Y)
  180. {
  181. //! Append the position to the combination.
  182. //! At this point, all combinations will be
  183. //! combined with all points.
  184. CSolvingPath m_newPath(m_path);
  185. m_newPath.Append(pp);
  186.  
  187. //! Compute the resulting table.
  188. if(!m_newPath.ComputeTable(m_result,m_newTable))
  189. continue;
  190. //! It should never fail.
  191.  
  192. //! If there is already a combination, it has been found
  193. //! with less moves, so we can ignore our current path.
  194. auto it_find = m_solvers.find(m_newTable);
  195. if(it_find == m_solvers.end())
  196. {
  197. //! Otherwise, add this combination
  198. m_solvers[m_newTable] = m_newPath;
  199. //! And mark that this loop we found a new combination.
  200. m_thisLoopAdded=1;
  201. }
  202. }
  203. }
  204. }
  205. } while(m_thisLoopAdded);
  206. //! Until no new combination is found.
  207. }
  208.  
  209. std::cout << m_solvers.size() << " solutions found. Hashes: " << std::endl << std::endl;
  210.  
  211. //! To store the current hash's index
  212. std::uint32_t i=0;
  213.  
  214. //! We'll find it out right now as we iterate
  215. bool has_solution_empty=0;
  216. bool has_solution_fill=0;
  217.  
  218. for(auto it = m_solvers.begin(); it != m_solvers.end(); ++it)
  219. {
  220. std::string const& m_sol = it->first.getHash();
  221.  
  222. //! 1 [ ]
  223. //! 2 [x xxxx ]
  224. //! and so on...
  225. std::cout << ++i << "\t[" << m_sol << ']' << std::endl;
  226.  
  227. //! Not much about these ones.
  228. if(m_sol.find('x') == std::string::npos) has_solution_empty=1;
  229. else if(m_sol.find(' ') == std::string::npos) has_solution_fill=1;
  230. }
  231.  
  232. //! And that's it.
  233. //! We print these afterwards, since if there's an empty solution, it can only be the first one,
  234. //! and if there's a filled solution, it can only be the last one.
  235. //! Instead of having to look through the entire list of moves to find the "X solution found",
  236. //! we'll kindly put them together at the end of it.
  237.  
  238. if(has_solution_empty||has_solution_fill)
  239. {
  240. std::cout << std::endl;
  241. if(has_solution_empty) std::cout << "Empty solution found!" << std::endl;
  242. if(has_solution_fill) std::cout << "Filled solution found!" << std::endl;
  243. }
  244.  
  245. std::cout << std::endl << "Type 0 to quit, or any other number to repeat the test with a generated value." << std::endl;
  246. std::cin >> doContinue;
  247. } while(doContinue != 0);
  248.  
  249. return 0;
  250. }
Runtime error #stdin #stdout 0.03s 3484KB
stdin
1
1
1
1
1
1
1
1
1
stdout
Computed hash:
	[x xx x   ]

10 solutions found. Hashes: 

1	[  x  xxxx]
2	[  x x x  ]
3	[ x   xx  ]
4	[ x x    x]
5	[ x xxx x ]
6	[x   x   x]
7	[x  x  xxx]
8	[x xx x   ]
9	[xxx x  x ]
10	[xxxxxxxxx]

Filled solution found!

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[x  xx x x]

10 solutions found. Hashes: 

1	[     x  x]
2	[    x  x ]
3	[ xx x   x]
4	[ xxx  xxx]
5	[ xxxxxx  ]
6	[x  xx x x]
7	[x x  xx  ]
8	[x xxxx x ]
9	[xx   xxxx]
10	[xx x   x ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[x   xxxxx]

10 solutions found. Hashes: 

1	[   x   xx]
2	[   xxx   ]
3	[ xx  xx x]
4	[ xx x xx ]
5	[ xxxxx xx]
6	[x   xxxxx]
7	[x x x    ]
8	[x xx  xx ]
9	[xx   x   ]
10	[xx x  x x]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[x   xxxxx]

10 solutions found. Hashes: 

1	[   x   xx]
2	[   xxx   ]
3	[ xx  xx x]
4	[ xx x xx ]
5	[ xxxxx xx]
6	[x   xxxxx]
7	[x x x    ]
8	[x xx  xx ]
9	[xx   x   ]
10	[xx x  x x]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[xx  xxxx ]

10 solutions found. Hashes: 

1	[  x  xx  ]
2	[  x x xxx]
3	[  xxxx x ]
4	[ x x   x ]
5	[ x xxx  x]
6	[x    x  x]
7	[x  x  x  ]
8	[xx  xxxx ]
9	[xxx x   x]
10	[xxxx  xxx]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[xxxx xxxx]

10 solutions found. Hashes: 

1	[     x xx]
2	[   x  xx ]
3	[   xxxx x]
4	[ xx  x   ]
5	[ xx x  xx]
6	[x x x x x]
7	[x xxxx   ]
8	[xx  x xx ]
9	[xx x     ]
10	[xxxx xxxx]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[  xx x xx]

10 solutions found. Hashes: 

1	[    x  x ]
2	[   x  x  ]
3	[  xx x xx]
4	[ xx x   x]
5	[ xxxxxx  ]
6	[x x  xx  ]
7	[x x x xxx]
8	[xx   xxxx]
9	[xx x   x ]
10	[xx xxx  x]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[xxx  xx x]

10 solutions found. Hashes: 

1	[      x  ]
2	[    xxxxx]
3	[   x x  x]
4	[ xxx x x ]
5	[ xxxx   x]
6	[x x xx x ]
7	[x xxx xxx]
8	[xx     x ]
9	[xx xx x  ]
10	[xxx  xx x]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[ xxxx x  ]

10 solutions found. Hashes: 

1	[  x  xxx ]
2	[  xx   xx]
3	[ x   xx x]
4	[ x xxx xx]
5	[ xxxx x  ]
6	[x   x    ]
7	[x  x  xx ]
8	[x  xxxx x]
9	[xxx  x   ]
10	[xxx x  xx]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[    xx xx]

10 solutions found. Hashes: 

1	[    xx xx]
2	[  x x x  ]
3	[  xx   x ]
4	[ x   xx  ]
5	[ x x    x]
6	[x  x  xxx]
7	[x  xxxx  ]
8	[xxx  x  x]
9	[xxx x  x ]
10	[xxxxxxxxx]

Filled solution found!

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[  xx     ]

10 solutions found. Hashes: 

1	[    xx  x]
2	[   x xxxx]
3	[  xx     ]
4	[ xx xx x ]
5	[ xxxx xxx]
6	[x x   xxx]
7	[x x xxx  ]
8	[xx    x  ]
9	[xx x x  x]
10	[xx xx  x ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[x xx x xx]

10 solutions found. Hashes: 

1	[  x  xx  ]
2	[  x x xxx]
3	[ x   xxxx]
4	[ x x   x ]
5	[ x xxx  x]
6	[x   x  x ]
7	[x  x  x  ]
8	[x xx x xx]
9	[xxx x   x]
10	[xxxxxxx  ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[x x  xxxx]

10 solutions found. Hashes: 

1	[  xx x   ]
2	[  xxx  xx]
3	[ x    xx ]
4	[ x  xxx x]
5	[ x x x xx]
6	[x        ]
7	[x  xx xx ]
8	[x x  xxxx]
9	[xxx xx   ]
10	[xxxxx x x]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[x  x     ]

10 solutions found. Hashes: 

1	[      xxx]
2	[    xxx  ]
3	[ xx   x  ]
4	[ xxx x  x]
5	[ xxxx  x ]
6	[x  x     ]
7	[x x xx  x]
8	[x xx xxxx]
9	[xx  xx x ]
10	[xx xx xxx]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[   x    x]

10 solutions found. Hashes: 

1	[   x    x]
2	[  x xx   ]
3	[  xx xxx ]
4	[ x  xx xx]
5	[ x xx xx ]
6	[x     xx ]
7	[x   xxx x]
8	[xxx   x x]
9	[xxxx x   ]
10	[xxxxx  xx]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[x  xxx   ]

10 solutions found. Hashes: 

1	[      x  ]
2	[    xxxxx]
3	[ xx xxx  ]
4	[ xxx x x ]
5	[ xxxx   x]
6	[x  xxx   ]
7	[x x     x]
8	[x xxx xxx]
9	[xx     x ]
10	[xx x xxxx]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[xxx x  xx]

10 solutions found. Hashes: 

1	[        x]
2	[    xx x ]
3	[   xx xxx]
4	[ xxx xxxx]
5	[ xxxx x  ]
6	[x x   x  ]
7	[x xx x  x]
8	[xx  xxx  ]
9	[xx x x x ]
10	[xxx x  xx]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[xx xx x  ]

10 solutions found. Hashes: 

1	[  x x    ]
2	[  xx  xx ]
3	[  xxxxx x]
4	[ x   x   ]
5	[ x  x  xx]
6	[x    xxx ]
7	[x  x   xx]
8	[xx xx x  ]
9	[xxx  xx x]
10	[xxxxxx xx]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[   x    x]

10 solutions found. Hashes: 

1	[   x    x]
2	[  x xx   ]
3	[  xx xxx ]
4	[ x  xx xx]
5	[ x xx xx ]
6	[x     xx ]
7	[x   xxx x]
8	[xxx   x x]
9	[xxxx x   ]
10	[xxxxx  xx]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[x xxxxxx ]

10 solutions found. Hashes: 

1	[  x    x ]
2	[  x xx  x]
3	[ x  xx x ]
4	[ x x xx  ]
5	[ x xx xxx]
6	[x     xxx]
7	[x  xx   x]
8	[x xxxxxx ]
9	[xxx   x  ]
10	[xxxx x  x]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[x xx  xx ]

10 solutions found. Hashes: 

1	[  x     x]
2	[  x xx x ]
3	[ x     x ]
4	[ x x xxxx]
5	[ x xx x  ]
6	[x   xxxxx]
7	[x  x x  x]
8	[x xx  xx ]
9	[xxx xxx  ]
10	[xxxxx   x]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[xx xx   x]

10 solutions found. Hashes: 

1	[  x x x x]
2	[  xx   xx]
3	[  xxxx   ]
4	[ x   xx x]
5	[ x  x xx ]
6	[x    x xx]
7	[x  x  xx ]
8	[xx xx   x]
9	[xxx  x   ]
10	[xxxxxxxx ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[x  x  xx ]

10 solutions found. Hashes: 

1	[        x]
2	[    xx x ]
3	[ xx    x ]
4	[ xxx xxxx]
5	[ xxxx x  ]
6	[x  x  xx ]
7	[x x xxxxx]
8	[x xx x  x]
9	[xx  xxx  ]
10	[xx xx   x]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[   xx xxx]

10 solutions found. Hashes: 

1	[   xx xxx]
2	[  x  xxx ]
3	[  xxxx   ]
4	[ x   xx x]
5	[ x x     ]
6	[x    x xx]
7	[x   x    ]
8	[xxx x  xx]
9	[xxxx  x x]
10	[xxxxxxxx ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[  x  xxxx]

10 solutions found. Hashes: 

1	[         ]
2	[   xx xx ]
3	[  x  xxxx]
4	[ xx xx   ]
5	[ xxxx x x]
6	[x xx x   ]
7	[x xxx  xx]
8	[xx    xx ]
9	[xx  xxx x]
10	[xx x x xx]

Empty solution found!

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[ xxx  xx ]

10 solutions found. Hashes: 

1	[  x xxx  ]
2	[  xxx   x]
3	[ x  xxxxx]
4	[ x x x  x]
5	[ xxx  xx ]
6	[x      x ]
7	[x  x xxxx]
8	[x  xx x  ]
9	[xxx     x]
10	[xxx xx x ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[  xxx  x ]

10 solutions found. Hashes: 

1	[     x xx]
2	[   xxxx x]
3	[  xxx  x ]
4	[ xx  x   ]
5	[ xxx  x x]
6	[x x  xxx ]
7	[x x x x x]
8	[xx  x xx ]
9	[xx x     ]
10	[xx xxx xx]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[  xxx   x]

10 solutions found. Hashes: 

1	[     x   ]
2	[   xxxxx ]
3	[  xxx   x]
4	[ xx  x xx]
5	[ xxx  xx ]
6	[x x  xx x]
7	[x x x xx ]
8	[xx  x x x]
9	[xx x   xx]
10	[xx xxx   ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[xxxx xx  ]

10 solutions found. Hashes: 

1	[     x   ]
2	[   x  x x]
3	[   xxxxx ]
4	[ xx  x xx]
5	[ xx x    ]
6	[x x x xx ]
7	[x xxxx xx]
8	[xx  x x x]
9	[xx x   xx]
10	[xxxx xx  ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[ xx  x x ]

10 solutions found. Hashes: 

1	[  x xxx x]
2	[  xxx    ]
3	[ x    x x]
4	[ x xx  xx]
5	[ xx  x x ]
6	[x      xx]
7	[x   xx   ]
8	[x  x xxx ]
9	[xxxx xx x]
10	[xxxxx xx ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[xx xx xxx]

10 solutions found. Hashes: 

1	[  x x  xx]
2	[  xx  x x]
3	[  xxxxxx ]
4	[ x   x xx]
5	[ x  x    ]
6	[x    xx x]
7	[x  x     ]
8	[xx xx xxx]
9	[xxx  xxx ]
10	[xxxxxx   ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[ x  xx  x]

10 solutions found. Hashes: 

1	[     xxx ]
2	[   x   xx]
3	[ x  xx  x]
4	[ xx x xx ]
5	[ xxx     ]
6	[x x  x xx]
7	[x x x    ]
8	[x xxxxx x]
9	[xx x  x x]
10	[xx xxxxx ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[ x x  x  ]

10 solutions found. Hashes: 

1	[    xxxx ]
2	[   xx  xx]
3	[ x x  x  ]
4	[ xx xxx x]
5	[ xxx x xx]
6	[x x      ]
7	[x xx xx x]
8	[x xxx xx ]
9	[xx     xx]
10	[xx  xx   ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[   x xxxx]

10 solutions found. Hashes: 

1	[   x xxxx]
2	[  x x xx ]
3	[  xx     ]
4	[ x  x x x]
5	[ x xxx   ]
6	[x    x   ]
7	[x   x  xx]
8	[xxx  x xx]
9	[xxxx  xx ]
10	[xxxxxxx x]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[xxx xx  x]

10 solutions found. Hashes: 

1	[     x xx]
2	[    x    ]
3	[   xxxx x]
4	[ xxx  x x]
5	[ xxxxxxx ]
6	[x x  xxx ]
7	[x xx   xx]
8	[xx  x xx ]
9	[xx x     ]
10	[xxx xx  x]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[x  xxxxx ]

10 solutions found. Hashes: 

1	[       x ]
2	[    xx  x]
3	[ xx xx x ]
4	[ xxx xx  ]
5	[ xxxx xxx]
6	[x  xxxxx ]
7	[x x   xxx]
8	[x xxx   x]
9	[xx    x  ]
10	[xx x x  x]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[x xx  x  ]

10 solutions found. Hashes: 

1	[  x    xx]
2	[  x xx   ]
3	[ x       ]
4	[ x x xx x]
5	[ x xx xx ]
6	[x   xxx x]
7	[x  x x xx]
8	[x xx  x  ]
9	[xxx xxxx ]
10	[xxxxx  xx]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[    x xxx]

10 solutions found. Hashes: 

1	[    x xxx]
2	[  x xx   ]
3	[  xx xxx ]
4	[ x       ]
5	[ x x xx x]
6	[x  x x xx]
7	[x  xx    ]
8	[xxx   x x]
9	[xxx xxxx ]
10	[xxxxx  xx]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[ x x xxxx]

10 solutions found. Hashes: 

1	[    x x x]
2	[   xxx   ]
3	[ x x xxxx]
4	[ xx x xx ]
5	[ xxx     ]
6	[x x  x xx]
7	[x xx  xx ]
8	[x xxxxx x]
9	[xx   x   ]
10	[xx  x  xx]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[xxxxxx   ]

10 solutions found. Hashes: 

1	[    xxx  ]
2	[   x x x ]
3	[   xx   x]
4	[ xx   x  ]
5	[ xx xxxxx]
6	[x x    x ]
7	[x xx xxxx]
8	[xx      x]
9	[xx xx xxx]
10	[xxxxxx   ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[x   x  x ]

10 solutions found. Hashes: 

1	[   x xxx ]
2	[   xx x x]
3	[ xx      ]
4	[ xx xx xx]
5	[ xxxx xx ]
6	[x   x  x ]
7	[x x xxx x]
8	[x xx x xx]
9	[xx    x x]
10	[xx x x   ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[xx  x   x]

10 solutions found. Hashes: 

1	[  x    xx]
2	[  x xx   ]
3	[  xxx x x]
4	[ x x xx x]
5	[ x xx xx ]
6	[x     xx ]
7	[x  x x xx]
8	[xx  x   x]
9	[xxx xxxx ]
10	[xxxx x   ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[xx     x ]

10 solutions found. Hashes: 

1	[  x  x xx]
2	[  x x    ]
3	[  xx  xx ]
4	[ x x  x x]
5	[ x xxxxx ]
6	[x   x x x]
7	[x  xxx   ]
8	[xx     x ]
9	[xxx  xx x]
10	[xxxxxx xx]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[xx xx   x]

10 solutions found. Hashes: 

1	[  x x x x]
2	[  xx   xx]
3	[  xxxx   ]
4	[ x   xx x]
5	[ x  x xx ]
6	[x    x xx]
7	[x  x  xx ]
8	[xx xx   x]
9	[xxx  x   ]
10	[xxxxxxxx ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[xxxx xxxx]

10 solutions found. Hashes: 

1	[     x xx]
2	[   x  xx ]
3	[   xxxx x]
4	[ xx  x   ]
5	[ xx x  xx]
6	[x x x x x]
7	[x xxxx   ]
8	[xx  x xx ]
9	[xx x     ]
10	[xxxx xxxx]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[x    x   ]

10 solutions found. Hashes: 

1	[   x xxxx]
2	[   xx x  ]
3	[ xx     x]
4	[ xx xx x ]
5	[ xxx xx  ]
6	[x    x   ]
7	[x x   xxx]
8	[x xxx   x]
9	[xx  xxxxx]
10	[xx xx  x ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[  x  xx  ]

10 solutions found. Hashes: 

1	[       xx]
2	[   xx x x]
3	[  x  xx  ]
4	[ xx xx xx]
5	[ xxxx xx ]
6	[x xx x xx]
7	[x xxx    ]
8	[xx    x x]
9	[xx  xxxx ]
10	[xx x x   ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[ x x  x  ]

10 solutions found. Hashes: 

1	[    xxxx ]
2	[   xx  xx]
3	[ x x  x  ]
4	[ xx xxx x]
5	[ xxx x xx]
6	[x x      ]
7	[x xx xx x]
8	[x xxx xx ]
9	[xx     xx]
10	[xx  xx   ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[  x x   x]

10 solutions found. Hashes: 

1	[    xxxx ]
2	[   x x   ]
3	[  x x   x]
4	[ xx   xx ]
5	[ xxx x xx]
6	[x xx xx x]
7	[x xxx xx ]
8	[xx     xx]
9	[xx  xx   ]
10	[xx xx x x]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[xxxxx x  ]

10 solutions found. Hashes: 

1	[    x    ]
2	[   x  xx ]
3	[   xxxx x]
4	[ xx  x   ]
5	[ xx x  xx]
6	[x x  xxx ]
7	[x xx   xx]
8	[xx   xx x]
9	[xx xxx xx]
10	[xxxxx x  ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[xx       ]

10 solutions found. Hashes: 

1	[  x  x  x]
2	[  x x  x ]
3	[  xx  x  ]
4	[ x x  xxx]
5	[ x xxxx  ]
6	[x   x xxx]
7	[x  xxx x ]
8	[xx       ]
9	[xxx  xxxx]
10	[xxxxxx  x]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[ xxx xx  ]

10 solutions found. Hashes: 

1	[  x x xx ]
2	[  xxxx xx]
3	[ x  x x x]
4	[ x x   xx]
5	[ xxx xx  ]
6	[x    x   ]
7	[x  x  x x]
8	[x  xxxxx ]
9	[xxx  x xx]
10	[xxx x    ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[xxx  x xx]

10 solutions found. Hashes: 

1	[       x ]
2	[    xx  x]
3	[   x xxxx]
4	[ xxx xx  ]
5	[ xxxx xxx]
6	[x x xxx  ]
7	[x xxx   x]
8	[xx    x  ]
9	[xx xx  x ]
10	[xxx  x xx]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[xx x x  x]

10 solutions found. Hashes: 

1	[  x  xx x]
2	[  xx     ]
3	[  xxxx xx]
4	[ x   xxx ]
5	[ x  x x x]
6	[x   x  xx]
7	[x  xxxxx ]
8	[xx x x  x]
9	[xxx x    ]
10	[xxxx  xx ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[ xxx x xx]

10 solutions found. Hashes: 

1	[  x x   x]
2	[  xxxxx  ]
3	[ x  x  x ]
4	[ x x  x  ]
5	[ xxx x xx]
6	[x    xxxx]
7	[x  x   x ]
8	[x  xxx  x]
9	[xxx  xx  ]
10	[xxx x xxx]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[ x  xxx x]

10 solutions found. Hashes: 

1	[     x x ]
2	[   x  xxx]
3	[ x  xxx x]
4	[ xx x  x ]
5	[ xxx  x  ]
6	[x x  xxxx]
7	[x x x x  ]
8	[x xxxx  x]
9	[xx x    x]
10	[xx xxx x ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[ xxx x   ]

10 solutions found. Hashes: 

1	[  x x  x ]
2	[  xxxxxxx]
3	[ x  x   x]
4	[ x x  xxx]
5	[ xxx x   ]
6	[x    xx  ]
7	[x  x    x]
8	[x  xxx x ]
9	[xxx  xxxx]
10	[xxx x x  ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[   xxx  x]

10 solutions found. Hashes: 

1	[   xxx  x]
2	[  x      ]
3	[  xxx xx ]
4	[ x     xx]
5	[ x x xxx ]
6	[x     x x]
7	[x   xxxx ]
8	[xxx xxx x]
9	[xxxx x xx]
10	[xxxxx    ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[xxxxx  xx]

10 solutions found. Hashes: 

1	[    x xxx]
2	[   x    x]
3	[   xxx x ]
4	[ xx  xxxx]
5	[ xx x x  ]
6	[x x  x  x]
7	[x xx  x  ]
8	[xx   x x ]
9	[xx xxxx  ]
10	[xxxxx  xx]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[xx       ]

10 solutions found. Hashes: 

1	[  x  x  x]
2	[  x x  x ]
3	[  xx  x  ]
4	[ x x  xxx]
5	[ x xxxx  ]
6	[x   x xxx]
7	[x  xxx x ]
8	[xx       ]
9	[xxx  xxxx]
10	[xxxxxx  x]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[x  x xxxx]

10 solutions found. Hashes: 

1	[     x   ]
2	[    x  xx]
3	[ xx  x xx]
4	[ xxx  xx ]
5	[ xxxxxx x]
6	[x  x xxxx]
7	[x x x xx ]
8	[x xx     ]
9	[xx  x x x]
10	[xx xxx   ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[ xxxxxxxx]

10 solutions found. Hashes: 

1	[  x   x x]
2	[  xx x   ]
3	[ x    xx ]
4	[ x xx    ]
5	[ xxxxxxxx]
6	[x   xx xx]
7	[x  x xx x]
8	[x  xx xx ]
9	[xxx    xx]
10	[xxx xx   ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[xx    xx ]

10 solutions found. Hashes: 

1	[  x  xxxx]
2	[  x x x  ]
3	[  xx   x ]
4	[ x x    x]
5	[ x xxx x ]
6	[x   x   x]
7	[x  xxxx  ]
8	[xx    xx ]
9	[xxx  x  x]
10	[xxxxxxxxx]

Filled solution found!

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[x  xxxxx ]

10 solutions found. Hashes: 

1	[       x ]
2	[    xx  x]
3	[ xx xx x ]
4	[ xxx xx  ]
5	[ xxxx xxx]
6	[x  xxxxx ]
7	[x x   xxx]
8	[x xxx   x]
9	[xx    x  ]
10	[xx x x  x]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[xx  xxxx ]

10 solutions found. Hashes: 

1	[  x  xx  ]
2	[  x x xxx]
3	[  xxxx x ]
4	[ x x   x ]
5	[ x xxx  x]
6	[x    x  x]
7	[x  x  x  ]
8	[xx  xxxx ]
9	[xxx x   x]
10	[xxxx  xxx]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[x    xxx ]

10 solutions found. Hashes: 

1	[   x x  x]
2	[   xx  x ]
3	[ xx   xxx]
4	[ xx xxx  ]
5	[ xxx x x ]
6	[x    xxx ]
7	[x x     x]
8	[x xxx xxx]
9	[xx  xx  x]
10	[xx xx x  ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[x x  x  x]

10 solutions found. Hashes: 

1	[  xx xxx ]
2	[  xxx x x]
3	[ x       ]
4	[ x  xx xx]
5	[ x x xx x]
6	[x     xx ]
7	[x  xx    ]
8	[x x  x  x]
9	[xxx xxxx ]
10	[xxxxx  xx]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[ xxxx    ]

10 solutions found. Hashes: 

1	[  x  x x ]
2	[  xx  xxx]
3	[ x   x  x]
4	[ x xxxxxx]
5	[ xxxx    ]
6	[x   x x  ]
7	[x  x   x ]
8	[x  xxx  x]
9	[xxx  xx  ]
10	[xxx x xxx]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[xx    x x]

10 solutions found. Hashes: 

1	[  x  xx  ]
2	[  x x xxx]
3	[  xx    x]
4	[ x x   x ]
5	[ x xxx  x]
6	[x   x  x ]
7	[x  xxxxxx]
8	[xx    x x]
9	[xxx  x x ]
10	[xxxxxxx  ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[     xx  ]

10 solutions found. Hashes: 

1	[     xx  ]
2	[  x    xx]
3	[  xxx x x]
4	[ x  xx xx]
5	[ x xx xx ]
6	[x  x x xx]
7	[x  xx    ]
8	[xxx   x x]
9	[xxx xxxx ]
10	[xxxx x   ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[xxxxx x x]

10 solutions found. Hashes: 

1	[    x   x]
2	[   x  xxx]
3	[   xxxx  ]
4	[ xx  x  x]
5	[ xx x  x ]
6	[x x  xxxx]
7	[x xx   x ]
8	[xx   xx  ]
9	[xx xxx x ]
10	[xxxxx x x]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[x xxxx   ]

10 solutions found. Hashes: 

1	[  x   x  ]
2	[  x xxxxx]
3	[ x  xxx  ]
4	[ x x x x ]
5	[ x xx   x]
6	[x       x]
7	[x  xx xxx]
8	[x xxxx   ]
9	[xxx    x ]
10	[xxxx xxxx]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[ xxx  x  ]

10 solutions found. Hashes: 

1	[  x xxxx ]
2	[  xxx  xx]
3	[ x  xxx x]
4	[ x x x xx]
5	[ xxx  x  ]
6	[x        ]
7	[x  x xx x]
8	[x  xx xx ]
9	[xxx    xx]
10	[xxx xx   ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[x x   xxx]

10 solutions found. Hashes: 

1	[  xx     ]
2	[  xxxx xx]
3	[ x   xxx ]
4	[ x  x x x]
5	[ x x   xx]
6	[x    x   ]
7	[x  xxxxx ]
8	[x x   xxx]
9	[xxx x    ]
10	[xxxxxxx x]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[x    x x ]

10 solutions found. Hashes: 

1	[   x xx x]
2	[   xx xx ]
3	[ xx    xx]
4	[ xx xx   ]
5	[ xxx xxx ]
6	[x    x x ]
7	[x x   x x]
8	[x xxx  xx]
9	[xx  xxx x]
10	[xx xx    ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[x x  xxxx]

10 solutions found. Hashes: 

1	[  xx x   ]
2	[  xxx  xx]
3	[ x    xx ]
4	[ x  xxx x]
5	[ x x x xx]
6	[x        ]
7	[x  xx xx ]
8	[x x  xxxx]
9	[xxx xx   ]
10	[xxxxx x x]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[    xxx  ]

10 solutions found. Hashes: 

1	[    xxx  ]
2	[  x x  xx]
3	[  xx  x x]
4	[ x   x xx]
5	[ x x  xx ]
6	[x  x     ]
7	[x  xxx xx]
8	[xxx  xxx ]
9	[xxx x x x]
10	[xxxxxx   ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[ xxx x   ]

10 solutions found. Hashes: 

1	[  x x  x ]
2	[  xxxxxxx]
3	[ x  x   x]
4	[ x x  xxx]
5	[ xxx x   ]
6	[x    xx  ]
7	[x  x    x]
8	[x  xxx x ]
9	[xxx  xxxx]
10	[xxx x x  ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[      xxx]

10 solutions found. Hashes: 

1	[      xxx]
2	[  x  x   ]
3	[  xxxxxx ]
4	[ x  x    ]
5	[ x xxxx x]
6	[x  x     ]
7	[x  xxx xx]
8	[xxx  xxx ]
9	[xxx x x x]
10	[xxxx   xx]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[    xxx x]

10 solutions found. Hashes: 

1	[    xxx x]
2	[  x x  x ]
3	[  xx  x  ]
4	[ x   x x ]
5	[ x x  xxx]
6	[x  x    x]
7	[x  xxx x ]
8	[xxx  xxxx]
9	[xxx x x  ]
10	[xxxxxx  x]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[xxxxx   x]

10 solutions found. Hashes: 

1	[    x x x]
2	[   x   xx]
3	[   xxx   ]
4	[ xx  xx x]
5	[ xx x xx ]
6	[x x  x xx]
7	[x xx  xx ]
8	[xx   x   ]
9	[xx xxxxx ]
10	[xxxxx   x]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[x   xxx  ]

10 solutions found. Hashes: 

1	[   x     ]
2	[   xxx xx]
3	[ xx  xxx ]
4	[ xx x x x]
5	[ xxxxx   ]
6	[x   xxx  ]
7	[x x x  xx]
8	[x xx  x x]
9	[xx   x xx]
10	[xx x  xx ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[xx xx xx ]

10 solutions found. Hashes: 

1	[  x x  x ]
2	[  xx  x  ]
3	[  xxxxxxx]
4	[ x   x x ]
5	[ x  x   x]
6	[x    xx  ]
7	[x  x    x]
8	[xx xx xx ]
9	[xxx  xxxx]
10	[xxxxxx  x]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[   x     ]

10 solutions found. Hashes: 

1	[   x     ]
2	[  x xx  x]
3	[  xx xxxx]
4	[ x  xx x ]
5	[ x xx xxx]
6	[x     xxx]
7	[x   xxx  ]
8	[xxx   x  ]
9	[xxxx x  x]
10	[xxxxx  x ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[ x  x x x]

10 solutions found. Hashes: 

1	[       x ]
2	[   x xxxx]
3	[ x  x x x]
4	[ xx xx x ]
5	[ xxx xx  ]
6	[x x   xxx]
7	[x x xxx  ]
8	[x xxx   x]
9	[xx x x  x]
10	[xx xx  x ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[xx x  xxx]

10 solutions found. Hashes: 

1	[  x    xx]
2	[  xx xxx ]
3	[  xxx x x]
4	[ x       ]
5	[ x  xx xx]
6	[x   xxx x]
7	[x  xx    ]
8	[xx x  xxx]
9	[xxx xxxx ]
10	[xxxx x   ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[  x    xx]

10 solutions found. Hashes: 

1	[     xx  ]
2	[   xxx x ]
3	[  x    xx]
4	[ xx x x  ]
5	[ xxxxx  x]
6	[x xx  x  ]
7	[x xxxxxxx]
8	[xx   x x ]
9	[xx  x   x]
10	[xx x  xxx]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[      x  ]

10 solutions found. Hashes: 

1	[      x  ]
2	[  x  x xx]
3	[  xxxxx x]
4	[ x  x  xx]
5	[ x xxxxx ]
6	[x  x   xx]
7	[x  xxx   ]
8	[xxx  xx x]
9	[xxx x xx ]
10	[xxxx     ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[ xx  x xx]

10 solutions found. Hashes: 

1	[  x xxx  ]
2	[  xxx   x]
3	[ x    x  ]
4	[ x xx  x ]
5	[ xx  x xx]
6	[x      x ]
7	[x   xx  x]
8	[x  x xxxx]
9	[xxxx xx  ]
10	[xxxxx xxx]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[xx x x   ]

10 solutions found. Hashes: 

1	[  x  xx  ]
2	[  xx    x]
3	[  xxxx x ]
4	[ x   xxxx]
5	[ x  x x  ]
6	[x   x  x ]
7	[x  xxxxxx]
8	[xx x x   ]
9	[xxx x   x]
10	[xxxx  xxx]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[x  x x xx]

10 solutions found. Hashes: 

1	[     xx  ]
2	[    x xxx]
3	[ xx  xxxx]
4	[ xxx   x ]
5	[ xxxxx  x]
6	[x  x x xx]
7	[x x x  x ]
8	[x xx  x  ]
9	[xx  x   x]
10	[xx xxxx  ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[ xxxx  x ]

10 solutions found. Hashes: 

1	[  x  x   ]
2	[  xx  x x]
3	[ x   x xx]
4	[ x xxxx x]
5	[ xxxx  x ]
6	[x   x xx ]
7	[x  x     ]
8	[x  xxx xx]
9	[xxx  xxx ]
10	[xxx x x x]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[ x       ]

10 solutions found. Hashes: 

1	[    x xxx]
2	[   xxx x ]
3	[ x       ]
4	[ xx  xxxx]
5	[ xxxxx  x]
6	[x x  x  x]
7	[x x x  x ]
8	[x xx  x  ]
9	[xx x  xxx]
10	[xx xxxx  ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[  xx  xx ]

10 solutions found. Hashes: 

1	[    xxxxx]
2	[   x x  x]
3	[  xx  xx ]
4	[ xx xxx  ]
5	[ xxxx   x]
6	[x x     x]
7	[x x xx x ]
8	[xx     x ]
9	[xx x xxxx]
10	[xx xx x  ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[ xx xx xx]

10 solutions found. Hashes: 

1	[  x  xx  ]
2	[  xx    x]
3	[ x  x x  ]
4	[ x x   x ]
5	[ xx xx xx]
6	[x    x  x]
7	[x   x  x ]
8	[x  xxxxxx]
9	[xxxx  xxx]
10	[xxxxxxx  ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[xxxx x  x]

10 solutions found. Hashes: 

1	[     xx x]
2	[   x     ]
3	[   xxx xx]
4	[ xx  xxx ]
5	[ xx x x x]
6	[x x x  xx]
7	[x xxxxxx ]
8	[xx  x    ]
9	[xx x  xx ]
10	[xxxx x  x]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[  xxx x  ]

10 solutions found. Hashes: 

1	[     xx x]
2	[   xxx xx]
3	[  xxx x  ]
4	[ xx  xxx ]
5	[ xxx   xx]
6	[x x  x   ]
7	[x x x  xx]
8	[xx  x    ]
9	[xx x  xx ]
10	[xx xxxx x]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[  xxx  xx]

10 solutions found. Hashes: 

1	[     x x ]
2	[   xxxx  ]
3	[  xxx  xx]
4	[ xx  x  x]
5	[ xxx  x  ]
6	[x x  xxxx]
7	[x x x x  ]
8	[xx  x xxx]
9	[xx x    x]
10	[xx xxx x ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[ xx  x  x]

10 solutions found. Hashes: 

1	[  x xxxx ]
2	[  xxx  xx]
3	[ x    xx ]
4	[ x xx    ]
5	[ xx  x  x]
6	[x        ]
7	[x   xx xx]
8	[x  x xx x]
9	[xxxx xxx ]
10	[xxxxx x x]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[x xx xxx ]

10 solutions found. Hashes: 

1	[  x  x  x]
2	[  x x  x ]
3	[ x   x x ]
4	[ x x  xxx]
5	[ x xxxx  ]
6	[x   x xxx]
7	[x  x    x]
8	[x xx xxx ]
9	[xxx x x  ]
10	[xxxxxx  x]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[ x xx x  ]

10 solutions found. Hashes: 

1	[     xxx ]
2	[   x   xx]
3	[ x xx x  ]
4	[ xx  xx x]
5	[ xxxxx xx]
6	[x x x    ]
7	[x xx  xx ]
8	[x xxxxx x]
9	[xx   x   ]
10	[xx  x  xx]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[xxx  x x ]

10 solutions found. Hashes: 

1	[       xx]
2	[    xx   ]
3	[   x xxx ]
4	[ xxx xx x]
5	[ xxxx xx ]
6	[x x xxx x]
7	[x xxx    ]
8	[xx    x x]
9	[xx xx  xx]
10	[xxx  x x ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[xxx  x   ]

10 solutions found. Hashes: 

1	[        x]
2	[    xx x ]
3	[   x xx  ]
4	[ xxx xxxx]
5	[ xxxx x  ]
6	[x x xxxxx]
7	[x xxx  x ]
8	[xx    xxx]
9	[xx xx   x]
10	[xxx  x   ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[x xx x   ]

10 solutions found. Hashes: 

1	[  x  xxxx]
2	[  x x x  ]
3	[ x   xx  ]
4	[ x x    x]
5	[ x xxx x ]
6	[x   x   x]
7	[x  x  xxx]
8	[x xx x   ]
9	[xxx x  x ]
10	[xxxxxxxxx]

Filled solution found!

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[    x x  ]

10 solutions found. Hashes: 

1	[    x x  ]
2	[  x xx xx]
3	[  xx xx x]
4	[ x     xx]
5	[ x x xxx ]
6	[x  x x   ]
7	[x  xx  xx]
8	[xxx   xx ]
9	[xxx xxx x]
10	[xxxxx    ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[  xxx  x ]

10 solutions found. Hashes: 

1	[     x xx]
2	[   xxxx x]
3	[  xxx  x ]
4	[ xx  x   ]
5	[ xxx  x x]
6	[x x  xxx ]
7	[x x x x x]
8	[xx  x xx ]
9	[xx x     ]
10	[xx xxx xx]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[x   xx xx]

10 solutions found. Hashes: 

1	[   x  xxx]
2	[   xxxx  ]
3	[ xx  x  x]
4	[ xx x  x ]
5	[ xxxxxxxx]
6	[x   xx xx]
7	[x x x x  ]
8	[x xx   x ]
9	[xx   xx  ]
10	[xx x    x]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[xx x     ]

10 solutions found. Hashes: 

1	[  x   x  ]
2	[  xx x  x]
3	[  xxx  x ]
4	[ x    xxx]
5	[ x  xxx  ]
6	[x   xx x ]
7	[x  xx xxx]
8	[xx x     ]
9	[xxx xx  x]
10	[xxxx xxxx]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[ x x x  x]

10 solutions found. Hashes: 

1	[    x  xx]
2	[   xxxxx ]
3	[ x x x  x]
4	[ xx x    ]
5	[ xxx  xx ]
6	[x x  xx x]
7	[x xx     ]
8	[x xxxx xx]
9	[xx   xxx ]
10	[xx  x x x]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[  xx x xx]

10 solutions found. Hashes: 

1	[    x  x ]
2	[   x  x  ]
3	[  xx x xx]
4	[ xx x   x]
5	[ xxxxxx  ]
6	[x x  xx  ]
7	[x x x xxx]
8	[xx   xxxx]
9	[xx x   x ]
10	[xx xxx  x]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[xxx x x x]

10 solutions found. Hashes: 

1	[      xxx]
2	[    xxx  ]
3	[   xx   x]
4	[ xxx x  x]
5	[ xxxx  x ]
6	[x x    x ]
7	[x xx xxxx]
8	[xx  xx x ]
9	[xx x xx  ]
10	[xxx x x x]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[x  xx xxx]

10 solutions found. Hashes: 

1	[     x xx]
2	[    x    ]
3	[ xx x  xx]
4	[ xxx  x x]
5	[ xxxxxxx ]
6	[x  xx xxx]
7	[x x  xxx ]
8	[x xxxx   ]
9	[xx   xx x]
10	[xx x     ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[xxx   xxx]

10 solutions found. Hashes: 

1	[     xxx ]
2	[    x x x]
3	[   x   xx]
4	[ xxx     ]
5	[ xxxxx xx]
6	[x x x    ]
7	[x xxxxx x]
8	[xx   x   ]
9	[xx xxxxx ]
10	[xxx   xxx]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[xx x x  x]

10 solutions found. Hashes: 

1	[  x  xx x]
2	[  xx     ]
3	[  xxxx xx]
4	[ x   xxx ]
5	[ x  x x x]
6	[x   x  xx]
7	[x  xxxxx ]
8	[xx x x  x]
9	[xxx x    ]
10	[xxxx  xx ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[  xxx xxx]

10 solutions found. Hashes: 

1	[     xxx ]
2	[   xxx   ]
3	[  xxx xxx]
4	[ xx  xx x]
5	[ xxx     ]
6	[x x  x xx]
7	[x x x    ]
8	[xx  x  xx]
9	[xx x  x x]
10	[xx xxxxx ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[x  x     ]

10 solutions found. Hashes: 

1	[      xxx]
2	[    xxx  ]
3	[ xx   x  ]
4	[ xxx x  x]
5	[ xxxx  x ]
6	[x  x     ]
7	[x x xx  x]
8	[x xx xxxx]
9	[xx  xx x ]
10	[xx xx xxx]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[ x xxx   ]

10 solutions found. Hashes: 

1	[       x ]
2	[   x xxxx]
3	[ x xxx   ]
4	[ xx     x]
5	[ xxxx xxx]
6	[x x xxx  ]
7	[x xx x x ]
8	[x xxx   x]
9	[xx    x  ]
10	[xx  xxxxx]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[ xxx  x x]

10 solutions found. Hashes: 

1	[  x xxxxx]
2	[  xxx  x ]
3	[ x  xxx  ]
4	[ x x x x ]
5	[ xxx  x x]
6	[x       x]
7	[x  x xx  ]
8	[x  xx xxx]
9	[xxx    x ]
10	[xxx xx  x]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[  xx x xx]

10 solutions found. Hashes: 

1	[    x  x ]
2	[   x  x  ]
3	[  xx x xx]
4	[ xx x   x]
5	[ xxxxxx  ]
6	[x x  xx  ]
7	[x x x xxx]
8	[xx   xxxx]
9	[xx x   x ]
10	[xx xxx  x]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[  x  xxxx]

10 solutions found. Hashes: 

1	[         ]
2	[   xx xx ]
3	[  x  xxxx]
4	[ xx xx   ]
5	[ xxxx x x]
6	[x xx x   ]
7	[x xxx  xx]
8	[xx    xx ]
9	[xx  xxx x]
10	[xx x x xx]

Empty solution found!

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[xx  x    ]

10 solutions found. Hashes: 

1	[  x    x ]
2	[  x xx  x]
3	[  xxx x  ]
4	[ x x xx  ]
5	[ x xx xxx]
6	[x     xxx]
7	[x  x x x ]
8	[xx  x    ]
9	[xxx xxxxx]
10	[xxxx x  x]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[xx xx  xx]

10 solutions found. Hashes: 

1	[  x x xxx]
2	[  xx    x]
3	[  xxxx x ]
4	[ x   xxxx]
5	[ x  x x  ]
6	[x    x  x]
7	[x  x  x  ]
8	[xx xx  xx]
9	[xxx  x x ]
10	[xxxxxxx  ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[    x  x ]

10 solutions found. Hashes: 

1	[    x  x ]
2	[  x xxx x]
3	[  xx x xx]
4	[ x    x x]
5	[ x x x   ]
6	[x  x xxx ]
7	[x  xx x x]
8	[xxx      ]
9	[xxx xx xx]
10	[xxxxx xx ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[xxx xx   ]

10 solutions found. Hashes: 

1	[     x x ]
2	[    x   x]
3	[   xxxx  ]
4	[ xxx  x  ]
5	[ xxxxxxxx]
6	[x x  xxxx]
7	[x xx   x ]
8	[xx  x xxx]
9	[xx x    x]
10	[xxx xx   ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[xxx xxx  ]

10 solutions found. Hashes: 

1	[     xxx ]
2	[    x x x]
3	[   xxx   ]
4	[ xxx     ]
5	[ xxxxx xx]
6	[x x  x xx]
7	[x xx  xx ]
8	[xx  x  xx]
9	[xx x  x x]
10	[xxx xxx  ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[ x x x x ]

10 solutions found. Hashes: 

1	[    x    ]
2	[   xxxx x]
3	[ x x x x ]
4	[ xx x  xx]
5	[ xxx  x x]
6	[x x  xxx ]
7	[x xx   xx]
8	[x xxxx   ]
9	[xx   xx x]
10	[xx  x xx ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[   x x xx]

10 solutions found. Hashes: 

1	[   x x xx]
2	[  x x  x ]
3	[  xx  x  ]
4	[ x  x   x]
5	[ x xxxx  ]
6	[x    xx  ]
7	[x   x xxx]
8	[xxx  xxxx]
9	[xxxx   x ]
10	[xxxxxx  x]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[   xxxx x]

10 solutions found. Hashes: 

1	[   xxxx x]
2	[  x   x  ]
3	[  xxx  x ]
4	[ x    xxx]
5	[ x x x x ]
6	[x       x]
7	[x   xx x ]
8	[xxx xx  x]
9	[xxxx xxxx]
10	[xxxxx x  ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[x   xxxxx]

10 solutions found. Hashes: 

1	[   x   xx]
2	[   xxx   ]
3	[ xx  xx x]
4	[ xx x xx ]
5	[ xxxxx xx]
6	[x   xxxxx]
7	[x x x    ]
8	[x xx  xx ]
9	[xx   x   ]
10	[xx x  x x]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[  x x  x ]

10 solutions found. Hashes: 

1	[    xxx x]
2	[   x x xx]
3	[  x x  x ]
4	[ xx   x x]
5	[ xxx x   ]
6	[x xx xxx ]
7	[x xxx x x]
8	[xx       ]
9	[xx  xx xx]
10	[xx xx xx ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[x   xxx x]

10 solutions found. Hashes: 

1	[   x    x]
2	[   xxx x ]
3	[ xx  xxxx]
4	[ xx x x  ]
5	[ xxxxx  x]
6	[x   xxx x]
7	[x x x  x ]
8	[x xx  x  ]
9	[xx   x x ]
10	[xx x  xxx]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[ x xxx x ]

10 solutions found. Hashes: 

1	[         ]
2	[   x xx x]
3	[ x xxx x ]
4	[ xx    xx]
5	[ xxxx x x]
6	[x x xxxx ]
7	[x xx x   ]
8	[x xxx  xx]
9	[xx    xx ]
10	[xx  xxx x]

Empty solution found!

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[ x  x x  ]

10 solutions found. Hashes: 

1	[       xx]
2	[   x xxx ]
3	[ x  x x  ]
4	[ xx xx xx]
5	[ xxx xx x]
6	[x x   xx ]
7	[x x xxx x]
8	[x xxx    ]
9	[xx x x   ]
10	[xx xx  xx]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[ xx xxx x]

10 solutions found. Hashes: 

1	[  x  x x ]
2	[  xx  xxx]
3	[ x  x  x ]
4	[ x x  x  ]
5	[ xx xxx x]
6	[x    xxxx]
7	[x   x x  ]
8	[x  xxx  x]
9	[xxxx    x]
10	[xxxxxx x ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[xx x xxx ]

10 solutions found. Hashes: 

1	[  x  x x ]
2	[  xx  xxx]
3	[  xxxxx  ]
4	[ x   x  x]
5	[ x  x  x ]
6	[x   x x  ]
7	[x  xxx  x]
8	[xx x xxx ]
9	[xxx x xxx]
10	[xxxx    x]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[xx  x  xx]

10 solutions found. Hashes: 

1	[  x     x]
2	[  x xx x ]
3	[  xxx xxx]
4	[ x x xxxx]
5	[ x xx x  ]
6	[x     x  ]
7	[x  x x  x]
8	[xx  x  xx]
9	[xxx xxx  ]
10	[xxxx x x ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[ x   x  x]

10 solutions found. Hashes: 

1	[    xxxx ]
2	[   xx  xx]
3	[ x   x  x]
4	[ xx   xx ]
5	[ xxxx    ]
6	[x x      ]
7	[x x xx xx]
8	[x xx xx x]
9	[xx x xxx ]
10	[xx xx x x]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[ x xxx   ]

10 solutions found. Hashes: 

1	[       x ]
2	[   x xxxx]
3	[ x xxx   ]
4	[ xx     x]
5	[ xxxx xxx]
6	[x x xxx  ]
7	[x xx x x ]
8	[x xxx   x]
9	[xx    x  ]
10	[xx  xxxxx]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[ x  x xxx]

10 solutions found. Hashes: 

1	[         ]
2	[   x xx x]
3	[ x  x xxx]
4	[ xx xx   ]
5	[ xxx xxx ]
6	[x x   x x]
7	[x x xxxx ]
8	[x xxx  xx]
9	[xx x x xx]
10	[xx xx    ]

Empty solution found!

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[ xx  x   ]

10 solutions found. Hashes: 

1	[  x xxxxx]
2	[  xxx  x ]
3	[ x    xxx]
4	[ x xx   x]
5	[ xx  x   ]
6	[x       x]
7	[x   xx x ]
8	[x  x xx  ]
9	[xxxx xxxx]
10	[xxxxx x  ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[ xxxx xxx]

10 solutions found. Hashes: 

1	[  x  xx x]
2	[  xx     ]
3	[ x   xxx ]
4	[ x xxx   ]
5	[ xxxx xxx]
6	[x   x  xx]
7	[x  x  x x]
8	[x  xxxxx ]
9	[xxx  x xx]
10	[xxx x    ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[ xxxx xx ]

10 solutions found. Hashes: 

1	[  x  xx  ]
2	[  xx    x]
3	[ x   xxxx]
4	[ x xxx  x]
5	[ xxxx xx ]
6	[x   x  x ]
7	[x  x  x  ]
8	[x  xxxxxx]
9	[xxx  x x ]
10	[xxx x   x]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[ xxx xx  ]

10 solutions found. Hashes: 

1	[  x x xx ]
2	[  xxxx xx]
3	[ x  x x x]
4	[ x x   xx]
5	[ xxx xx  ]
6	[x    x   ]
7	[x  x  x x]
8	[x  xxxxx ]
9	[xxx  x xx]
10	[xxx x    ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[  x xx   ]

10 solutions found. Hashes: 

1	[    x xxx]
2	[   x    x]
3	[  x xx   ]
4	[ xx  xxxx]
5	[ xxx   x ]
6	[x xx  x  ]
7	[x xxxxxxx]
8	[xx   x x ]
9	[xx  x   x]
10	[xx xxxx  ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[   xxx xx]

10 solutions found. Hashes: 

1	[   xxx xx]
2	[  x    x ]
3	[  xxx x  ]
4	[ x      x]
5	[ x x xx  ]
6	[x     xxx]
7	[x   xxx  ]
8	[xxx xxxxx]
9	[xxxx x  x]
10	[xxxxx  x ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[xxx xxxx ]

10 solutions found. Hashes: 

1	[     xx  ]
2	[    x xxx]
3	[   xxx x ]
4	[ xxx   x ]
5	[ xxxxx  x]
6	[x x  x  x]
7	[x xx  x  ]
8	[xx  x   x]
9	[xx x  xxx]
10	[xxx xxxx ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[xxx x  x ]

10 solutions found. Hashes: 

1	[         ]
2	[    xx xx]
3	[   xx xx ]
4	[ xxx xxx ]
5	[ xxxx x x]
6	[x x   x x]
7	[x xx x   ]
8	[xx  xxx x]
9	[xx x x xx]
10	[xxx x  x ]

Empty solution found!

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[xx   xxxx]

10 solutions found. Hashes: 

1	[  x   xx ]
2	[  x xxx x]
3	[  xx x xx]
4	[ x x x   ]
5	[ x xx  xx]
6	[x   xx   ]
7	[x  xx x x]
8	[xx   xxxx]
9	[xxx      ]
10	[xxxxx xx ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[  x xx xx]

10 solutions found. Hashes: 

1	[    x x  ]
2	[   x   x ]
3	[  x xx xx]
4	[ xx  xx  ]
5	[ xxx    x]
6	[x xx  xxx]
7	[x xxxxx  ]
8	[xx   x  x]
9	[xx  x  x ]
10	[xx xxxxxx]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[x x x   x]

10 solutions found. Hashes: 

1	[  xx xx x]
2	[  xxx xx ]
3	[ x     xx]
4	[ x  xx   ]
5	[ x xx x x]
6	[x   xxxx ]
7	[x  x x   ]
8	[x x x   x]
9	[xxx   xx ]
10	[xxxx x xx]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[x  xx xxx]

10 solutions found. Hashes: 

1	[     x xx]
2	[    x    ]
3	[ xx x  xx]
4	[ xxx  x x]
5	[ xxxxxxx ]
6	[x  xx xxx]
7	[x x  xxx ]
8	[x xxxx   ]
9	[xx   xx x]
10	[xx x     ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[  x x  x ]

10 solutions found. Hashes: 

1	[    xxx x]
2	[   x x xx]
3	[  x x  x ]
4	[ xx   x x]
5	[ xxx x   ]
6	[x xx xxx ]
7	[x xxx x x]
8	[xx       ]
9	[xx  xx xx]
10	[xx xx xx ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[x x   x  ]

10 solutions found. Hashes: 

1	[  xx   xx]
2	[  xxxx   ]
3	[ x   xx x]
4	[ x  x xx ]
5	[ x x     ]
6	[x    x xx]
7	[x  xxxx x]
8	[x x   x  ]
9	[xxx x  xx]
10	[xxxxxxxx ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[    xxx  ]

10 solutions found. Hashes: 

1	[    xxx  ]
2	[  x x  xx]
3	[  xx  x x]
4	[ x   x xx]
5	[ x x  xx ]
6	[x  x     ]
7	[x  xxx xx]
8	[xxx  xxx ]
9	[xxx x x x]
10	[xxxxxx   ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[ x x  x x]

10 solutions found. Hashes: 

1	[    xxxxx]
2	[   xx  x ]
3	[ x x  x x]
4	[ xx xxx  ]
5	[ xxx x x ]
6	[x x     x]
7	[x xx xx  ]
8	[x xxx xxx]
9	[xx     x ]
10	[xx  xx  x]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[x   x xx ]

10 solutions found. Hashes: 

1	[   x x x ]
2	[   xx   x]
3	[ xx   x  ]
4	[ xx xxxxx]
5	[ xxxx  x ]
6	[x   x xx ]
7	[x x xx  x]
8	[x xx xxxx]
9	[xx      x]
10	[xx x xx  ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[  xx x xx]

10 solutions found. Hashes: 

1	[    x  x ]
2	[   x  x  ]
3	[  xx x xx]
4	[ xx x   x]
5	[ xxxxxx  ]
6	[x x  xx  ]
7	[x x x xxx]
8	[xx   xxxx]
9	[xx x   x ]
10	[xx xxx  x]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[ xxx x  x]

10 solutions found. Hashes: 

1	[  x x  xx]
2	[  xxxxxx ]
3	[ x  x    ]
4	[ x x  xx ]
5	[ xxx x  x]
6	[x    xx x]
7	[x  x     ]
8	[x  xxx xx]
9	[xxx  xxx ]
10	[xxx x x x]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[   xx x  ]

10 solutions found. Hashes: 

1	[   xx x  ]
2	[  x  xx x]
3	[  xxxx xx]
4	[ x   xxx ]
5	[ x x   xx]
6	[x    x   ]
7	[x   x  xx]
8	[xxx x    ]
9	[xxxx  xx ]
10	[xxxxxxx x]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[x x    xx]

10 solutions found. Hashes: 

1	[  xx  x  ]
2	[  xxxxxxx]
3	[ x   x x ]
4	[ x  x   x]
5	[ x x  xxx]
6	[x    xx  ]
7	[x  xxx x ]
8	[x x    xx]
9	[xxx x x  ]
10	[xxxxxx  x]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[ x       ]

10 solutions found. Hashes: 

1	[    x xxx]
2	[   xxx x ]
3	[ x       ]
4	[ xx  xxxx]
5	[ xxxxx  x]
6	[x x  x  x]
7	[x x x  x ]
8	[x xx  x  ]
9	[xx x  xxx]
10	[xx xxxx  ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[x x xx x ]

10 solutions found. Hashes: 

1	[  xx  xx ]
2	[  xxxxx x]
3	[ x   x   ]
4	[ x  x  xx]
5	[ x xxxxx ]
6	[x   x x x]
7	[x  x   xx]
8	[x x xx x ]
9	[xxx  xx x]
10	[xxxx     ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[xxx   xxx]

10 solutions found. Hashes: 

1	[     xxx ]
2	[    x x x]
3	[   x   xx]
4	[ xxx     ]
5	[ xxxxx xx]
6	[x x x    ]
7	[x xxxxx x]
8	[xx   x   ]
9	[xx xxxxx ]
10	[xxx   xxx]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[   x   x ]

10 solutions found. Hashes: 

1	[   x   x ]
2	[  x xx xx]
3	[  xx xx x]
4	[ x  xx   ]
5	[ x xx x x]
6	[x     x x]
7	[x   xxxx ]
8	[xxx   xx ]
9	[xxxx x xx]
10	[xxxxx    ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[x x   xxx]

10 solutions found. Hashes: 

1	[  xx     ]
2	[  xxxx xx]
3	[ x   xxx ]
4	[ x  x x x]
5	[ x x   xx]
6	[x    x   ]
7	[x  xxxxx ]
8	[x x   xxx]
9	[xxx x    ]
10	[xxxxxxx x]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[xxxx  x  ]

10 solutions found. Hashes: 

1	[         ]
2	[   x xx x]
3	[   xx xx ]
4	[ xx    xx]
5	[ xx xx   ]
6	[x x xxxx ]
7	[x xxx  xx]
8	[xx  xxx x]
9	[xx x x xx]
10	[xxxx  x  ]

Empty solution found!

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[x  x x xx]

10 solutions found. Hashes: 

1	[     xx  ]
2	[    x xxx]
3	[ xx  xxxx]
4	[ xxx   x ]
5	[ xxxxx  x]
6	[x  x x xx]
7	[x x x  x ]
8	[x xx  x  ]
9	[xx  x   x]
10	[xx xxxx  ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[ xx    x ]

10 solutions found. Hashes: 

1	[  x x x x]
2	[  xxxx   ]
3	[ x   xx x]
4	[ x xxx xx]
5	[ xx    x ]
6	[x    x xx]
7	[x   x    ]
8	[x  x  xx ]
9	[xxxx  x x]
10	[xxxxxxxx ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[ x x x x ]

10 solutions found. Hashes: 

1	[    x    ]
2	[   xxxx x]
3	[ x x x x ]
4	[ xx x  xx]
5	[ xxx  x x]
6	[x x  xxx ]
7	[x xx   xx]
8	[x xxxx   ]
9	[xx   xx x]
10	[xx  x xx ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[xx x   x ]

10 solutions found. Hashes: 

1	[  x   xx ]
2	[  xx x xx]
3	[  xxx    ]
4	[ x    x x]
5	[ x  xxxx ]
6	[x   xx   ]
7	[x  xx x x]
8	[xx x   x ]
9	[xxx xx xx]
10	[xxxx xx x]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[    xxxx ]

10 solutions found. Hashes: 

1	[    xxxx ]
2	[  x x   x]
3	[  xx  xxx]
4	[ x   x  x]
5	[ x x  x  ]
6	[x  x   x ]
7	[x  xxx  x]
8	[xxx  xx  ]
9	[xxx x xxx]
10	[xxxxxx x ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[ x xxx   ]

10 solutions found. Hashes: 

1	[       x ]
2	[   x xxxx]
3	[ x xxx   ]
4	[ xx     x]
5	[ xxxx xxx]
6	[x x xxx  ]
7	[x xx x x ]
8	[x xxx   x]
9	[xx    x  ]
10	[xx  xxxxx]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[x  xx x  ]

10 solutions found. Hashes: 

1	[     x   ]
2	[    x  xx]
3	[ xx x    ]
4	[ xxx  xx ]
5	[ xxxxxx x]
6	[x  xx x  ]
7	[x x  xx x]
8	[x xxxx xx]
9	[xx   xxx ]
10	[xx x   xx]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[ xx  x x ]

10 solutions found. Hashes: 

1	[  x xxx x]
2	[  xxx    ]
3	[ x    x x]
4	[ x xx  xx]
5	[ xx  x x ]
6	[x      xx]
7	[x   xx   ]
8	[x  x xxx ]
9	[xxxx xx x]
10	[xxxxx xx ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[x xx   x ]

10 solutions found. Hashes: 

1	[  x   x x]
2	[  x xxxx ]
3	[ x    xx ]
4	[ x x x xx]
5	[ x xx    ]
6	[x   xx xx]
7	[x  x xx x]
8	[x xx   x ]
9	[xxx xx   ]
10	[xxxxx x x]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[x   x xx ]

10 solutions found. Hashes: 

1	[   x x x ]
2	[   xx   x]
3	[ xx   x  ]
4	[ xx xxxxx]
5	[ xxxx  x ]
6	[x   x xx ]
7	[x x xx  x]
8	[x xx xxxx]
9	[xx      x]
10	[xx x xx  ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[xxxxxxxxx]

10 solutions found. Hashes: 

1	[    xx xx]
2	[   x xx x]
3	[   xx xx ]
4	[ xx    xx]
5	[ xx xx   ]
6	[x x   x x]
7	[x xx x   ]
8	[xx    xx ]
9	[xx xx    ]
10	[xxxxxxxxx]

Filled solution found!

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[ x xxx x ]

10 solutions found. Hashes: 

1	[         ]
2	[   x xx x]
3	[ x xxx x ]
4	[ xx    xx]
5	[ xxxx x x]
6	[x x xxxx ]
7	[x xx x   ]
8	[x xxx  xx]
9	[xx    xx ]
10	[xx  xxx x]

Empty solution found!

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[  xxxx x ]

10 solutions found. Hashes: 

1	[       xx]
2	[   xx x x]
3	[  xxxx x ]
4	[ xx      ]
5	[ xxx xx x]
6	[x x   xx ]
7	[x x xxx x]
8	[xx  xxxx ]
9	[xx x x   ]
10	[xx xx  xx]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[x        ]

10 solutions found. Hashes: 

1	[   x  xxx]
2	[   xxxx  ]
3	[ xx  x  x]
4	[ xx x  x ]
5	[ xxx  x  ]
6	[x        ]
7	[x x  xxxx]
8	[x xxxx  x]
9	[xx  x xxx]
10	[xx xxx x ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[x x  xx x]

10 solutions found. Hashes: 

1	[  xx x x ]
2	[  xxx   x]
3	[ x    x  ]
4	[ x  xxxxx]
5	[ x x x  x]
6	[x      x ]
7	[x  xx x  ]
8	[x x  xx x]
9	[xxx xx x ]
10	[xxxxx xxx]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[xx x xx x]

10 solutions found. Hashes: 

1	[  x  x  x]
2	[  xx  x  ]
3	[  xxxxxxx]
4	[ x   x x ]
5	[ x  x   x]
6	[x   x xxx]
7	[x  xxx x ]
8	[xx x xx x]
9	[xxx x x  ]
10	[xxxx   x ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[   x xx  ]

10 solutions found. Hashes: 

1	[   x xx  ]
2	[  x x x x]
3	[  xx   xx]
4	[ x  x xx ]
5	[ x xxx xx]
6	[x    x xx]
7	[x   x    ]
8	[xxx  x   ]
9	[xxxx  x x]
10	[xxxxxxxx ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[    xxx x]

10 solutions found. Hashes: 

1	[    xxx x]
2	[  x x  x ]
3	[  xx  x  ]
4	[ x   x x ]
5	[ x x  xxx]
6	[x  x    x]
7	[x  xxx x ]
8	[xxx  xxxx]
9	[xxx x x  ]
10	[xxxxxx  x]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[ xxx xxx ]

10 solutions found. Hashes: 

1	[  x x x  ]
2	[  xxxx  x]
3	[ x  x xxx]
4	[ x x    x]
5	[ xxx xxx ]
6	[x    x x ]
7	[x  x  xxx]
8	[x  xxxx  ]
9	[xxx  x  x]
10	[xxx x  x ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[   x   x ]

10 solutions found. Hashes: 

1	[   x   x ]
2	[  x xx xx]
3	[  xx xx x]
4	[ x  xx   ]
5	[ x xx x x]
6	[x     x x]
7	[x   xxxx ]
8	[xxx   xx ]
9	[xxxx x xx]
10	[xxxxx    ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[ xxx xxxx]

10 solutions found. Hashes: 

1	[  x x x x]
2	[  xxxx   ]
3	[ x  x xx ]
4	[ x x     ]
5	[ xxx xxxx]
6	[x    x xx]
7	[x  x  xx ]
8	[x  xxxx x]
9	[xxx  x   ]
10	[xxx x  xx]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[  xxxx  x]

10 solutions found. Hashes: 

1	[         ]
2	[   xx xx ]
3	[  xxxx  x]
4	[ xx    xx]
5	[ xxx xxx ]
6	[x x   x x]
7	[x x xxxx ]
8	[xx  xxx x]
9	[xx x x xx]
10	[xx xx    ]

Empty solution found!

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[ xx x xxx]

10 solutions found. Hashes: 

1	[  x      ]
2	[  xx xx x]
3	[ x  xx   ]
4	[ x x xxx ]
5	[ xx x xxx]
6	[x     x x]
7	[x   xxxx ]
8	[x  xx  xx]
9	[xxxx x xx]
10	[xxxxx    ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[ xx x  x ]

10 solutions found. Hashes: 

1	[  x   x x]
2	[  xx x   ]
3	[ x  xxx x]
4	[ x x x xx]
5	[ xx x  x ]
6	[x        ]
7	[x   xx xx]
8	[x  xx xx ]
9	[xxxx xxx ]
10	[xxxxx x x]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[ x  x xx ]

10 solutions found. Hashes: 

1	[        x]
2	[   x xx  ]
3	[ x  x xx ]
4	[ xx xx  x]
5	[ xxx xxxx]
6	[x x   x  ]
7	[x x xxxxx]
8	[x xxx  x ]
9	[xx x x x ]
10	[xx xx   x]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[xx   x x ]

10 solutions found. Hashes: 

1	[  x    xx]
2	[  x xx   ]
3	[  xx xxx ]
4	[ x x xx x]
5	[ x xx xx ]
6	[x   xxx x]
7	[x  xx    ]
8	[xx   x x ]
9	[xxx   x x]
10	[xxxxx  xx]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[xxx x xxx]

10 solutions found. Hashes: 

1	[      x x]
2	[    xxxx ]
3	[   xx  xx]
4	[ xxx x xx]
5	[ xxxx    ]
6	[x x      ]
7	[x xx xx x]
8	[xx  xx   ]
9	[xx x xxx ]
10	[xxx x xxx]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[xx  x xx ]

10 solutions found. Hashes: 

1	[  x   x  ]
2	[  x xxxxx]
3	[  xxx  x ]
4	[ x x x x ]
5	[ x xx   x]
6	[x       x]
7	[x  x xx  ]
8	[xx  x xx ]
9	[xxx xx  x]
10	[xxxx xxxx]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[   xxxx  ]

10 solutions found. Hashes: 

1	[   xxxx  ]
2	[  x   x x]
3	[  xxx  xx]
4	[ x    xx ]
5	[ x x x xx]
6	[x        ]
7	[x   xx xx]
8	[xxx xx   ]
9	[xxxx xxx ]
10	[xxxxx x x]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[xxx x x x]

10 solutions found. Hashes: 

1	[      xxx]
2	[    xxx  ]
3	[   xx   x]
4	[ xxx x  x]
5	[ xxxx  x ]
6	[x x    x ]
7	[x xx xxxx]
8	[xx  xx x ]
9	[xx x xx  ]
10	[xxx x x x]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[  xx x x ]

10 solutions found. Hashes: 

1	[    x  xx]
2	[   x  x x]
3	[  xx x x ]
4	[ xx x    ]
5	[ xxxxxx x]
6	[x x  xx x]
7	[x x x xx ]
8	[xx   xxx ]
9	[xx x   xx]
10	[xx xxx   ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[ x  x x x]

10 solutions found. Hashes: 

1	[       x ]
2	[   x xxxx]
3	[ x  x x x]
4	[ xx xx x ]
5	[ xxx xx  ]
6	[x x   xxx]
7	[x x xxx  ]
8	[x xxx   x]
9	[xx x x  x]
10	[xx xx  x ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[xxxx x xx]

10 solutions found. Hashes: 

1	[     xxxx]
2	[   x   x ]
3	[   xxx  x]
4	[ xx  xx  ]
5	[ xx x xxx]
6	[x x x   x]
7	[x xxxxx  ]
8	[xx  x  x ]
9	[xx x  x  ]
10	[xxxx x xx]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[  x x  x ]

10 solutions found. Hashes: 

1	[    xxx x]
2	[   x x xx]
3	[  x x  x ]
4	[ xx   x x]
5	[ xxx x   ]
6	[x xx xxx ]
7	[x xxx x x]
8	[xx       ]
9	[xx  xx xx]
10	[xx xx xx ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[ x  x xx ]

10 solutions found. Hashes: 

1	[        x]
2	[   x xx  ]
3	[ x  x xx ]
4	[ xx xx  x]
5	[ xxx xxxx]
6	[x x   x  ]
7	[x x xxxxx]
8	[x xxx  x ]
9	[xx x x x ]
10	[xx xx   x]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[xx       ]

10 solutions found. Hashes: 

1	[  x  x  x]
2	[  x x  x ]
3	[  xx  x  ]
4	[ x x  xxx]
5	[ x xxxx  ]
6	[x   x xxx]
7	[x  xxx x ]
8	[xx       ]
9	[xxx  xxxx]
10	[xxxxxx  x]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[x x x x x]

10 solutions found. Hashes: 

1	[  xx x  x]
2	[  xxx  x ]
3	[ x    xxx]
4	[ x  xxx  ]
5	[ x xx   x]
6	[x   xx x ]
7	[x  x xx  ]
8	[x x x x x]
9	[xxx    x ]
10	[xxxx xxxx]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[xx xx x x]

10 solutions found. Hashes: 

1	[  x x   x]
2	[  xx  xxx]
3	[  xxxxx  ]
4	[ x   x  x]
5	[ x  x  x ]
6	[x    xxxx]
7	[x  x   x ]
8	[xx xx x x]
9	[xxx  xx  ]
10	[xxxxxx x ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[  x  xx  ]

10 solutions found. Hashes: 

1	[       xx]
2	[   xx x x]
3	[  x  xx  ]
4	[ xx xx xx]
5	[ xxxx xx ]
6	[x xx x xx]
7	[x xxx    ]
8	[xx    x x]
9	[xx  xxxx ]
10	[xx x x   ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[x   xxxxx]

10 solutions found. Hashes: 

1	[   x   xx]
2	[   xxx   ]
3	[ xx  xx x]
4	[ xx x xx ]
5	[ xxxxx xx]
6	[x   xxxxx]
7	[x x x    ]
8	[x xx  xx ]
9	[xx   x   ]
10	[xx x  x x]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[x   x   x]

10 solutions found. Hashes: 

1	[   x xx x]
2	[   xx xx ]
3	[ xx    xx]
4	[ xx xx   ]
5	[ xxxx x x]
6	[x   x   x]
7	[x x xxxx ]
8	[x xx x   ]
9	[xx    xx ]
10	[xx x x xx]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[xx   xx x]

10 solutions found. Hashes: 

1	[  x   x  ]
2	[  x xxxxx]
3	[  xx x  x]
4	[ x x x x ]
5	[ x xx   x]
6	[x   xx x ]
7	[x  xx xxx]
8	[xx   xx x]
9	[xxx    x ]
10	[xxxxx x  ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[x x   x  ]

10 solutions found. Hashes: 

1	[  xx   xx]
2	[  xxxx   ]
3	[ x   xx x]
4	[ x  x xx ]
5	[ x x     ]
6	[x    x xx]
7	[x  xxxx x]
8	[x x   x  ]
9	[xxx x  xx]
10	[xxxxxxxx ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[xx xxxxxx]

10 solutions found. Hashes: 

1	[  x xx xx]
2	[  xx xx x]
3	[  xxx xx ]
4	[ x     xx]
5	[ x  xx   ]
6	[x     x x]
7	[x  x x   ]
8	[xx xxxxxx]
9	[xxx   xx ]
10	[xxxxx    ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[     x xx]

10 solutions found. Hashes: 

1	[     x xx]
2	[  x   x  ]
3	[  xxx  x ]
4	[ x  xxx  ]
5	[ x xx   x]
6	[x  x xx  ]
7	[x  xx xxx]
8	[xxx    x ]
9	[xxx xx  x]
10	[xxxx xxxx]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[xx  x  xx]

10 solutions found. Hashes: 

1	[  x     x]
2	[  x xx x ]
3	[  xxx xxx]
4	[ x x xxxx]
5	[ x xx x  ]
6	[x     x  ]
7	[x  x x  x]
8	[xx  x  xx]
9	[xxx xxx  ]
10	[xxxx x x ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[  x xxx x]

10 solutions found. Hashes: 

1	[    x  x ]
2	[   x  x  ]
3	[  x xxx x]
4	[ xx  x x ]
5	[ xxx  xxx]
6	[x xx    x]
7	[x xxxx x ]
8	[xx   xxxx]
9	[xx  x x  ]
10	[xx xxx  x]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[xx xx x  ]

10 solutions found. Hashes: 

1	[  x x    ]
2	[  xx  xx ]
3	[  xxxxx x]
4	[ x   x   ]
5	[ x  x  xx]
6	[x    xxx ]
7	[x  x   xx]
8	[xx xx x  ]
9	[xxx  xx x]
10	[xxxxxx xx]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[x x xxx x]

10 solutions found. Hashes: 

1	[  xx    x]
2	[  xxxx x ]
3	[ x   xxxx]
4	[ x  x x  ]
5	[ x xxx  x]
6	[x   x  x ]
7	[x  x  x  ]
8	[x x xxx x]
9	[xxx  x x ]
10	[xxxx  xxx]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[xxx    x ]

10 solutions found. Hashes: 

1	[     x xx]
2	[    x    ]
3	[   x  xx ]
4	[ xxx  x x]
5	[ xxxxxxx ]
6	[x x x x x]
7	[x xxxx   ]
8	[xx   xx x]
9	[xx xxx xx]
10	[xxx    x ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[ xxxxx   ]

10 solutions found. Hashes: 

1	[  x    x ]
2	[  xx xxxx]
3	[ x      x]
4	[ x xx xxx]
5	[ xxxxx   ]
6	[x   xxx  ]
7	[x  x x x ]
8	[x  xx   x]
9	[xxx   x  ]
10	[xxx xxxxx]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[x    xxx ]

10 solutions found. Hashes: 

1	[   x x  x]
2	[   xx  x ]
3	[ xx   xxx]
4	[ xx xxx  ]
5	[ xxx x x ]
6	[x    xxx ]
7	[x x     x]
8	[x xxx xxx]
9	[xx  xx  x]
10	[xx xx x  ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[x x     x]

10 solutions found. Hashes: 

1	[  xx  xx ]
2	[  xxxxx x]
3	[ x   x   ]
4	[ x  x  xx]
5	[ x x  x x]
6	[x    xxx ]
7	[x  xxx   ]
8	[x x     x]
9	[xxx x xx ]
10	[xxxxxx xx]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[    xxx x]

10 solutions found. Hashes: 

1	[    xxx x]
2	[  x x  x ]
3	[  xx  x  ]
4	[ x   x x ]
5	[ x x  xxx]
6	[x  x    x]
7	[x  xxx x ]
8	[xxx  xxxx]
9	[xxx x x  ]
10	[xxxxxx  x]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[x x x xxx]

10 solutions found. Hashes: 

1	[  xx x xx]
2	[  xxx    ]
3	[ x    x x]
4	[ x  xxxx ]
5	[ x xx  xx]
6	[x   xx   ]
7	[x  x xxx ]
8	[x x x xxx]
9	[xxx      ]
10	[xxxx xx x]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[   x   xx]

10 solutions found. Hashes: 

1	[   x   xx]
2	[  x xx x ]
3	[  xx xx  ]
4	[ x  xx  x]
5	[ x xx x  ]
6	[x     x  ]
7	[x   xxxxx]
8	[xxx   xxx]
9	[xxxx x x ]
10	[xxxxx   x]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[xx      x]

10 solutions found. Hashes: 

1	[  x  x   ]
2	[  x x  xx]
3	[  xx  x x]
4	[ x x  xx ]
5	[ x xxxx x]
6	[x   x xx ]
7	[x  xxx xx]
8	[xx      x]
9	[xxx  xxx ]
10	[xxxxxx   ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[xx x xxxx]

10 solutions found. Hashes: 

1	[  x  x xx]
2	[  xx  xx ]
3	[  xxxxx x]
4	[ x   x   ]
5	[ x  x  xx]
6	[x   x x x]
7	[x  xxx   ]
8	[xx x xxxx]
9	[xxx x xx ]
10	[xxxx     ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[ xxx   xx]

10 solutions found. Hashes: 

1	[  x xx  x]
2	[  xxx x  ]
3	[ x  xx x ]
4	[ x x xx  ]
5	[ xxx   xx]
6	[x     xxx]
7	[x  x x x ]
8	[x  xx   x]
9	[xxx   x  ]
10	[xxx xxxxx]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[x  xx xxx]

10 solutions found. Hashes: 

1	[     x xx]
2	[    x    ]
3	[ xx x  xx]
4	[ xxx  x x]
5	[ xxxxxxx ]
6	[x  xx xxx]
7	[x x  xxx ]
8	[x xxxx   ]
9	[xx   xx x]
10	[xx x     ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[xxxxxx   ]

10 solutions found. Hashes: 

1	[    xxx  ]
2	[   x x x ]
3	[   xx   x]
4	[ xx   x  ]
5	[ xx xxxxx]
6	[x x    x ]
7	[x xx xxxx]
8	[xx      x]
9	[xx xx xxx]
10	[xxxxxx   ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[x  xx    ]

10 solutions found. Hashes: 

1	[     xx  ]
2	[    x xxx]
3	[ xx x x  ]
4	[ xxx   x ]
5	[ xxxxx  x]
6	[x  xx    ]
7	[x x  x  x]
8	[x xxxxxxx]
9	[xx   x x ]
10	[xx x  xxx]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[x x   xx ]

10 solutions found. Hashes: 

1	[  xx    x]
2	[  xxxx x ]
3	[ x   xxxx]
4	[ x  x x  ]
5	[ x x   x ]
6	[x    x  x]
7	[x  xxxxxx]
8	[x x   xx ]
9	[xxx x   x]
10	[xxxxxxx  ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[xx xxxx x]

10 solutions found. Hashes: 

1	[  x xx  x]
2	[  xx xxxx]
3	[  xxx x  ]
4	[ x      x]
5	[ x  xx x ]
6	[x     xxx]
7	[x  x x x ]
8	[xx xxxx x]
9	[xxx   x  ]
10	[xxxxx  x ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[    x xx ]

10 solutions found. Hashes: 

1	[    x xx ]
2	[  x xx  x]
3	[  xx xxxx]
4	[ x      x]
5	[ x x xx  ]
6	[x  x x x ]
7	[x  xx   x]
8	[xxx   x  ]
9	[xxx xxxxx]
10	[xxxxx  x ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[  x xxx  ]

10 solutions found. Hashes: 

1	[    x  xx]
2	[   x  x x]
3	[  x xxx  ]
4	[ xx  x xx]
5	[ xxx  xx ]
6	[x xx     ]
7	[x xxxx xx]
8	[xx   xxx ]
9	[xx  x x x]
10	[xx xxx   ]

Type 0 to quit, or any other number to repeat the test with a generated value.
Computed hash:
	[ x    x  ]

10 solutions found. Hashes: 

1	[    x  xx]
2	[   xxxxx ]
3	[ x    x  ]
4	[ xx  x xx]
5	[ xxxxxx x]
6	[x x  xx x]
7	[x x x xx ]
8	[x xx     ]
9	[xx x   xx]
10	[xx xxx   ]

Type 0 to quit, or any other number to repeat the test with a generated