Computer Chess Club Archives


Search

Terms

Messages

Subject: Chess program improvement project (copy at Winboard::Programming)

Author: Stuart Cracraft

Date: 18:14:43 03/06/06


Hi - in discussion with one of you behind the scenes, I've been informed
that my program is "under par" with respect to the basic Win-at-Chess
tactical "bare bones" suite (besides other things.) In this case,
about ~260 vs. his ~287 correct for time of 5 seconds. This run was
at 6 seconds but gave no great improvement above ~260.

The issue is that the total solution count is too low, not near
the 290, 295, 297, 299, 300 that most other programs report at 5
seconds per move and 60 seconds per move.

The point of this post is to solicit your intuition, feedback, gut reaction,
or analysis of the listing or portions of it, towards finding
out what is the most likely reason for this. While analysis is
a poor substitute for code, when bug-finding, I assume it is
more palatable. To incentivize it, I will donate to the sponsor
of this board, non-trivially, for any advice whose implementation
by me drives up the result from the present 264/300 at 6 seconds per
position to 290/300 or greater. If this offends your belief about
programming, ignore the donation, and specify no donation needed in
your solution. Anyone not specifying no donation needed will be assumed
to be promoting the donation concept by their answer. If you have to
see the code to advise, email me at cracraft@cox.net

Here is the listing overview for the listing below.

In the listing br= is the branching factor for the problem's search.
bf= is the average across this and the prior N searches since N=1 where
N is the WAC count from 1 to 300.

h/p/q= are the percentages of times the positions were found for
the general position hash, pawn hash, quiescence hash tables. The
hash tables were set to 65k positions each which is certainly too low for
the time of this search.

mp= is the maximum positional score for white/black followed by the
minimum positional score for white/black in the search. (There does
appear to be an issue there where the values for black sometimes
skyrocket and not sure what this means. It is on a list of things
to check soon.)

The + or - means the problem was solved / not solved.

bc= are the beta cuts. q= is the percentage of nodes in the quiescence
search against the total search.

The eight numbers at the end of the +/- line are related to extensions and
cutoffs:

pawnext - extension of 1/2 ply for 6th or 7th rank pawn pushes
          strangely I don't see one implemented for actual promotions.
recapext - recapture extension of 1 ply for a "forced" or "natural" recapture
qcheckext - not used
checkext - extension of 1 ply in main search or quiescence search for check
qfutilityext - cutoff see below 0 or a delta related to alpha in quiescence
onereplyext - one reply only extension of 1 ply for single-move only
mthrext - extension of 1/2 ply if null move returned a mate threat in the
  next 2 ply
futilext - futility extension - not enabled
bmext - Botvinnik-Markoff extension of 1 ply if bmx is set to 1 by
  the following code if null move search did not produce a >= beta cut
  value is the value returned by the null search, uparams[pawn] is the value
  of one pawn.
      if (alpha - value > 3*uparams[pawn])    // Failure by > 3 pawns
      {
        savemove(&bmmove[ply],npv[ply+1][ply+1]);
        if ((bmmove[ply-2].from!=0&&bmmove[ply-2].from==bmmove[ply].from&&
          bmmove[ply-2].to==bmmove[ply].to&&
          bmmove[ply-2].pro==bmmove[ply].pro)||
          ((bmmove[ply-2].cap!=0&&bmmove[ply].cap==0)&&
          (bmmove[ply-2].to==bmmove[ply].to))) {
          bmx=1;
        }
      }

Any place you see 0's in the listing, the feature is disabled due to most
testing showing it does not work for the program now.

The iterative deepening is represented by lines beginning with slashed
numbers N/M with N being the main search's average depth reached and M
being the same but for quiescence depth and the usual move, score,
nodes, time, and pv found for the iteration.

(This was run on a HP/Compaq NC6000 Pentium M notebook at 1.6Ghz with 500MB.
which because of a good-sized L2 cache is actually half-decent.)

A typical better result would be 270 at 1 second, 287 at 5 seconds, and 299
at 60 seconds, this the actual result for a program that scores in
the bottom of the middle-third of online computer-vs-computer matches. I
am sure there are hotshots out there with 300 correct at 1 second each
but I doubt they want to talk with a poor heathen.

The program is a PVS searcher with hashing for general positions and
pawn structure, null move, variety of extensions and a few reductions,
a static exchange evaluator. Evaluation is a clone of Chess 4.7 with
a few ideas from GNU and Crafty tossed into the mix.

Regards,

Stuart

Listing:

teedee - Temporal Differences Chess
v1 2006
copyright (c) 2004,2005,2006
Stuart Cracraft (cracraft@cox.net)

.st
6
maxdepth = 9999999 maxtime = 600 timed = 1
.ts
position file? [wac.epd] # of test positions to test? 300
Testsuite: Tests/wac.epd 300 positions
*** Problem   Solution(s): Rxb2 (bm)
[D] 8/7p/5k2/5p2/p1p2P2/Pr1pPK2/1P1R3P/8 b - - bm Rxb2
*** Problem   Solution(s): Rxb2 (bm)
-- ** -- ** -- ** -- **
** -- ** -- ** -- ** BP
-- ** -- ** -- BK -- **
** -- ** -- ** BP ** --
BP ** BP ** -- WP -- **
WP BR ** BP WP WK ** --
-- WP -- WR -- ** -- WP
** -- ** -- ** -- ** --
mv 1 stage 0, black to move, computer plays black
hash=359a65d864d93847
pawnhash=3e87fdd09deedce8
Alpha=-258 Beta=542 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 2>b3b2 542  0.00        7 b3b2
 1/ 2 f6e6 710  0.01       27 f6e6
 2/ 3 b3b7 672  0.03       58 b3b7
 3/ 4<b3b7 271  0.03      196 b3b7 d2f2 b7g7
 3/ 4 f6e6 271  0.04      389 f6e6 e3e4 f5e4 f3e4
 4/ 9>f6e6 671  0.04      564 f6e6 e3e4 b3b7
 4/ 9 f6e6 719  0.04      884 f6e6 e3e4 e6f6
 5/ 9 c4c3 555  0.05     1983 c4c3 b2c3 b3c3 d2a2 c3c1
 6/14 b3b6 338  0.08     7189 b3b6 e3e4 f5e4 f3e4 c4c3 b2c3 f6e6
 7/15 b3b7 542  0.22    25060 b3b7 d2g2 h7h6 g2d2 b7g7
 8/19>b3b7 942  0.56    81909 b3b7 e3e4 f6e6 e4f5 e6f5 d2g2 b7b2 g2b2
 8/19 c4c3 1463  0.61    91159 c4c3 b2c3 b3c3 e3e4 c3a3 e4e5 f6e6 f3e3
 9/19<c4c3 1062  0.93   145812 c4c3 b2c3 b3c3 e3e4 c3a3 e4e5 f6e7 f3e3 mtmt
 9/19 c4c3 1061  1.02   159916 c4c3 b2c3 b3c3 e3e4 c3a3 e4e5 f6e7 f3e3 mtmt
10/19>c4c3 1461  1.16   184117 c4c3 b2c3 b3c3 e3e4 c3a3 e4f5 f6f5 f3e3 f5g4 d2d3
a3d3
10/22 c4c3 1781  1.84   313584 c4c3 b2c3 b3c3 e3e4 c3a3 f3e3 f5e4 e3e4 f6e6 h2h3
11/25<c4c3 1380  3.85   677132 c4c3 b2c3 b3c3 e3e4 c3a3 f3e3 f5e4 e3e4 f6e6 h2h3
e6d6 d2g2
11/25 c4c3 1380  3.90   686716 c4c3 b2c3 b3c3 e3e4 c3a3 f3e3 f5e4 e3e4 f6e6 h2h3
e6d6 d2g2
12/25 Tc4c3  980  6.02  1065984 c4c3 b2c3 b3c3 e3e4 c3a3 f3e3 f5e4 e3e4 a3c3
d2d3 c3d3 e4d3 a4a3 h2h3 a3a2
nps=177103 h/p/q=28.00%/98.00%/0.00% q=80.0% bc=42% br=1.65
mp=2432/2688/-1350/-104416
pawnx=7345 recapx=3440 qcheckx=0 checkx=25456 qfutilx=121156 onereplyx=122
mthrx=0 futilx=0 bmx=1495
- 12.00/25.00 0% 0/1 bf=1.65 h/p/q=28.00%/98.00%/0.00% 6.02 1065984
1065984/6/177103 7345/3440/0/25456/121156/122/0/1495
*** Problem   Solution(s): Qg6 (bm)
[D] 2rr3k/pp3pp1/1nnqbN1p/3pN3/2pP4/2P3Q1/PPB4P/R4RK1 w - - bm Qg6
*** Problem   Solution(s): Qg6 (bm)
-- ** BR BR -- ** -- BK
BP BP ** -- ** BP BP --
-- BN BN BQ BB WN -- BP
** -- ** BP WN -- ** --
-- ** BP WP -- ** -- **
** -- WP -- ** -- WQ --
WP WP WB ** -- ** -- WP
WR -- ** -- ** WR WK --
mv 1 stage 0, white to move, computer plays white
hash=92d1b7a9a2ca6664
pawnhash=8e935f950c439ae1
Alpha=-2854 Beta=-2053 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 9 e5c6 -2690  0.01      565 e5c6 d6c6
 2/10 f6h5 -2828  0.04     2488 f6h5 c6e5 d4e5
 3/10 f6h5 -2586  0.07     5370 f6h5 d6f8
 4/10>f6h5 -2185  0.08     5945 f6h5 d6f8 e5c6 b7c6 h5f4
 4/13 f6h5 -2003  0.15    13003 f6h5 g7g6 h5f6 c6e5 d4e5
 5/14>f6h5 -1602  0.18    14952 f6h5 g7g6 h5f6 c6e5 d4e5 d6e5
 5/17 f6e8 1127  0.41    37600 f6e8 d6e5 d4e5 d8e8
 6/21>f6e8 1527  0.91    90041 f6e8 d6e5 d4e5 d8e8 f1f7 e6f7
 6/21 Mg3g6  99988  0.96    94722 g3g6 d6f8 e5f7 e6f7 g6h7
nps=98259 h/p/q=26.00%/97.00%/0.00% q=78.0% bc=52% br=1.89 mp=0/595/0/-476
pawnx=23 recapx=242 qcheckx=0 checkx=2260 qfutilx=15893 onereplyx=510 mthrx=0
futilx=0 bmx=0
+ 9.00/23.00 50% 1/2 bf=1.77 h/p/q=27.00%/97.50%/0.00% 6.98 1160706
580353/3/166219 7368/3682/0/27716/137049/632/0/1495
*** Problem   Solution(s): Rg3 (bm)
[D] 5rk1/1ppb3p/p1pb4/6q1/3P1p1r/2P1R2P/PP1BQ1P1/5RKN w - - bm Rg3
*** Problem   Solution(s): Rg3 (bm)
-- ** -- ** -- BR BK **
** BP BP BB ** -- ** BP
BP ** BP BB -- ** -- **
** -- ** -- ** -- BQ --
-- ** -- WP -- BP -- BR
** -- WP -- WR -- ** WP
WP WP -- WB WQ ** WP **
** -- ** -- ** WR WK WN
mv 1 stage 0, white to move, computer plays white
hash=712f52ac95c3b353
pawnhash=4c451fda2f4d89a2
Alpha=202 Beta=1003 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 4 e2c4 610  0.00       90 e2c4 f8f7
 2/ 5<e2c4 209  0.01      236 e2c4 f8f7 c4f7 g8f7
 2/ 5 e2c4 560  0.01      243 e2c4 f8f7 c4f7 g8f7
 3/ 9>e2c4 960  0.02      911 e2c4 f8f7 c4f7 g8f7 f1f4 d6f4
 3/ 9 e3g3 975  0.03     1352 e3g3 g5g3 h1g3 f4g3 f1f8 d6f8
 4/13 e3g3 975  0.06     3591 e3g3 g5g3 h1g3 f4g3 f1f8 d6f8
 5/13 e3g3 849  0.10     8053 e3g3 g5g3 h1g3 f4g3 e2c4 g8g7 f1f8 d6f8
 6/14 e3g3 849  0.22    18781 e3g3 g5g3 h1g3 f4g3 e2c4 g8g7 f1f8 d6f8
 7/14>e3g3 1249  0.33    26938 e3g3 g5g3 h1g3 f4g3 e2c4 g8g7 f1f8 d6f8 c4a6 b7a6
 7/17 e3g3 3216  0.58    50383 e3g3 g5g3 h1g3 f4g3 f1f8 g8f8 d2g5 h4f4 g5f4 d6f4
 8/18>e3g3 3616  0.77    66410 e3g3 g5g3 h1g3 f4g3 f1f8 g8f8 d2g5 h4f4 g5f4 d6f4
 8/18 e3g3 3617  1.27   115990 e3g3 g5g3 h1g3 f4g3 f1f8 g8f8 d2g5 h4f4 g5h6 f8g8
 9/20<e3g3 3216  2.14   208827 e3g3 g5g3 h1g3 f4g3 f1f8 g8f8 d2g5 h4f4 g5f4 d6f4
h3h4
 9/20 e3g3 3216  2.51   243115 e3g3 g5g3 h1g3 f4g3 f1f8 g8f8 d2g5 h4f4 g5f4 d6f4
h3h4
10/20 e3g3 3406  4.80   479833 e3g3 g5g3 h1g3 f4g3 f1f8 g8f8 d2g5 h4f4 g5f4 d6f4
h3h4 f4g5
11/22>Te3g3  3806  6.02   612352 e3g3 g5g3 h1g3 f4g3 f1f8 g8f8 d2g5 h4f4 g5f4
d6f4 h3h4
nps=101753 h/p/q=38.00%/98.00%/0.00% q=74.0% bc=55% br=1.96
mp=1394/1884/-1733/-1923
pawnx=2965 recapx=2505 qcheckx=0 checkx=15740 qfutilx=134208 onereplyx=445
mthrx=0 futilx=0 bmx=31
+ 9.67/22.67 66% 2/3 bf=1.83 h/p/q=30.67%/97.67%/0.00% 13.00 1773058
591019/4/136379 10333/6187/0/43456/271257/1077/0/1526
*** Problem   Solution(s): Qxh7+ (bm)
[D] r1bq2rk/pp3pbp/2p1p1pQ/7P/3P4/2PB1N2/PP3PPR/2KR4 w - - bm Qxh7+
*** Problem   Solution(s): Qxh7+ (bm)
BR ** BB BQ -- ** BR BK
BP BP ** -- ** BP BB BP
-- ** BP ** BP ** BP WQ
** -- ** -- ** -- ** WP
-- ** -- WP -- ** -- **
** -- WP WB ** WN ** --
WP WP -- ** -- WP WP WR
** -- WK WR ** -- ** --
mv 1 stage 0, white to move, computer plays white
hash=959cb746660a0192
pawnhash=6707421918fc6305
Alpha=-677 Beta=123 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 4>Mh6h7  99993  0.00       19 h6h7 h8h7 h5g6
nps=9500 h/p/q=0.00%/92.00%/0.00% q=68.0% bc=55% br=0.00 mp=0/66/0/-245
pawnx=2 recapx=0 qcheckx=0 checkx=3 qfutilx=1 onereplyx=1 mthrx=0 futilx=0 bmx=0
+ 7.50/18.00 75% 3/4 bf=1.83 h/p/q=23.00%/96.25%/0.00% 13.00 1773077
443269/3/136359 10335/6187/0/43459/271258/1078/0/1526
*** Problem   Solution(s): Qc4+ (bm)
[D] 5k2/6pp/p1qN4/1p1p4/3P4/2PKP2Q/PP3r2/3R4 b - - bm Qc4+
*** Problem   Solution(s): Qc4+ (bm)
-- ** -- ** -- BK -- **
** -- ** -- ** -- BP BP
BP ** BQ WN -- ** -- **
** BP ** BP ** -- ** --
-- ** -- WP -- ** -- **
** -- WP WK WP -- ** WQ
WP WP -- ** -- BR -- **
** -- ** WR ** -- ** --
mv 1 stage 0, black to move, computer plays black
hash=e8834baa0264a599
pawnhash=34f87a57dff88881
Alpha=-275 Beta=525 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 4>Mc6c4  99993  0.00       30 c6c4 d6c4 b5c4
nps=15000 h/p/q=0.00%/65.00%/0.00% q=76.0% bc=55% br=0.00 mp=473/292/0/0
pawnx=0 recapx=0 qcheckx=0 checkx=4 qfutilx=2 onereplyx=1 mthrx=0 futilx=0 bmx=0
+ 6.20/15.20 80% 4/5 bf=1.83 h/p/q=18.40%/90.00%/0.00% 13.01 1773107
354621/3/136340 10335/6187/0/43463/271260/1079/0/1526
*** Problem   Solution(s): Rb7 (bm)
[D] 7k/p7/1R5K/6r1/6p1/6P1/8/8 w - - bm Rb7
*** Problem   Solution(s): Rb7 (bm)
-- ** -- ** -- ** -- BK
BP -- ** -- ** -- ** --
-- WR -- ** -- ** -- WK
** -- ** -- ** -- BR --
-- ** -- ** -- ** BP **
** -- ** -- ** -- WP --
-- ** -- ** -- ** -- **
** -- ** -- ** -- ** --
mv 1 stage 0, white to move, computer plays white
hash=d46f61418ad03631
pawnhash=12c9f318ab1dc81c
Alpha=33 Beta=834 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 3>h6g5 834  0.00        2 h6g5
 1/ 4 h6g5 834  0.00       36 h6g5
 2/ 6<h6g5 433  0.00       84 h6g5 a7b6
 2/ 6 h6g5 433  0.01       93 h6g5 a7b6
 3/ 7 h6g5 434  0.01      273 h6g5 a7b6 g5g4
 4/ 8<h6g5 33  0.01      656 h6g5 a7b6 g5g4 h8g7
 4/ 8 h6g5 -84  0.01     1091 h6g5 a7b6 g5g4 h8g7
 5/10>h6g5 316  0.02     1968 h6g5 a7b6 g5g4 b6b5
 5/10 b6b7 6330  0.02     2378 b6b7 g5g7 b7g7
 6/14 b6b7 6729  0.03     3735 b6b7 g5b5 b7b5 h8g8 h6g6
 7/14>b6b7 7129  0.03     4175 b6b7 g5b5 b7b5 h8g8 h6g6 g8h8
 7/17 b6b7 7884  0.04     6689 b6b7 g5d5 b7b8
 8/18 b6b7 7870  0.06    13685 b6b7 g5b5 b7b5 h8g8 b5b8 g8f7 b8b7 f7f8 b7a7 f8e8
 9/19 b6b7 7881  0.10    25108 b6b7 g5b5 b7b5 h8g8 b5b8 g8f7 b8b7 f7f6 b7a7 f6e6
h6h5 e6e5
10/19 b6b7 7899  0.17    45680 b6b7 g5b5 b7b5 h8g8 b5b8 g8f7 b8b7 f7e8 b7a7 mtmt
11/19 b6b7 8297  0.26    74298 b6b7 g5b5 b7b5 h8g8 b5b8 g8f7 b8b7 f7f8 b7a7 mtmt
12/19>b6b7 8697  0.29    83020 b6b7 g5b5 b7b5 h8g8 b5b8 g8f7 b8b7 f7f8 b7a7 mtmt
12/22 b6b7 9456  0.58   174744 b6b7 h8g8 h6g5 a7a6 g5g4 g8f8 b7a7 f8e8 a7a6 e8e7
mtmt
13/28<b6b7 9055  1.06   331817 b6b7 h8g8 h6g5 g8f8 b7a7 f8e8 g5g4 mtmt
13/28 b6b7 9055  1.14   356437 b6b7 h8g8 h6g5 a7a5 b7a7 g8f7
14/28>b6b7 9455  1.23   389655 b6b7 h8g8 h6g5 a7a5 b7a7 g8f7
14/28 b6b7 9487  2.28   744620 b6b7 g5b5 b7b5 h8g8 b5g5 g8f7 g5g4 f7e8
15/28 b6b7 9490  5.04  1745842 b6b7 g5b5 b7b5 h8g8 b5g5 g8f8 g5g4 a7a6
16/28 Tb6b7  9491  6.01  2076672 b6b7 g5b5 b7b5 h8g8 h6g5 g8f7 b5b7 f7e6 b7a7
e6d5 a7a6 d5e4 g5g4 e4d5
nps=345536 h/p/q=47.00%/99.00%/0.00% q=50.0% bc=56% br=1.57 mp=87/88/0/-26738600
pawnx=1158 recapx=452 qcheckx=0 checkx=114472 qfutilx=148559 onereplyx=9296
mthrx=472 futilx=0 bmx=6499
+ 7.83/17.33 83% 5/6 bf=1.77 h/p/q=23.17%/91.50%/0.00% 19.01 3849779
641630/3/202460 11493/6639/472/157935/419819/10375/0/8025
*** Problem   Solution(s): Ne3 (bm)
[D] rnbqkb1r/pppp1ppp/8/4P3/6n1/7P/PPPNPPP1/R1BQKBNR b KQkq - bm Ne3
*** Problem   Solution(s): Ne3 (bm)
BR BN BB BQ BK BB -- BR
BP BP BP BP ** BP BP BP
-- ** -- ** -- ** -- **
** -- ** -- WP -- ** --
-- ** -- ** -- ** BN **
** -- ** -- ** -- ** WP
WP WP WP WN WP WP WP **
WR -- WB WQ WK WB WN WR
mv 1 stage 0, black to move, computer plays black
hash=211d4481d5fe73dc
pawnhash=4aa69b1bec8c256a
Alpha=-608 Beta=192 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 2 g4e5 -208  0.00       35 g4e5
 2/ 4 g4e5 -450  0.00      102 g4e5 g1f3
 3/ 8 g4e5 -388  0.01      471 g4e5 e2e4
 4/10>g4e5 12  0.03     1957 g4e5 g1f3 f8d6
 4/10 g4e3 13  0.03     2151 g4e3 f2e3 d8h4 g2g3 h4g3
 5/10>g4e3 413  0.04     3033 g4e3 g1f3 e3d1 g2g3 mtmt
 5/11 g4e3 5480  0.07     5849 g4e3 c2c4 e3d1 e1d1
 6/12 g4e3 5726  0.12    11286 g4e3 g1f3 e3d1 e1d1 f8c5
 7/14 g4e3 5385  0.22    22084 g4e3 g1f3 e3d1 e1d1 b8c6 e2e4
 8/16 g4e3 5462  0.60    63798 g4e3 d2e4 e3d1 e1d1 b8c6 c1g5
 9/18 g4e3 5677  1.37   142281 g4e3 d2e4 e3d1 e1d1 d8h4 f2f3 h4d8 mtmt
10/19 g4e3 5720  3.22   342738 g4e3 g1f3 e3d1 e1d1 f8b4 c2c3 b4c5 f3d4 c5d4 c3d4
a7a6
11/21 Tg4e3  5821  6.01   644096 g4e3 d2f3 e3d1 e1d1 b8c6 e2e4
nps=107242 h/p/q=36.00%/95.00%/0.00% q=70.0% bc=53% br=2.38
mp=772/635/-1633/-1546
pawnx=4827 recapx=1412 qcheckx=0 checkx=13644 qfutilx=61414 onereplyx=1118
mthrx=476 futilx=0 bmx=0
+ 8.29/17.86 85% 6/7 bf=1.89 h/p/q=25.00%/92.00%/0.00% 25.02 4493875
641982/4/179604 16320/8051/948/171579/481233/11493/0/8025
*** Problem   Solution(s): Rf7 (bm)
[D] r4q1k/p2bR1rp/2p2Q1N/5p2/5p2/2P5/PP3PPP/R5K1 w - - bm Rf7
*** Problem   Solution(s): Rf7 (bm)
BR ** -- ** -- BQ -- BK
BP -- ** BB WR -- BR BP
-- ** BP ** -- WQ -- WN
** -- ** -- ** BP ** --
-- ** -- ** -- BP -- **
** -- WP -- ** -- ** --
WP WP -- ** -- WP WP WP
WR -- ** -- ** -- WK --
mv 1 stage 0, white to move, computer plays white
hash=3df2773d3bfe8381
pawnhash=3e290cb3abccea5
Alpha=2470 Beta=3271 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 6>e7d7 3271  0.00      140 e7d7
 1/ 7 h6f7 4445  0.01      226 h6f7 h8g8 e7d7 g7f7 f6c6 f7d7 c6d7
 2/ 8 h6f7 4445  0.01      632 h6f7 h8g8 e7d7 g7f7 f6c6 f7d7 c6d7
 3/11>h6f7 4845  0.03     2502 h6f7 h8g8 e7d7 g7f7 f6c6 f7d7 c6d7
 3/11 e7f7 6656  0.04     2731 e7f7 f8f7 h6f7
 4/11>e7f7 7056  0.04     3086 e7f7 f8f7 h6f7
 4/11 e7f7 8485  0.06     5408 e7f7 f8f7 h6f7 h8g8 f7h6 g8h8
 5/15 e7f7 8093  0.12    11761 e7f7 f8f7 h6f7 h8g8 f7h6 g8h8 h6f7 h8g8 f7h6 g8h8
h6f7 h8g8 f7h6 g8h8 h6f7
 6/17 e7f7 8470  0.25    23591 e7f7 f8f7 h6f7 h8g8 f7h6 g8h8 f6e5 f4f3 h6f5 f3g2
 7/21 e7f7 8667  0.59    63565 e7f7 f8f7 h6f7 h8g8 f7h6 g8h8 h6f7 h8g8 f7h6 g8h8
h6f7 h8g8 f7h6 g8h8 h6f7
 8/25<e7f7 8266  1.56   187227 e7f7 f8f7 h6f7 h8g8 f7h6 g8h8 a1e1 h8g8
 8/25 e7f7 8266  1.59   190689 e7f7 f8f7 h6f7 h8g8 f7h6 g8h8 a1e1 h8g8
 9/26 h6f7 7880  4.05   508756 h6f7 f8f7 e7f7 h8g8 f7g7 g8h8 a1e1
10/26<Th6f7  7479  6.00   758784 h6f7 f8f7 e7f7 h8g8 f7g7 g8h8 a1e1
nps=126359 h/p/q=49.00%/99.00%/0.00% q=71.0% bc=54% br=2.20
mp=1012/642/-1656/-1826
pawnx=1658 recapx=1879 qcheckx=0 checkx=19948 qfutilx=105364 onereplyx=3563
mthrx=476 futilx=0 bmx=55
- 8.50/18.88 75% 6/8 bf=1.94 h/p/q=28.00%/92.88%/0.00% 31.03 5252659
656582/4/169299 17978/9930/1424/191527/586597/15056/0/8080
*** Problem   Solution(s): Bh2+ (bm)
[D] 3q1rk1/p4pp1/2pb3p/3p4/6Pr/1PNQ4/P1PB1PP1/4RRK1 b - - bm Bh2+
*** Problem   Solution(s): Bh2+ (bm)
-- ** -- BQ -- BR BK **
BP -- ** -- ** BP BP --
-- ** BP BB -- ** -- BP
** -- ** BP ** -- ** --
-- ** -- ** -- ** WP BR
** WP WN WQ ** -- ** --
WP ** WP WB -- WP WP **
** -- ** -- WR WR WK --
mv 1 stage 0, black to move, computer plays black
hash=5395239c8adae757
pawnhash=9cf7e48e028864ae
Alpha=-3454 Beta=-2653 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 6 h4g4 -3054  0.00      128 h4g4
 2/ 9 d6h2 -3054  0.01      843 d6h2 g1h1 h2d6 h1g1 h4g4
 3/10>h4g4 -2653  0.02     1619 h4g4 g2g3
 3/10 d6h2 0  0.03     2022 d6h2 g1h1 h2d6 h1g1 d6h2 g1h1 h2d6 h1g1
 4/15>Md6h2  99954  0.05     4327 d6h2 g1h1 h2g3 h1g1 h4h1 g1h1 d8h4 h1g1 h4h2
nps=88306 h/p/q=40.00%/95.00%/0.00% q=71.0% bc=41% br=1.70 mp=680/382/-773/0
pawnx=0 recapx=4 qcheckx=0 checkx=151 qfutilx=592 onereplyx=30 mthrx=476
futilx=0 bmx=0
+ 8.00/18.44 77% 7/9 bf=1.91 h/p/q=29.33%/93.11%/0.00% 31.07 5256986
584110/3/169171 17978/9934/1900/191678/587189/15086/0/8080
*** Problem   Solution(s): Rxh7 (bm)
[D] 2br2k1/2q3rn/p2NppQ1/2p1P3/Pp5R/4P3/1P3PPP/3R2K1 w - - bm Rxh7
*** Problem   Solution(s): Rxh7 (bm)
-- ** BB BR -- ** BK **
** -- BQ -- ** -- BR BN
BP ** -- WN BP BP WQ **
** -- BP -- WP -- ** --
WP BP -- ** -- ** -- WR
** -- ** -- WP -- ** --
-- WP -- ** -- WP WP WP
** -- ** WR ** -- WK --
mv 1 stage 0, white to move, computer plays white
hash=a9e9825984e8ed8e
pawnhash=8e18b6e7b08db61
Alpha=-882 Beta=-81 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 4>e5f6 -81  0.00       22 e5f6
 1/ 8 h4h7 2482  0.00      137 h4h7 f6e5
 2/ 8 h4h7 2482  0.01      463 h4h7 f6e5
 3/ 9>h4h7 2882  0.01      541 h4h7 f6e5 d6c8
 3/ 9 h4h7 3806  0.03     2092 h4h7 f6f5
 4/10>h4h7 4206  0.04     2645 h4h7 f6f5 d6c8 g7g6
 4/11 h4h7 4208  0.07     5945 h4h7 f6f5 g6g7 c7g7 h7g7 g8g7 d6f5
 5/14 h4h7 4604  0.19    18542 h4h7 f6e5 h7g7 c7g7 g6g7 g8g7 d6f5 g7h7 d1d8
 6/15<h4h7 4203  0.37    38511 h4h7 f6e5 h7g7 c7g7 g6g7 g8g7 d6f5 g7h7 d1d8 e6f5
d8c8
 6/15 h4h7 4203  0.39    40100 h4h7 f6e5 h7g7 c7g7 g6g7 g8g7 d6f5 g7h7 d1d8 e6f5
d8c8
 7/18 h4h7 4600  0.87    91867 h4h7 g7g6 h7c7 c8d7
 8/22 h4h7 4869  2.41   269868 h4h7 f6e5 h7g7 c7g7 g6g7 g8g7 d6f5 e6f5 d1d8 g7h6
g1f1 c8d7
 9/25 Th4h7  5260  6.00   697344 h4h7 c7d7 h7g7 d7g7 g6g7 g8g7 d6f5 e6f5 e5f6
g7f6 d1d8 f6e6 a4a5
nps=116127 h/p/q=37.00%/99.00%/0.00% q=75.0% bc=59% br=2.31
mp=3844/26843596/-1073/-1395
pawnx=6867 recapx=2692 qcheckx=0 checkx=25661 qfutilx=72558 onereplyx=1768
mthrx=1087 futilx=0 bmx=146
+ 8.10/19.10 80% 8/10 bf=1.96 h/p/q=30.10%/93.70%/0.00% 37.08 5954330
595433/4/160581 24845/12626/2987/217339/659747/16854/0/8226
*** Problem   Solution(s): Bxc6 (bm)
[D] r1b1kb1r/3q1ppp/pBp1pn2/8/Np3P2/5B2/PPP3PP/R2Q1RK1 w kq - bm Bxc6
*** Problem   Solution(s): Bxc6 (bm)
BR ** BB ** BK BB -- BR
** -- ** BQ ** BP BP BP
BP WB BP ** BP BN -- **
** -- ** -- ** -- ** --
WN BP -- ** -- WP -- **
** -- ** -- ** WB ** --
WP WP WP ** -- ** WP WP
WR -- ** WQ ** WR WK --
mv 1 stage 0, white to move, computer plays white
hash=bde767308089e121
pawnhash=22c855801365f10d
Alpha=-623 Beta=177 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 5 g1h1 -179  0.00      229 g1h1
 2/ 5 f3h5 -180  0.01      453 f3h5
 3/ 7>f3h5 220  0.01      788 f3h5 d7d1 h5d1 f6e4
 3/ 9 f3c6 775  0.02     1354 f3c6 f8c5 a4c5 d7c6
 4/ 9>f3c6 1175  0.03     1613 f3c6 f8c5 a4c5 e8g8 c5d7
 4/10 f3c6 1175  0.03     2208 f3c6 f8c5 a4c5 e8g8 c5d7
 5/12>f3c6 1575  0.04     2765 f3c6 f8c5 a4c5 e8g8 c5d7 f6d7
 5/15 f3c6 7811  0.13    12234 f3c6 f6g8 c6d7 c8d7 d1d7 e8d7 a4c5 f8c5 b6c5 mtmt
 6/16 f3c6 7895  0.41    40170 f3c6 e8e7 c6d7 c8d7 d1d7 f6d7
 7/16<f3c6 7494  0.75    74742 f3c6 e8e7 c6d7 f6d7
 7/17 f3c6 7490  0.98    98792 f3c6 a8a7 c6d7 a7d7 b6d4 mtmt
 8/17<f3c6 7089  1.62   169796 f3c6 a8a7 c6d7 a7d7 b6d4 d7d5 a4c5
 8/19 f3c6 5232  2.31   249462 f3c6 f6d5 c6d7 c8d7 c2c3 d5b6 a4b6 f8c5 g1h1 c5b6
c3b4
 9/22<f3c6 4831  4.54   490318 f3c6 f6d5 c6d7 c8d7 c2c3 d5b6 a4b6 f8c5 g1h1 c5b6
c3b4 e8c8
 9/22 f3c6 4831  4.68   503717 f3c6 f6d5 c6d7 c8d7 c2c3 d5b6 a4b6 f8c5 g1h1 c5b6
c3b4 e8c8
10/22>f3c6 5231  4.97   531137 f3c6 f6d5 c6d7 c8d7 c2c3 d5b6 a4b6 f8c5 g1h1 c5b6
c3b4 e8e7
10/22 Tf3c6  5231  6.01   642066 f3c6 f6d5 c6d7 c8d7 c2c3 d5b6 a4b6 f8c5 g1h1
c5b6 c3b4 e8e7
nps=106886 h/p/q=38.00%/99.00%/0.00% q=73.0% bc=49% br=2.30
mp=1592/548/-831/-1195
pawnx=1847 recapx=2744 qcheckx=0 checkx=15091 qfutilx=81249 onereplyx=868
mthrx=1100 futilx=0 bmx=34
+ 8.27/19.36 81% 9/11 bf=2.00 h/p/q=30.82%/94.18%/0.00% 43.09 6596396
599672/4/153095 26692/15370/4087/232430/740996/17722/0/8260
*** Problem   Solution(s): Qxf3+ (bm)
[D] 4k1r1/2p3r1/1pR1p3/3pP2p/3P2qP/P4N2/1PQ4P/5R1K b - - bm Qxf3+
*** Problem   Solution(s): Qxf3+ (bm)
-- ** -- ** BK ** BR **
** -- BP -- ** -- BR --
-- BP WR ** BP ** -- **
** -- ** BP WP -- ** BP
-- ** -- WP -- ** BQ WP
WP -- ** -- ** WN ** --
-- WP WQ ** -- ** -- WP
** -- ** -- ** WR ** WK
mv 1 stage 0, black to move, computer plays black
hash=fb1677c6b329c212
pawnhash=de96252a4751748a
Alpha=-6123 Beta=-5322 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 7 b6b5 -5645  0.00       63 b6b5
 2/ 7>b6b5 -5244  0.01      108 b6b5 c6e6 g4e6
 2/ 7 Mg4f3  99993  0.01      197 g4f3 c2g2 f3g2
nps=21889 h/p/q=53.00%/93.00%/0.00% q=81.0% bc=53% br=0.62 mp=126/558/-22/0
pawnx=0 recapx=1 qcheckx=0 checkx=8 qfutilx=63 onereplyx=1 mthrx=1100 futilx=0
bmx=0
+ 7.75/18.33 83% 10/12 bf=1.86 h/p/q=32.67%/94.08%/0.00% 43.10 6596593
549716/4/153067 26692/15371/5187/232438/741059/17723/0/8260
*** Problem   Solution(s): Qxf8+ (bm)
[D] 5rk1/pp4p1/2n1p2p/2Npq3/2p5/6P1/P3P1BP/R4Q1K w - - bm Qxf8+
*** Problem   Solution(s): Qxf8+ (bm)
-- ** -- ** -- BR BK **
BP BP ** -- ** -- BP --
-- ** BN ** BP ** -- BP
** -- WN BP BQ -- ** --
-- ** BP ** -- ** -- **
** -- ** -- ** -- WP --
WP ** -- ** WP ** WB WP
WR -- ** -- ** WQ ** WK
mv 1 stage 0, white to move, computer plays white
hash=c84b50cc018341ea
pawnhash=908d9db92b5fbd2e
Alpha=-1678 Beta=-877 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 3>c5b7 -877  0.00       62 c5b7
 1/ 3 f1e1 142  0.01      142 f1e1
 2/ 6>f1e1 542  0.01      294 f1e1 c4c3
 2/ 6 f1f8 1512  0.01      442 f1f8 g8f8 c5d7 f8e7 d7e5 c6e5
 3/ 7 f1f8 1512  0.02      898 f1f8 g8f8 c5d7 f8e7 d7e5 c6e5
 4/10 f1f8 1512  0.03     1623 f1f8 g8f8 c5d7 f8e7 d7e5 c6e5
 5/10 f1f8 1648  0.04     3071 f1f8 g8f8 c5d7 f8e8 d7e5 c6e5
 6/10>f1f8 2048  0.05     4044 f1f8 g8f8 c5d7 f8e8 d7e5 c6e5 e2e3 c4c3
 6/15 f1f8 3445  0.10     9785 f1f8 g8f8 c5d7 f8f7 d7e5 c6e5 a1c1
 7/17<f1f8 3044  0.21    21001 f1f8 g8f8 c5d7 f8f7 d7e5 c6e5 a1c1 f7f6 h1g1
 7/17 f1f8 3044  0.21    21040 f1f8 g8f8 c5d7 f8f7 d7e5 c6e5 a1c1 f7f6 h1g1
 8/20<f1f8 2643  0.46    51017 f1f8 g8f8 c5d7 f8f7 d7e5 c6e5 a1c1 f7f6 c1f1 f6g5
g2f3
 8/20 f1f8 2643  0.47    51689 f1f8 g8f8 c5d7 f8f7 d7e5 c6e5 a1c1 f7f6 c1f1 f6g5
g2f3
 9/20<f1f8 2242  0.80    94471 f1f8 g8f8 c5d7 f8f7 d7e5 c6e5 a1c1 f7f6 c1f1 f6g5
g2f3 d5d4 f3b7
 9/20 f1f8 2242  0.82    96437 f1f8 g8f8 c5d7 f8f7 d7e5 c6e5 a1c1 f7f6 c1f1 f6g5
g2f3 d5d4 f3b7
10/20>f1f8 2642  0.94   112726 f1f8 g8f8 c5d7 f8f7 d7e5 c6e5 a1f1 f7g6 mtmt
10/22 f1f8 3385  1.85   233602 f1f8 g8f8 c5d7 f8e7 d7e5 c6e5 a1b1 b7b6 g2d5 mtmt
11/26<f1f8 2984  4.32   536427 f1f8 g8f8 c5d7 f8e7 d7e5 c6e5 a1b1 e5d7 b1b7 a7a6
g2f3
11/26 f1f8 2984  4.33   536678 f1f8 g8f8 c5d7 f8e7 d7e5 c6e5 a1b1 e5d7 b1b7 a7a6
g2f3
12/27 Tf1f8  2914  6.02   763913 f1f8 g8f8 c5d7 f8e7 d7e5 c6e5 a1b1 b7b6 g2f1
a7a6 b1b6 d5d4
nps=126875 h/p/q=37.00%/98.00%/0.00% q=69.0% bc=48% br=1.75
mp=2011/3284/-1626/-1305
pawnx=5051 recapx=1154 qcheckx=0 checkx=22375 qfutilx=95863 onereplyx=2207
mthrx=1100 futilx=0 bmx=30
+ 8.08/19.00 84% 11/13 bf=1.85 h/p/q=33.00%/94.38%/0.00% 49.12 7360506
566193/4/149857 31743/16525/6287/254813/836922/19930/0/8290
*** Problem   Solution(s): Qxh7+ (bm)
[D] r2rb1k1/pp1q1p1p/2n1p1p1/2bp4/5P2/PP1BPR1Q/1BPN2PP/R5K1 w - - bm Qxh7+
*** Problem   Solution(s): Qxh7+ (bm)
BR ** -- BR BB ** BK **
BP BP ** BQ ** BP ** BP
-- ** BN ** BP ** BP **
** -- BB BP ** -- ** --
-- ** -- ** -- WP -- **
WP WP ** WB WP WR ** WQ
-- WB WP WN -- ** WP WP
WR -- ** -- ** -- WK --
mv 1 stage 0, white to move, computer plays white
hash=52afd8f6750b969a
pawnhash=1b5e601d3b2d0c74
Alpha=-252 Beta=548 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 3 a1f1 512  0.00       59 a1f1
 2/ 6>a1f1 912  0.01      195 a1f1 f7f5
 2/ 6 h3h7 913  0.01      301 h3h7 g8h7 f3h3 h7g8 h3h8
 3/ 6>h3h7 1313  0.01      310 h3h7 g8f8 f3h3
 3/12 h3h7 4059  0.03     1904 h3h7 g8f8 h7g7 f8e7 b2f6 e7d6 f6d8 c6d8
 4/16 h3h7 4108  0.11     8301 h3h7 g8f8 h7h8 f8e7 b2f6 e7d6 f6d8 d7d8 d3b5
 5/20 h3h7 4089  0.34    29951 h3h7 g8f8 h7h8 f8e7 b2f6 e7d6 b3b4 c5b6 f6d8 a8d8
 6/20 h3h7 4141  1.05    97506 h3h7 g8f8 h7h8 f8e7 b2f6 e7d6 b3b4 c5b6 f6d8 a8d8
a1f1
 7/22>h3h7 4541  1.59   147882 h3h7 g8f8 h7h8 f8e7 b2f6 e7d6 b3b4 c5b6 b4b5 c6a5
 7/23 h3h7 4543  3.35   311754 h3h7 g8f8 h7g7 f8e7 b2f6 e7d6 g7f8 c6e7 b3b4 c5b6
f6e5 d6c6 b4b5
 8/26 Th3h7  4942  6.00   581632 h3h7 g8f8 h7g7 f8e7 b2f6 e7d6 g7f8 c6e7 b3b4
c5b4 a3b4 d6c6 f6e7
nps=96890 h/p/q=25.00%/98.00%/0.00% q=77.0% bc=49% br=2.64
mp=1669/1242/-957/-1541
pawnx=545 recapx=1446 qcheckx=0 checkx=20105 qfutilx=116531 onereplyx=1445
mthrx=1101 futilx=0 bmx=0
+ 8.07/19.50 85% 12/14 bf=1.91 h/p/q=32.43%/94.64%/0.00% 55.12 7942138
567296/4/144088 32288/17971/7388/274918/953453/21375/0/8290
*** Problem   Solution(s): Rxb7 (bm)
[D] 1R6/1brk2p1/4p2p/p1P1Pp2/P7/6P1/1P4P1/2R3K1 w - - bm Rxb7
*** Problem   Solution(s): Rxb7 (bm)
-- WR -- ** -- ** -- **
** BB BR BK ** -- BP --
-- ** -- ** BP ** -- BP
BP -- WP -- WP BP ** --
WP ** -- ** -- ** -- **
** -- ** -- ** -- WP --
-- WP -- ** -- ** WP **
** -- WR -- ** -- WK --
mv 1 stage 0, white to move, computer plays white
hash=9a23358b76d3b97
pawnhash=a5f2403e1c43dd6c
Alpha=3751 Beta=4552 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 2>b8b7 4552  0.00        5 b8b7
 1/ 2 b8b7 4552  0.00       34 b8b7
 2/ 4 c1c2 4914  0.01      155 c1c2
 3/ 8 b2b4 4694  0.01      703 b2b4 b7a6
 4/10<b2b4 4293  0.06     2017 b2b4 b7a6 b4a5 c7c5
 4/10 b2b4 4293  0.07     2745 b2b4 a5b4 c5c6 b7c6 c1d1 c6d5
 5/10>b2b4 4693  0.07     3454 b2b4 a5b4 c5c6 b7c6 c1d1 c6d5 b8b4
 5/12 b2b4 5631  0.12     8496 b2b4 b7a6 b4a5 c7c5
 6/14<b2b4 5230  0.22    20846 b2b4 b7g2 g1g2 d7e7 c1d1
 6/14 b2b4 5230  0.25    24232 b2b4 c7c6 b4a5 c6c5 c1c5
 7/14>b2b4 5630  0.44    47861 b2b4 g7g6 b4a5 b7a6 c1d1
 7/19 b8b7 8240  0.67    89851 b8b7 d7c8 c5c6 c8d8 c1d1 c7d7
 8/19<b8b7 7839  0.79   110368 b8b7 d7c8 c5c6 c8d8 c1d1 d8c8 d1c1 c8d8 c1d1 d8c8
d1c1 c8d8 c1d1 d8c8 d1c1
 8/20 b8b7 7837  1.09   161916 b8b7 d7e8 b7c7 g7g5 c1d1
 9/22 b8b7 7439  1.59   253919 b8b7 g7g5 c1d1 d7c8 b7b5 c7c5 b5c5
10/23 b8b7 7780  4.22   720326 b8b7 g7g6 c5c6 d7c8 b7b6 f5f4 g3g4 f4f3
11/23<Tb8b7  7379  6.02  1038368 b8b7 d7c8 c5c6 f5f4 c1c3 mtmt
nps=172400 h/p/q=37.00%/98.00%/0.00% q=67.0% bc=50% br=2.33
mp=2142/1483/-1038/-1605
pawnx=18177 recapx=4937 qcheckx=0 checkx=41258 qfutilx=75063 onereplyx=2673
mthrx=1152 futilx=0 bmx=576
+ 8.27/19.73 86% 13/15 bf=1.95 h/p/q=32.73%/94.87%/0.00% 61.14 8980506
598700/4/146877 50465/22908/8540/316176/1028516/24048/0/8866
*** Problem   Solution(s): Nc3 (bm)
[D] r4rk1/ppp2ppp/2n5/2bqp3/8/P2PB3/1PP1NPPP/R2Q1RK1 w - - bm Nc3
*** Problem   Solution(s): Nc3 (bm)
BR ** -- ** -- BR BK **
BP BP BP -- ** BP BP BP
-- ** BN ** -- ** -- **
** -- BB BQ BP -- ** --
-- ** -- ** -- ** -- **
WP -- ** WP WB -- ** --
-- WP WP ** WN WP WP WP
WR -- ** WQ ** WR WK --
mv 1 stage 0, white to move, computer plays white
hash=5773a5322640b50
pawnhash=81b78a55a00186
Alpha=-346 Beta=454 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 4 e2c3 254  0.00       46 e2c3
 2/ 4 e3g5 160  0.01      290 e3g5
 3/ 7 c2c4 146  0.01      903 c2c4 d5d6
 4/ 9 e2c3 330  0.04     3181 e2c3 d5d6 c3e4
 5/ 9>e2c3 730  0.06     5232 e2c3 d5d6 c3e4 c5e3 e4d6
 5/10 e2c3 3742  0.10     8639 e2c3 d5e6 e3c5 f8d8
 6/13 e2c3 3782  0.15    14665 e2c3 d5d7 e3c5 f8e8
 7/13 e2c3 3838  0.31    31916 e2c3 d5d6 c3e4 d6g6 e3c5 f8d8
 8/14 e2c3 3934  0.60    63242 e2c3 d5d6 c3e4 d6d5 c2c4 d5e6 e3c5
 9/16 e2c3 4099  1.22   133157 e2c3 d5e6 e3c5 f8e8 c3e4 f7f5 e4c3
10/16 e2c3 4020  2.76   299425 e2c3 d5e6 e3c5 f8d8 c3b5 e6d5 b2b4 d5d7
11/22 Te2c3  4036  6.05   646144 e2c3 d5e6 e3c5 f8e8 d1h5 g7g6 h5f3 a8d8 mtmt
nps=106765 h/p/q=45.00%/97.00%/0.00% q=74.0% bc=45% br=2.00
mp=1378/1742/-1004/-820
pawnx=460 recapx=1203 qcheckx=0 checkx=3455 qfutilx=77827 onereplyx=723
mthrx=1152 futilx=0 bmx=0
+ 8.44/19.88 87% 14/16 bf=1.95 h/p/q=33.50%/95.00%/0.00% 67.19 9626650
601666/4/143264 50925/24111/9692/319631/1106343/24771/0/8866
*** Problem   Solution(s): Ne5 (bm)
[D] 1k5r/pppbn1pp/4q1r1/1P3p2/2NPp3/1QP5/P4PPP/R1B1R1K1 w - - bm Ne5
*** Problem   Solution(s): Ne5 (bm)
-- BK -- ** -- ** -- BR
BP BP BP BB BN -- BP BP
-- ** -- ** BQ ** BR **
** WP ** -- ** BP ** --
-- ** WN WP BP ** -- **
** WQ WP -- ** -- ** --
WP ** -- ** -- WP WP WP
WR -- WB -- WR -- WK --
mv 1 stage 0, white to move, computer plays white
hash=1265afa8a8c05709
pawnhash=54d3dcfa0780ef3b
Alpha=-703 Beta=97 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 2>e1e4 97  0.00        5 e1e4
 1/ 2 c1f4 281  0.00       49 c1f4
 2/ 3 c1d2 263  0.01      147 c1d2
 3/ 8 c1f4 -29  0.01      722 c1f4 e6f7
 4/ 9 c1f4 39  0.04     2791 c1f4 e6d5 a2a4
 5/13 c4e5 323  0.11     9275 c4e5 g6f6 b3e6 d7e6 c1f4
 6/13>c4e5 723  0.17    14759 c4e5 g6f6 b3e6 d7e6 c1f4 g7g6 g1h1
 6/13 c4e5 1594  0.31    27912 c4e5 e6b3 e5d7 b8c8 a2b3 c8d7 a1a7
 7/14 c4e5 1408  0.54    51844 c4e5 e6b3 e5d7 b8c8 a2b3 c8d7 a1a7 b7b6
 8/15 c4e5 1660  0.99   100236 c4e5 e6b3 e5d7 b8c8 a2b3 c8d7 a1a7 d7c8
 9/18 c4e5 1758  1.81   188147 c4e5 e6b3 e5d7 b8c8 a2b3 c8d7 a1a7 g6b6 c3c4
10/19 c4e5 1476  4.22   442804 c4e5 e6b3 e5d7 b8c8 a2b3 c8d7 a1a7 g6b6 c3c4 h7h5
11/20 Tc4e5  1776  6.01   637952 c4e5 e6b3 e5d7 b8c8 a2b3 c8d7 a1a7 g6b6 c3c4
e7c8 a7a2
nps=106166 h/p/q=39.00%/96.00%/0.00% q=76.0% bc=52% br=2.14
mp=2403/3148/-1830/-1615
pawnx=8736 recapx=1862 qcheckx=0 checkx=7752 qfutilx=93612 onereplyx=369
mthrx=1152 futilx=0 bmx=0
+ 8.59/19.88 88% 15/17 bf=1.96 h/p/q=33.82%/95.06%/0.00% 73.20 10264602
603800/4/140219 59661/25973/10844/327383/1199955/25140/0/8866
*** Problem   Solution(s): Rh8 (bm)
[D] R7/P4k2/8/8/8/8/r7/6K1 w - - bm Rh8
*** Problem   Solution(s): Rh8 (bm)
WR ** -- ** -- ** -- **
WP -- ** -- ** BK ** --
-- ** -- ** -- ** -- **
** -- ** -- ** -- ** --
-- ** -- ** -- ** -- **
** -- ** -- ** -- ** --
BR ** -- ** -- ** -- **
** -- ** -- ** -- WK --
mv 1 stage 0, white to move, computer plays white
hash=e76a03bcca7bfb44
pawnhash=a52ec0a593d5dcae
Alpha=1169 Beta=1970 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 4 g1f1 1572  0.00       17 g1f1
 2/ 4 a8h8 1570  0.00       79 a8h8
 3/ 7 a8h8 1576  0.01      344 a8h8 a2a1 g1f2 a1a2 f2e3
 4/ 8 a8h8 1580  0.01      963 a8h8 a2a1 g1f2 a1a2 f2e3 a2a3 e3d4
 5/10 a8h8 1583  0.02     2792 a8h8 a2a1 g1f2 a1a2 f2e3 a2a3 e3d4 a3a4 d4c5
 6/12 a8h8 1586  0.03     6563 a8h8 a2a1 g1f2 a1a2 f2e3 a2a3 e3d4 a3a4 d4c5 a4a5
c5b6
 7/13>a8h8 1986  0.06    11610 a8h8 a2a1 g1f2 a1a2 f2e3 a2a3 e3d4 a3a4 d4c5 a4a5
c5b6 a5a7
 7/13 g1f1 1986  0.07    15161 g1f1 a2a1 f1e2
 8/16>g1f1 2386  0.13    32107 g1f1 a2a1 f1e2 a1a2
 8/16 a8h8 2387  0.17    43205 a8h8 a2a1 g1f2 a1a2 f2e3 a2a3 e3d4 a3a4 d4c5 a4a5
c5b6 a5a7 b6a7
 9/16>a8h8 2787  0.21    54577 a8h8 a2a1 g1f2 a1a2 f2e3 a2a3 e3d4 a3a4 d4c5 a4a5
c5b6 f7f6 b6a5
 9/17 a8h8 2787  0.50   124781 a8h8 a2a1 g1f2 a1a2 f2e3 a2a3 e3d4 a3a4 d4c5 a4a5
c5b6 f7f6 b6a5
10/17>a8h8 3187  0.59   150422 a8h8 a2a1 g1f2 a1a2 f2e3 a2a3 e3d4 a3a4 d4c5 a4a5
c5b6 f7f6 b6a5 f6e5 a5b4
10/20 a8h8 5022  1.22   276730 a8h8 a2a1 g1f2 a1a2 f2e1 a2a7 h8h7 f7f6 h7a7 f6e5
11/24 a8h8 5025  5.29  1059001 a8h8 a2a1 g1f2 a1a2 f2e3 a2a3 e3d4 a3a7 h8h7 f7f8
12/25 Ta8h8  5027  6.00  1203200 a8h8 a2a1 g1f2 a1a2 f2e3 a2a3 e3d4 a3a7 h8h7
f7e8 h7a7 mtmt
nps=200366 h/p/q=34.00%/99.00%/0.00% q=74.0% bc=38% br=2.15
mp=88/26843596/0/-26738637
pawnx=0 recapx=529 qcheckx=0 checkx=73270 qfutilx=8333 onereplyx=537 mthrx=1152
futilx=0 bmx=1019
+ 8.78/20.17 88% 16/18 bf=1.98 h/p/q=33.83%/95.28%/0.00% 79.21 11467802
637100/4/144779 59661/26502/11996/400653/1208288/25677/0/9885
*** Problem   Solution(s): c6 (bm)
[D] r1b2rk1/ppbn1ppp/4p3/1QP4q/3P4/N4N2/5PPP/R1B2RK1 w - - bm c6
*** Problem   Solution(s): c6 (bm)
BR ** BB ** -- BR BK **
BP BP BB BN ** BP BP BP
-- ** -- ** BP ** -- **
** WQ WP -- ** -- ** BQ
-- ** -- WP -- ** -- **
WN -- ** -- ** WN ** --
-- ** -- ** -- WP WP WP
WR -- WB -- ** WR WK --
mv 1 stage 0, white to move, computer plays white
hash=a62be019eee5b2dd
pawnhash=62c0ab945fc3ee13
Alpha=-1607 Beta=-806 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 4 h2h3 -1061  0.00       50 h2h3
 2/ 4 h2h4 -1071  0.01      138 h2h4
 3/ 7 c1d2 -1067  0.02     1056 c1d2 a7a5
 4/12>c1e3 -666  0.05     3459 c1e3 a7a6
 4/12 c5c6 -295  0.07     4742 c5c6 d7f6 c6b7
 5/14>c5c6 105  0.26    22515 c5c6 d7f6 c6b7 h5b5 a3b5 c8b7 b5c7
 5/15 c5c6 1365  0.52    45799 c5c6 h5d5 b5d5 e6d5 c6d7 c8d7
 6/15<c5c6 964  0.70    60856 c5c6 h5d5 b5d5 e6d5 a3b5 c7h2 f3h2
 6/15 c5c6 776  0.75    66607 c5c6 h5b5 a3b5 c7b8 c6d7 c8d7
 7/19>c5c6 1176  1.81   182988 c5c6 h5b5 a3b5 c7b8 c6d7 c8d7 b5a7 b8a7
 7/19 c5c6 1507  2.91   305296 c5c6 h5d5 b5d5 e6d5 a3b5 c7h2 f3h2 b7c6 a1a7 a8a7
b5a7
 8/22 c5c6 1440  5.48   616086 c5c6 c7h2 f3h2 h5b5 a3b5 b7c6 b5a7 a8a7 a1a7 d7f6
 9/22<Tc5c6  1039  6.04   675840 c5c6 c7h2 f3h2 h5b5 a3b5 b7c6 b5a7 c8b7
nps=111950 h/p/q=40.00%/98.00%/0.00% q=71.0% bc=54% br=3.45
mp=1918/1342/-1682/-1062
pawnx=1563 recapx=2747 qcheckx=0 checkx=8734 qfutilx=109031 onereplyx=1756
mthrx=1153 futilx=0 bmx=0
+ 8.79/20.26 89% 17/19 bf=2.06 h/p/q=34.16%/95.42%/0.00% 85.25 12143642
639139/4/142454 61224/29249/13149/409387/1317319/27433/0/9885
*** Problem   Solution(s): Bb5 (bm)
[D] r2qkb1r/1ppb1ppp/p7/4p3/P1Q1P3/2P5/5PPP/R1B2KNR b kq - bm Bb5
*** Problem   Solution(s): Bb5 (bm)
BR ** -- BQ BK BB -- BR
** BP BP BB ** BP BP BP
BP ** -- ** -- ** -- **
** -- ** -- BP -- ** --
WP ** WQ ** WP ** -- **
** -- WP -- ** -- ** --
-- ** -- ** -- WP WP WP
WR -- WB -- ** WK WN WR
mv 1 stage 0, black to move, computer plays black
hash=a1bec9e063865dae
pawnhash=85fd8c6cd26f8959
Alpha=1407 Beta=2208 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 2 c7c5 1903  0.00       40 c7c5
 2/ 4 c7c6 1858  0.00      114 c7c6
 3/ 7 d7e6 1821  0.01      931 d7e6 c4e2
 4/ 7>d7e6 2221  0.03     2373 d7e6 c4e2 c7c5
 4/ 7 d7b5 8329  0.04     2659 d7b5 c4b5 a6b5 a4b5
 5/ 8>d7b5 8729  0.05     3169 d7b5 c4b5 a6b5 a4b5 a8a1 g1f3
 5/10 d7b5 8729  0.06     4009 d7b5 c4b5 a6b5 a4b5 a8a1 g1f3
 6/10>d7b5 9129  0.07     5443 d7b5 c4b5 a6b5 a4b5 a8a1 g1f3 a1c1
 6/15 d7b5 10715  0.32    30331 d7b5 c4b5 a6b5 a4b5 a8a1 g1f3 a1c1
 7/17<d7b5 10314  0.44    45609 d7b5 c4b5 a6b5 f1e2 b5a4 g1f3
 7/18 d7b5 9982  0.69    72225 d7b5 c4b5 a6b5 h2h3 a8a4 g1f3 a4a1
 8/18<d7b5 9581  1.04   110901 d7b5 c4b5 a6b5 f1e1 b5a4 g1f3 f8d6
 8/18 d7b5 9578  1.41   153499 d7b5 c4b5 a6b5 f1e2 b5a4 c1a3 f8d6 e2d3
 9/22 d7b5 9958  2.50   262088 d7b5 c4b5 a6b5 f1e1 b5a4 a1b1 d8d3
10/23<d7b5 9557  5.00   501060 d7b5 c4b5 a6b5 a4b5 a8a1 g1f3 a1c1
10/23 Td7b5  9555  6.00   609280 d7b5 c4b5 a6b5 f1e2 b5a4 c1a3 f8d6 a1d1 d8d7
a3d6
nps=101547 h/p/q=42.00%/97.00%/0.00% q=73.0% bc=53% br=2.90
mp=681/2196/-1376/-833
pawnx=1582 recapx=1358 qcheckx=0 checkx=16231 qfutilx=47632 onereplyx=2016
mthrx=1229 futilx=0 bmx=140
+ 8.85/20.40 90% 18/20 bf=2.11 h/p/q=34.55%/95.50%/0.00% 91.25 12752922
637646/5/139764 62806/30607/14378/425618/1364951/29449/0/10025
*** Problem   Solution(s): Qh6 (bm)
[D] 5rk1/1b3p1p/pp3p2/3n1N2/1P6/P1qB1PP1/3Q3P/4R1K1 w - - bm Qh6
*** Problem   Solution(s): Qh6 (bm)
-- ** -- ** -- BR BK **
** BB ** -- ** BP ** BP
BP BP -- ** -- BP -- **
** -- ** BN ** WN ** --
-- WP -- ** -- ** -- **
WP -- BQ WB ** WP WP --
-- ** -- WQ -- ** -- WP
** -- ** -- WR -- WK --
mv 1 stage 0, white to move, computer plays white
hash=3fcf45ecc670d542
pawnhash=10aad2a1fb999fdd
Alpha=547 Beta=1348 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 5 f5e7 1031  0.01      101 f5e7 g8h8
 2/ 6 d2c3 951  0.01      505 d2c3 d5c3 f3f4
 3/ 9 d2c3 945  0.02     1509 d2c3 d5c3 f5e7 g8h8 f3f4
 4/12 d2c3 993  0.05     4626 d2c3 d5c3 e1e7 f8b8
 5/14 d2c3 697  0.16    16489 d2c3 d5c3 f5d6 f8d8
 6/16 d2c3 796  0.47    49877 d2c3 d5c3 e1c1 c3a2 f5e7 g8h8
 7/21>d2c3 1196  1.21   135584 d2c3 d5c3 e1c1 c3b5 d3b5 a6b5 f5d6 b7f3 d6b5
 7/23 d2h6 1644  1.43   157015 d2h6 c3e1 d3f1 e1f1 g1f1 f8e8
 8/28>d2h6 2044  2.28   251734 d2h6 c3e1 d3f1 e1f1 g1f1 f8e8 f3f4 d5f4 g3f4 g8h8
h6f6
 8/28 d2h6 6768  4.33   485989 d2h6 c3e1 d3f1 e1f1 g1f1 f8e8 f3f4 d5f4 g3f4 g8h8
h6f6
 9/28<Td2h6  6367  6.01   701440 d2h6 c3e1 d3f1 e1e3 f5e3 f8a8 e3d5 b7d5 h6f6
d5e6
nps=116790 h/p/q=22.00%/99.00%/0.00% q=71.0% bc=51% br=2.15
mp=764/26843611/-1511/-26738600
pawnx=190 recapx=1065 qcheckx=0 checkx=28624 qfutilx=98195 onereplyx=6322
mthrx=1702 futilx=0 bmx=7
+ 8.86/20.76 90% 19/21 bf=2.11 h/p/q=33.95%/95.67%/0.00% 97.25 13454362
640684/5/138345 62996/31672/16080/454242/1463146/35771/0/10032
*** Problem   Solution(s): Ba2 Nxf7 (bm)
[D] r1bqk2r/ppp1nppp/4p3/n5N1/2BPp3/P1P5/2P2PPP/R1BQK2R w KQkq - bm Ba2 Nxf7
*** Problem   Solution(s): Ba2 Nxf7 (bm)
BR ** BB BQ BK ** -- BR
BP BP BP -- BN BP BP BP
-- ** -- ** BP ** -- **
BN -- ** -- ** -- WN --
-- ** WB WP BP ** -- **
WP -- WP -- ** -- ** --
-- ** WP ** -- WP WP WP
WR -- WB WQ WK -- ** WR
mv 1 stage 0, white to move, computer plays white
hash=9d027af932448e3a
pawnhash=149e25c958a07dc6
Alpha=-2003 Beta=-1202 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 4>d1e2 -1202  0.00       88 d1e2 a5c4 e2c4
 1/ 4 c4e2 -976  0.01      173 c4e2
 2/ 6 c4a2 -977  0.01      374 c4a2
 3/ 7>c4a2 -576  0.01      740 c4a2 c7c5 d4c5
 3/ 8 g5e6 -538  0.03     1761 g5e6 c8e6 c4e6 e4e3
 4/ 9 c4a2 -547  0.07     4602 c4a2 e8g8 g5e4
 5/12 c4e2 -605  0.13    10170 c4e2 e8g8 e1g1
 6/16 c4a2 -620  0.47    37688 c4a2 e8g8 g5e4 f7f5
 7/18 c4f1 -620  0.98    83290 c4f1 f7f5 g5e4 f5e4 d1h5 g7g6 h5a5
 8/18 g5e6 -573  3.09   266998 g5e6 c8e6 c4e6 c7c5 e6h3 b7b6
 9/21 Tg5e6  -439  6.05   538624 g5e6 c8e6 c4e6 e8g8 e6a2 e7d5 c1d2 c7c6
nps=88955 h/p/q=29.00%/95.00%/0.00% q=77.0% bc=49% br=2.47
mp=1117/1471/-1706/-1806
pawnx=3048 recapx=1283 qcheckx=0 checkx=8982 qfutilx=82768 onereplyx=666
mthrx=1702 futilx=0 bmx=0
- 8.86/20.77 86% 19/22 bf=2.13 h/p/q=33.73%/95.64%/0.00% 103.31 13992986
636045/5/135451 66044/32955/17782/463224/1545914/36437/0/10032
*** Problem   Solution(s): g4 (bm)
[D] r3nrk1/2p2p1p/p1p1b1p1/2NpPq2/3R4/P1N1Q3/1PP2PPP/4R1K1 w - - bm g4
*** Problem   Solution(s): g4 (bm)
BR ** -- ** BN BR BK **
** -- BP -- ** BP ** BP
BP ** BP ** BB ** BP **
** -- WN BP WP BQ ** --
-- ** -- WR -- ** -- **
WP -- WN -- WQ -- ** --
-- WP WP ** -- WP WP WP
** -- ** -- WR -- WK --
mv 1 stage 0, white to move, computer plays white
hash=b0079b0ddc4dbe7c
pawnhash=d5da3ad478697c7c
Alpha=410 Beta=1211 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 4 c5e6 631  0.00       74 c5e6 f7e6
 2/ 4<c5e6 230  0.01      229 c5e6 f7e6 c3d5
 2/ 7 e3d3 136  0.01      513 e3d3
 3/ 7>e3d2 536  0.02     1261 e3d2 e8g7
 3/11 e3d3 734  0.03     1928 e3d3 a8b8
 4/11 e3e2 710  0.09     6196 e3e2 a8b8 b2b4
 5/17 e3e2 800  0.17    13418 e3e2 a6a5 f2f4
 6/20>e3e2 1200  0.31    25578 e3e2 a6a5 e2d1 e8g7
 6/20 g2g4 4113  0.36    30859 g2g4 f5c2 e1e2 c2e2 c3e2
 7/20 g2g4 4512  0.53    47553 g2g4 f5g4 d4g4 a6a5 mtmt
 8/20 g2g4 4471  0.95    90289 g2g4 f5g4 d4g4 e6g4 e3f4 g4f5 f4d2
 9/20 g2g4 4756  1.66   168005 g2g4 f5c2 e1e2 e6f5 e2c2 f5c2 f2f4
10/20 g2g4 4482  2.85   304436 g2g4 f5c2 e1e2 c2e2 e3e2 a6a5 c5e6 f7e6 e2d1 e8g7
11/22>Tg2g4  4882  6.03   643127 g2g4 f5c2 e1e2 c2e2 e3e2 a6a5 g1g2 e8g7 e2d1
nps=106743 h/p/q=43.00%/97.00%/0.00% q=74.0% bc=48% br=2.08
mp=2335/2179/-2042/-1929
pawnx=1665 recapx=2014 qcheckx=0 checkx=4758 qfutilx=125841 onereplyx=337
mthrx=1702 futilx=0 bmx=0
+ 8.96/20.83 86% 20/23 bf=2.13 h/p/q=34.13%/95.70%/0.00% 109.33 14636113
636353/5/133869 67709/34969/19484/467982/1671755/36774/0/10032
*** Problem   Solution(s): Bd4 (bm)
[D] 6k1/1b1nqpbp/pp4p1/5P2/1PN5/4Q3/P5PP/1B2B1K1 b - - bm Bd4
*** Problem   Solution(s): Bd4 (bm)
-- ** -- ** -- ** BK **
** BB ** BN BQ BP BB BP
BP BP -- ** -- ** BP **
** -- ** -- ** WP ** --
-- WP WN ** -- ** -- **
** -- ** -- WQ -- ** --
WP ** -- ** -- ** WP WP
** WB ** -- WB -- WK --
mv 1 stage 0, black to move, computer plays black
hash=c541238be958e82e
pawnhash=5019a1e0153a997d
Alpha=-344 Beta=456 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 5 e7e3 321  0.00      115 e7e3 c4e3 g7f6
 2/ 7 e7e3 420  0.01      390 e7e3 c4e3 g6f5 b1f5 d7e5
 3/ 8 e7e3 386  0.01     1025 e7e3 c4e3 g6f5 b1f5 b7c6
 4/10>e7e3 786  0.03     2334 e7e3 c4e3 g6f5 b1f5 b7c6 f5d7 c6d7 e1c3
 4/10 g7d4 8456  0.04     3125 g7d4 b1e4 d4e3 c4e3
 5/10<g7d4 8055  0.06     4437 g7d4 b1e4 d4e3 c4e3 b7c6 e4c6
 5/11 g7d4 8055  0.10     8075 g7d4 c4b2 d4e3
 6/13<g7d4 7654  0.15    13473 g7d4 c4b2 d4e3
 6/13 g7d4 7649  0.25    23347 g7d4 h2h4 d4e3 c4e3 g6f5 mtmt
 7/14 g7d4 8043  0.52    52018 g7d4 g1f2 d4e3 c4e3 e7h4 f2e2 h4h2
 8/19<g7d4 7642  1.00   108294 g7d4 g1f2 d4e3 c4e3 e7h4 f2f1 h4h2 a2a3 g6f5
 8/19 g7d4 7638  1.34   146404 g7d4 g1f1 b7g2 f1g2 d4e3 c4e3 e7e3 e1f2 e3e5
 9/22<g7d4 7237  3.68   405571 g7d4 g1f1 d4e3 c4e3 e7e3 e1d2 e3d2 f5g6 mtmt
 9/24 Tg7d4  7235  6.01   662528 g7d4 e1d2 e7g5 g2g3 d4e3 d2e3 d7e5 e3g5 e5c4
f5g6 h7g6
nps=110183 h/p/q=38.00%/99.00%/0.00% q=77.0% bc=55% br=2.41
mp=890/1068/-1491/-1771
pawnx=1488 recapx=3421 qcheckx=0 checkx=23376 qfutilx=72792 onereplyx=1204
mthrx=1811 futilx=0 bmx=28
+ 8.96/20.96 87% 21/24 bf=2.14 h/p/q=34.29%/95.83%/0.00% 115.34 15298641
637443/5/132634 69197/38390/21295/491358/1744547/37978/0/10060
*** Problem   Solution(s): Qh4+ (bm)
[D] 3R1rk1/8/5Qpp/2p5/2P1p1q1/P3P3/1P2PK2/8 b - - bm Qh4+
*** Problem   Solution(s): Qh4+ (bm)
-- ** -- WR -- BR BK **
** -- ** -- ** -- ** --
-- ** -- ** -- WQ BP BP
** -- BP -- ** -- ** --
-- ** WP ** BP ** BQ **
WP -- ** -- WP -- ** --
-- WP -- ** WP WK -- **
** -- ** -- ** -- ** --
mv 1 stage 0, black to move, computer plays black
hash=316e658d1642f616
pawnhash=ca987552d8bfb9a8
Alpha=-1132 Beta=-331 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 4>f8d8 -331  0.00       27 f8d8 f6d8
 1/ 5 g4h4 12353  0.00       93 g4h4 f2f1 h4f6
 2/ 7<g4h4 11952  0.01      333 g4h4 f2g1 h4f6
 2/ 7 g4h4 11950  0.01      446 g4h4 f2g1 h4f6
 3/10<g4h4 11549  0.02     1003 g4h4 f2f1 h4h1 f1f2 h1h4 f2f1 h4h1 f1f2 h1h4
f2f1 h4h1 f1f2 h1h4
 3/10 g4h4 11547  0.02     1301 g4h4 f2f1 h4h1 f1f2 h1h4 f2f1 h4h1 f1f2 h1h4
f2f1 h4h1 f1f2 h1h4
 4/11<g4h4 11146  0.03     2028 g4h4 f2g2 h4h1 g2h1
 4/11 g4h4 11145  0.04     3024 g4h4 f2g2 h4h1 g2h1
 5/14 g4h4 10779  0.07     6855 g4h4 f2g1 h4f6 g1g2 f6g5 g2h3 g5e3 h3g2 f8d8
 6/16<g4h4 10378  0.17    19526 g4h4 f2g1 h4f6 g1g2 f6f1 g2g3 f1g1 g3h3 g1e3
h3h2 f8d8
 6/16 g4h4 10378  0.18    19567 g4h4 f2g1 h4f6 g1g2 f6f1 g2g3 f1g1 g3h3 g1e3
h3h2 f8d8
 7/18 g4h4 10776  0.30    35026 g4h4 f2g2 h4f6 d8d5 f6b2 g2g3
 8/22 g4h4 11170  0.68    90289 g4h4 f2g2 h4f6 d8a8 f6f1 g2g3 f1g1 g3h3 g1e3
h3h2 f8a8 a3a4
 9/24 g4h4 11563  1.58   226112 g4h4 f2g2 h4f6 d8d1 f6g5 g2h1 g5h4 h1g1 h4g3
g1h1 g3h3 h1g1 h3e3 g1h1 e3h3 h1g1
10/28 g4h4 11563  2.74   409312 g4h4 f2g2 h4f6 d8d1 f6g5 g2h1 g5h4 h1g1 h4g3
g1h1 g3h3 h1g1 h3g3 g1h1 g3h3 h1g1 h3g4 g1h1 g4h4 h1g1 h4g5
11/31>g4h4 11963  4.85   735252 g4h4 f2g2 h4f6 d8d1 f6g5 g2h1 g5h4 h1g1 h4g5
g1h1 g5h4 h1g1 h4g5 g1h1 g5h4 h1g1 h4g5 g1h1
11/31 Tg4h4  11964  6.00   917504 g4h4 f2g2 h4f6 d8d1 f6g5 g2h1 f8f2 d1d8 g5d8
h1g1 d8g5 g1f2 mtmt
nps=152866 h/p/q=38.00%/99.00%/0.00% q=66.0% bc=57% br=1.90
mp=695/26843596/-829/-26738600
pawnx=7517 recapx=1558 qcheckx=0 checkx=89436 qfutilx=32058 onereplyx=13241
mthrx=1836 futilx=0 bmx=1233
+ 9.04/21.36 88% 22/25 bf=2.13 h/p/q=34.44%/95.96%/0.00% 121.35 16216145
648646/5/133634 76714/39948/23131/580794/1776605/51219/0/11293
*** Problem   Solution(s): Bf5 (bm)
[D] 3r2k1/1p1b1pp1/pq5p/8/3NR3/2PQ3P/PP3PP1/6K1 b - - bm Bf5
*** Problem   Solution(s): Bf5 (bm)
-- ** -- BR -- ** BK **
** BP ** BB ** BP BP --
BP BQ -- ** -- ** -- BP
** -- ** -- ** -- ** --
-- ** -- WN WR ** -- **
** -- WP WQ ** -- ** WP
WP WP -- ** -- WP WP **
** -- ** -- ** -- WK --
mv 1 stage 0, black to move, computer plays black
hash=b9a0bb34b9f78ffa
pawnhash=e8afcaa67967e835
Alpha=-181 Beta=619 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 2 b6b2 219  0.01       39 b6b2
 2/ 3<b6b2 -181  0.01      102 b6b2 d3a6
 2/ 4 b6b2 -475  0.01      210 b6b2 d3c4
 3/ 6>b6b2 -74  0.02      728 b6b2 d3c2
 3/ 6 d7f5 1164  0.02     1235 d7f5 b2b4 f5e4 d3e4
 4/ 8 d7f5 1164  0.03     2255 d7f5 b2b4 f5e4 d3e4
 5/10 d7f5 1184  0.07     6134 d7f5 b2b3 f5e4 d3e4
 6/13 d7f5 1282  0.15    14055 d7f5 b2b4 f5e4 d3e4 b6c7
 7/15 d7f5 1244  0.38    37455 d7f5 b2b4 b6f6 b4b5 f5e4 d3e4
 8/15 d7f5 1250  0.94   100044 d7f5 b2b3 b6f6 h3h4 f5e4 d3e4
 9/19 d7f5 1348  2.00   228449 d7f5 b2b4 b6c7 f2f3 f5e4 d3e4
10/20 d7f5 1387  4.12   480302 d7f5 b2b4 b6c7 f2f3 f5e4 f3e4 c7f4 d3f3 f4f3 d4f3
11/20 Td7f5  1382  6.00   715776 d7f5 b2b4 b6c7 f2f3 f5e4 f3e4 c7f4 g1h1 f4f2
nps=119236 h/p/q=36.00%/97.00%/0.00% q=72.0% bc=57% br=2.04
mp=1793/26843596/-1625/-26738600
pawnx=289 recapx=795 qcheckx=0 checkx=11757 qfutilx=112027 onereplyx=1857
mthrx=1836 futilx=0 bmx=0
+ 9.12/21.31 88% 23/26 bf=2.13 h/p/q=34.50%/96.00%/0.00% 127.35 16931920
651228/5/132956 77003/40743/24967/592551/1888632/53076/0/11293
*** Problem   Solution(s): Qf8+ (bm)
[D] 7k/pp4np/2p3p1/3pN1q1/3P4/Q7/1r3rPP/2R2RK1 w - - bm Qf8+
*** Problem   Solution(s): Qf8+ (bm)
-- ** -- ** -- ** -- BK
BP BP ** -- ** -- BN BP
-- ** BP ** -- ** BP **
** -- ** BP WN -- BQ --
-- ** -- WP -- ** -- **
WQ -- ** -- ** -- ** --
-- BR -- ** -- BR WP WP
** -- WR -- ** WR WK --
mv 1 stage 0, white to move, computer plays white
hash=2a31ecb0d69b8916
pawnhash=4f08d47276cb6522
Alpha=-4431 Beta=-3630 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 5>f1f2 -3630  0.00       41 f1f2
 1/ 5 e5f7 -1144  0.00      118 e5f7 f2f7 a3b2 f7f1 c1f1
 2/ 6>e5f7 -743  0.01      150 e5f7 f2f7 a3b2 f7f1 c1f1
 2/ 8 Ma3f8  99995  0.01      393 a3f8 f2f8 f1f8
nps=35727 h/p/q=46.00%/92.00%/0.00% q=84.0% bc=37% br=0.87 mp=984/716/-937/-96
pawnx=0 recapx=0 qcheckx=0 checkx=19 qfutilx=136 onereplyx=9 mthrx=1836 futilx=0
bmx=0
+ 8.85/20.81 88% 24/27 bf=2.08 h/p/q=34.93%/95.85%/0.00% 127.36 16932312
627123/5/132947 77003/40743/26803/592570/1888768/53085/0/11293
*** Problem   Solution(s): Qe1+ (bm)
[D] 1r1r2k1/4pp1p/2p1b1p1/p3R3/RqBP4/4P3/1PQ2PPP/6K1 b - - bm Qe1+
*** Problem   Solution(s): Qe1+ (bm)
-- BR -- BR -- ** BK **
** -- ** -- BP BP ** BP
-- ** BP ** BB ** BP **
BP -- ** -- WR -- ** --
WR BQ WB WP -- ** -- **
** -- ** -- WP -- ** --
-- WP WQ ** -- WP WP WP
** -- ** -- ** -- WK --
mv 1 stage 0, black to move, computer plays black
hash=5da32dd14d8b5c0f
pawnhash=b8ff0159105f38ea
Alpha=-635 Beta=165 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 4>e6c4 165  0.00       34 e6c4
 1/ 9 b4e1 167  0.01      341 b4e1 c4f1 e6b3
 2/ 9 b4e1 565  0.02      821 b4e1 c4f1 e6b3 c2c3
 3/11 b4e1 964  0.03     2319 b4e1 c4f1 e6b3 c2e2
 4/11>b4e1 1364  0.04     2834 b4e1 c4f1 e6b3 c2e2 b3a4 e2e1
 4/11 b4e1 2557  0.06     4082 b4e1 c4f1 e6b3 c2c6 b3a4 c6a4 b8b2 e5e7 e1f2
 5/13 b4e1 2617  0.12    11533 b4e1 c4f1 e6b3 c2c6 d8c8 c6d7 b3a4 d7a4 b8b2 e5e7
e1f2
 6/16 b4e1 2617  0.29    30245 b4e1 c4f1 e6b3 c2c6 d8c8 c6d7 b3a4 d7a4 b8b2 e5e7
e1f2
 7/19>b4e1 3017  0.43    44247 b4e1 c4f1 e6b3 c2c6 d8c8 c6d7 b3a4 d7a4 b8b2 e5e7
e1f2
 7/19 b4e1 3017  0.55    57084 b4e1 c4f1 e6b3 c2c6
 8/21>b4e1 3417  0.93    94016 b4e1 c4f1 e6b3 c2c6 d8c8 c6d7 b3a4 d7a4 b8b2 e5e7
e1f2
 8/21 b4e1 3417  1.43   149498 b4e1 c4f1 e6b3 c2c6
 9/23>b4e1 3817  2.37   235379 b4e1 c4f1 e6b3 c2c6 d8c8 c6d7 b3a4 d7a4 b8b2 f2f3
 9/23 b4e1 4471  3.60   376591 b4e1 c4f1 e6b3 c2c6 b3a4 c6c7 d8c8 c7a5 e1d1 e5e7
b8b2
10/23 Tb4e1  4805  6.01   634880 b4e1 c4f1 e6b3 c2c3 e1c3 b2c3 b3a4 e5a5 a4b5
h2h4 mtmt
nps=105690 h/p/q=35.00%/98.00%/0.00% q=75.0% bc=59% br=1.86
mp=1667/1828/-1071/-26738600
pawnx=648 recapx=604 qcheckx=0 checkx=13223 qfutilx=117078 onereplyx=2584
mthrx=1837 futilx=0 bmx=51
+ 8.89/20.89 89% 25/28 bf=2.07 h/p/q=34.93%/95.93%/0.00% 133.37 17567192
627400/5/131720 77651/41347/28640/605793/2005846/55669/0/11344
*** Problem   Solution(s): c6 (bm)
[D] r2q2k1/pp1rbppp/4pn2/2P5/1P3B2/6P1/P3QPBP/1R3RK1 w - - bm c6
*** Problem   Solution(s): c6 (bm)
BR ** -- BQ -- ** BK **
BP BP ** BR BB BP BP BP
-- ** -- ** BP BN -- **
** -- WP -- ** -- ** --
-- WP -- ** -- WB -- **
** -- ** -- ** -- WP --
WP ** -- ** WQ WP WB WP
** WR ** -- ** WR WK --
mv 1 stage 0, white to move, computer plays white
hash=ae0c5a53675a8b4a
pawnhash=5e962493c1cc8d4
Alpha=-127 Beta=673 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 3 b1d1 319  0.00       64 b1d1
 2/ 5 b1d1 343  0.00      182 b1d1 d7d1 f1d1
 3/10 c5c6 363  0.01     1050 c5c6 b7c6 g2c6
 4/10>c5c6 763  0.03     2380 c5c6 b7c6 g2c6 e7b4 b1b4
 4/10 c5c6 2306  0.06     4630 c5c6 b7c6 g2c6 a8c8 c6d7 d8d7
 5/11 c5c6 2306  0.10     8805 c5c6 b7c6 g2c6 a8c8 c6d7 d8d7
 6/15 c5c6 2362  0.25    25461 c5c6 b7c6 g2c6 d7d4 c6a8 d8a8
 7/15 c5c6 2618  0.65    61222 c5c6 b7c6 g2c6 d7d4 c6a8 d8a8 a2a3
 8/19 c5c6 2298  1.42   139736 c5c6 b7c6 g2c6 d7d4 c6a8 d8a8 b4b5 g8h8
 9/20 c5c6 2366  3.22   318590 c5c6 b7c6 g2c6 f6d5 c6a8 d8a8 e2c4 d5f6
10/20 Tc5c6  2502  6.01   594944 c5c6 b7c6 g2c6 d7d4 c6a8 d8a8 b4b5 f6d5 e2f3
a8d8
nps=99025 h/p/q=34.00%/98.00%/0.00% q=81.0% bc=44% br=2.41
mp=2486/1193/-1381/-1167
pawnx=2040 recapx=1438 qcheckx=0 checkx=2636 qfutilx=95797 onereplyx=334
mthrx=1837 futilx=0 bmx=0
+ 8.93/20.86 89% 26/29 bf=2.08 h/p/q=34.90%/96.00%/0.00% 139.38 18162136
626281/5/130310 79691/42785/30477/608429/2101643/56003/0/11344
*** Problem   Solution(s): Nxd6 (bm)
[D] 1r3r2/4q1kp/b1pp2p1/5p2/pPn1N3/6P1/P3PPBP/2QRR1K1 w - - bm Nxd6
*** Problem   Solution(s): Nxd6 (bm)
-- BR -- ** -- BR -- **
** -- ** -- BQ -- BK BP
BB ** BP BP -- ** BP **
** -- ** -- ** BP ** --
BP WP BN ** WN ** -- **
** -- ** -- ** -- WP --
WP ** -- ** WP WP WB WP
** -- WQ WR WR -- WK --
mv 1 stage 0, white to move, computer plays white
hash=a3ed8c4044311b97
pawnhash=32ef3ecadf6df188
Alpha=-486 Beta=314 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 5 c1c3 -28  0.00       97 c1c3 e7e5 c3e5 d6e5
 2/ 9 e4g5 -276  0.03     1424 e4g5
 3/10 e4g5 -232  0.04     2431 e4g5 d6d5
 4/12>e4g5 168  0.08     5477 e4g5 d6d5 a2a3
 4/15 e4d6 954  0.13     9981 e4d6 e7e6 d6c4 a6c4
 5/15>e4d6 1354  0.19    14980 e4d6 e7e6 d6c4 a6c4 c1a1 g7h6
 5/15 e4d6 1355  0.32    27195 e4d6 c4d6 c1c6 f8d8 c6a6 b8b4
 6/17 e4d6 1355  0.60    52997 e4d6 c4d6 c1c6 f8d8 c6a6 b8b4
 7/18 e4d6 1180  1.37   130776 e4d6 c4d6 c1c6 f8d8 c6a6 b8b4 e2e3
 8/19 e4d6 1115  3.02   295540 e4d6 c4d6 c1c6 a6b7 c6d6 e7d6 d1d6 b7g2 g1g2 b8b4
 9/23 Te4d6  1160  6.03   592896 e4d6 c4d6 c1c6 f8d8 c6a6 b8b4 f2f4
nps=98390 h/p/q=36.00%/98.00%/0.00% q=78.0% bc=52% br=2.76
mp=1890/2413/-1381/-1047
pawnx=3802 recapx=1372 qcheckx=0 checkx=10440 qfutilx=104307 onereplyx=237
mthrx=1837 futilx=0 bmx=0
+ 8.93/20.93 90% 27/30 bf=2.10 h/p/q=34.93%/96.07%/0.00% 145.40 18755032
625168/5/128987 83493/44157/32314/618869/2205950/56240/0/11344
*** Problem   Solution(s): Qxa8 d6 dxe6 g3 (bm)
[D] rb3qk1/pQ3ppp/4p3/3P4/8/1P3N2/1P3PPP/3R2K1 w - - bm Qxa8 d6 dxe6 g3
*** Problem   Solution(s): Qxa8 d6 dxe6 g3 (bm)
BR BB -- ** -- BQ BK **
BP WQ ** -- ** BP BP BP
-- ** -- ** BP ** -- **
** -- ** WP ** -- ** --
-- ** -- ** -- ** -- **
** WP ** -- ** WN ** --
-- WP -- ** -- WP WP WP
** -- ** WR ** -- WK --
mv 1 stage 0, white to move, computer plays white
hash=812990c8cbc6bb7b
pawnhash=1ef116509c567d68
Alpha=6943 Beta=7744 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 3>b7a8 7744  0.00        2 b7a8
 1/ 3 b7a8 7744  0.00       44 b7a8
 2/ 6<b7a8 7343  0.01      136 b7a8 e6d5
 2/ 6 d5e6 4610  0.01      391 d5e6 b8d6 e6f7
 3/ 7<d5e6 4209  0.02     1038 d5e6 b8d6 e6f7 g8h8
 3/ 9 b7c6 3079  0.03     2061 b7c6 b8d6 d5e6
 4/10>b7c6 3479  0.05     3890 b7c6 b8d6 d5e6 g8h8
 4/10 d5d6 4920  0.07     6164 d5d6 b8d6 d1d6 f8d6 b7a8
 5/12<d5d6 4519  0.11    10872 d5d6 b8d6 d1d6 a8d8 b7a8
 5/12 d5d6 4519  0.12    11341 d5d6 f8d6 d1d6 b8d6 mtmt
 6/13<d5d6 4118  0.26    27317 d5d6 f8d6 d1d6 b8d6 b7a8
 6/13 d5d6 4118  0.27    28374 d5d6 b8d6 d1d6 a8b8 b7c6
 7/16 g2g3 3745  0.73    79348 g2g3 b8d6 d5e6 a8d8 b7a7 f7e6
 8/17 g2g3 3908  1.27   143213 g2g3 b8d6 d5e6 d6e7 e6f7 g8f7 b7d5 f7f6 g1g2 f6g6
 9/22 g2g3 4124  2.96   337344 g2g3 b8d6 d5e6 a8d8 f3g5 f7f6 b7f7 f8f7 g5f7
10/22>g2g3 4524  4.49   506369 g2g3 b8d6 d5e6 a8d8 f3g5 f7f6 b7f7 f8f7
10/23 Tg2g3  4523  6.01   685092 g2g3 b8d6 d5e6 d6b4 e6f7 g8h8 b7d5 a7a5 d5a8
nps=114049 h/p/q=24.00%/97.00%/0.00% q=75.0% bc=52% br=2.07
mp=1783/793/-1732/-1606
pawnx=6163 recapx=3172 qcheckx=0 checkx=19830 qfutilx=85919 onereplyx=1821
mthrx=1837 futilx=0 bmx=108
+ 8.97/21.00 90% 28/31 bf=2.10 h/p/q=34.58%/96.10%/0.00% 151.41 19440124
627101/5/128395 89656/47329/34151/638699/2291869/58061/0/11452
*** Problem   Solution(s): Qd8+ (bm)
[D] 6k1/p4p1p/1p3np1/2q5/4p3/4P1N1/PP3PPP/3Q2K1 w - - bm Qd8+
*** Problem   Solution(s): Qd8+ (bm)
-- ** -- ** -- ** BK **
BP -- ** -- ** BP ** BP
-- BP -- ** -- BN BP **
** -- BQ -- ** -- ** --
-- ** -- ** BP ** -- **
** -- ** -- WP -- WN --
WP WP -- ** -- WP WP WP
** -- ** WQ ** -- WK --
mv 1 stage 0, white to move, computer plays white
hash=445f9bbd6843834f
pawnhash=75838c3d8f725d6d
Alpha=-588 Beta=212 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 3 g3e2 104  0.00       54 g3e2
 2/ 5 d1d8 180  0.01      214 d1d8 g8g7 g3e2
 3/ 8>d1d8 580  0.01      365 d1d8 g8g7 g3e2 c5d5
 3/ 8 d1d8 1758  0.02      839 d1d8 g8g7 d8f6 g7f6 g3e4 f6e5 e4c5 b6c5
 4/ 9 d1d8 1758  0.03     1835 d1d8 g8g7 d8f6 g7f6 g3e4 f6e5 e4c5 b6c5
 5/11 d1d8 1758  0.04     3890 d1d8 g8g7 d8f6 g7f6 g3e4 f6e5 e4c5 b6c5
 6/12 d1d8 1801  0.07     8634 d1d8 g8g7 d8f6 g7f6 g3e4 f6f5 e4c5 b6c5
 7/15 d1d8 1990  0.14    18001 d1d8 g8g7 d8f6 g7f6 g3e4 f6e5 e4c5 b6c5 a2a3
 8/16 d1d8 1815  0.29    41164 d1d8 g8g7 d8f6 g7f6 g3e4 f6f5 e4c5 b6c5 g1f1 f5e4
 9/17 d1d8 1914  0.55    81245 d1d8 g8g7 d8f6 g7f6 g3e4 f6e7 e4c5 b6c5 g1f1 e7d6
g2g3
10/18 d1d8 1964  1.06   162615 d1d8 g8g7 d8f6 g7f6 g3e4 f6e5 e4c5 b6c5 f2f4 e5f5
g1f2 f5e4
11/22 d1d8 1961  2.50   382371 d1d8 g8g7 d8f6 g7f6 g3e4 f6e5 e4c5 b6c5 g1f1 c5c4
f1e2 e5e4
12/27 d1d8 2040  4.67   698526 d1d8 g8g7 d8f6 g7f6 g3e4 f6f5 e4c5 b6c5 g1f1 f5e5
f2f4 e5d5 f1e2
13/27 Td1d8  1978  6.00   886784 d1d8 g8g7 d8f6 g7f6 g3e4 f6e6 e4c5 b6c5 g2g3
e6e5 g1g2 e5e4
nps=147748 h/p/q=41.00%/92.00%/0.00% q=64.0% bc=54% br=1.71
mp=1364/911/-1914/-1557
pawnx=3312 recapx=2224 qcheckx=0 checkx=32884 qfutilx=60345 onereplyx=1469
mthrx=1837 futilx=0 bmx=312
+ 9.09/21.19 90% 29/32 bf=2.09 h/p/q=34.78%/95.97%/0.00% 157.41 20326908
635216/5/129133 92968/49553/35988/671583/2352214/59530/0/11764
*** Problem   Solution(s): Qe5+ Qf4 (bm)
[D] 8/p1q2pkp/2Pr2p1/8/P3Q3/6P1/5P1P/2R3K1 w - - bm Qe5+ Qf4
*** Problem   Solution(s): Qe5+ Qf4 (bm)
-- ** -- ** -- ** -- **
BP -- BQ -- ** BP BK BP
-- ** WP BR -- ** BP **
** -- ** -- ** -- ** --
WP ** -- ** WQ ** -- **
** -- ** -- ** -- WP --
-- ** -- ** -- WP -- WP
** -- WR -- ** -- WK --
mv 1 stage 0, white to move, computer plays white
hash=a2866215ee2dfbb7
pawnhash=f134e2ba0c5e4b71
Alpha=1691 Beta=2492 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 2 c1c5 2238  0.00       52 c1c5
 2/ 8 e4e5 2261  0.01      477 e4e5 g7h6
 3/12 e4e5 2205  0.02     1819 e4e5 f7f6 e5e4
 4/12 e4e5 1982  0.04     4246 e4e5 f7f6 e5f4 f6f5
 5/17 e4e5 2236  0.10    10588 e4e5 g7g8 e5e4 g8g7 e4e5 g7g8 e5e4 g8g7 e4e5 g7g8
e5e4 g8g7
 6/17>e4e5 2636  0.12    14300 e4e5 g7g8 e5e4 d6d2 e4e8 g8g7 c1b1
 6/19 e4e5 6007  0.24    31737 e4e5 g7f8 e5d6 c7d6 c6c7 f8g8
 7/22<e4e5 5606  0.49    66581 e4e5 g7f8 e5d6 c7d6 c6c7 h7h6 c1b1 d6c7
 7/22 e4e5 5606  0.50    66902 e4e5 g7f8 e5d6 c7d6 c6c7 h7h6 c1b1 d6c7
 8/23<e4e5 5205  1.02   144565 e4e5 g7f8 e5d6 c7d6 c6c7 f8g7 h2h3 g7h8
 8/23 e4e5 5205  1.04   146174 e4e5 g7f8 e5d6 c7d6 c6c7 f8g7 h2h3 g7h8
 9/23<e4e5 4804  1.68   229628 e4e5 g7f8 e5d6 c7d6 c6c7 f8g7 h2h3 f7f6 c7c8Q
d6g3
 9/23 e4f4 2717  2.43   343448 e4f4 f7f6 f4d6 c7d6 c6c7 d6d2 c7c8Q d2c1 c8c1
10/23 e4f4 3116  4.20   581895 e4f4 c7d8 f4d6 d8d6 c6c7 d6d2
11/24 Te4f4  2717  6.01   830464 e4f4 h7h6 f4e5 f7f6 e5d6 c7d6 c6c7 d6d2 c7c8Q
d2c1 c8c1 g6g5
nps=138249 h/p/q=36.00%/98.00%/0.00% q=70.0% bc=55% br=2.24
mp=1938/791/-1329/-26738600
pawnx=3521 recapx=2168 qcheckx=0 checkx=31753 qfutilx=58021 onereplyx=2408
mthrx=1837 futilx=0 bmx=163
+ 9.15/21.27 90% 30/33 bf=2.09 h/p/q=34.82%/96.03%/0.00% 163.42 21157372
641132/5/129468 96489/51721/37825/703336/2410235/61938/0/11927
*** Problem   Solution(s): Bg1 (bm)
[D] 7k/1b1r2p1/p6p/1p2qN2/3bP3/3Q4/P5PP/1B1R3K b - - bm Bg1
*** Problem   Solution(s): Bg1 (bm)
-- ** -- ** -- ** -- BK
** BB ** BR ** -- BP --
BP ** -- ** -- ** -- BP
** BP ** -- BQ WN ** --
-- ** -- BB WP ** -- **
** -- ** WQ ** -- ** --
WP ** -- ** -- ** WP WP
** WB ** WR ** -- ** WK
mv 1 stage 0, black to move, computer plays black
hash=835817e515bca1a4
pawnhash=e4664c991eb537f2
Alpha=1415 Beta=2216 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 6 b7e4 1816  0.00       91 b7e4
 2/ 7<b7e4 1415  0.01      278 b7e4 d3d4
 2/ 7 a6a5 137  0.01      557 a6a5 f5d4 d7d4
 3/11<a6a5 -263  0.02     1555 a6a5 f5d4 d7d4 d3d4
 3/11 h8h7 -275  0.04     2699 h8h7 f5d4 d7d4
 4/11>a6a5 125  0.07     6303 a6a5 d3g3 b7e4
 4/11 d4g1 1957  0.08     6980 d4g1 d3e2 e5h2
 5/11 d4g1 2070  0.16    12281 d4g1 h1g1 d7d3 b1d3 b7e4
 6/12 d4g1 2134  0.25    23425 d4g1 h1g1 d7d3 d1d3 b7e4 d3d8 h8h7
 7/14 d4g1 2466  0.40    42106 d4g1 h1g1 d7d3 b1d3 b7e4 d1e1 e5f5 e1e4
 8/16 d4g1 2518  0.79    88425 d4g1 h1g1 d7d3 b1d3 b7e4 d3e4 e5e4 f5d4
 9/16 d4g1 2574  1.61   193419 d4g1 h1g1 d7d3 b1d3 b7e4 d3e4 e5e4 d1d8 h8h7 f5d4
10/19 d4g1 2969  3.20   401856 d4g1 h1g1 d7d3 b1d3 b7e4 d3e4 e5e4 d1f1 h8g8
11/22 Td4g1  2964  6.00   758784 d4g1 d1g1 d7d3 b1d3 b7e4 d3e4 e5e4 f5g3 e4d4
g1f1
nps=126422 h/p/q=40.00%/99.00%/0.00% q=70.0% bc=53% br=2.07
mp=1014/26843596/-1764/-26738600
pawnx=413 recapx=1706 qcheckx=0 checkx=19173 qfutilx=124642 onereplyx=3397
mthrx=1855 futilx=0 bmx=168
+ 9.21/21.29 91% 31/34 bf=2.09 h/p/q=34.97%/96.12%/0.00% 169.42 21916156
644593/5/129360 96902/53427/39680/722509/2534877/65335/0/12095
*** Problem   Solution(s): Rxh7+ (bm)
[D] r3r2k/2R3pp/pp1q1p2/8/3P3R/7P/PP3PP1/3Q2K1 w - - bm Rxh7+
*** Problem   Solution(s): Rxh7+ (bm)
BR ** -- ** BR ** -- BK
** -- WR -- ** -- BP BP
BP BP -- BQ -- BP -- **
** -- ** -- ** -- ** --
-- ** -- WP -- ** -- WR
** -- ** -- ** -- ** WP
WP WP -- ** -- WP WP **
** -- ** WQ ** -- WK --
mv 1 stage 0, white to move, computer plays white
hash=ee5d318dfe3948a4
pawnhash=855df49fbffffaa2
Alpha=1515 Beta=2316 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 3 d1c2 2180  0.00       61 d1c2
 2/ 6 d1c1 2132  0.01      295 d1c1
 3/ 9>d1c1 2532  0.01      944 d1c1 e8e2
 3/ 9 Mh4h7  99975  0.02     1454 h4h7 h8h7 d1h5 h7g8 h5f7 g8h8 f7g7
nps=76526 h/p/q=32.00%/95.00%/0.00% q=82.0% bc=59% br=1.92 mp=1466/742/0/-125
pawnx=0 recapx=0 qcheckx=0 checkx=66 qfutilx=299 onereplyx=4 mthrx=1855 futilx=0
bmx=0
+ 9.03/20.94 91% 32/35 bf=2.09 h/p/q=34.89%/96.09%/0.00% 169.44 21917610
626217/5/129354 96902/53427/41535/722575/2535176/65339/0/12095
*** Problem   Solution(s): Re1+ (bm)
[D] 3r4/2p1rk2/1pQq1pp1/7p/1P1P4/P4P2/6PP/R1R3K1 b - - bm Re1+
*** Problem   Solution(s): Re1+ (bm)
-- ** -- BR -- ** -- **
** -- BP -- BR BK ** --
-- BP WQ BQ -- BP BP **
** -- ** -- ** -- ** BP
-- WP -- WP -- ** -- **
WP -- ** -- ** WP ** --
-- ** -- ** -- ** WP WP
WR -- WR -- ** -- WK --
mv 1 stage 0, black to move, computer plays black
hash=140e86349dc71812
pawnhash=320ba1f6fab92e
Alpha=-436 Beta=364 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 5 d6d4 -32  0.00       52 d6d4 g1h1
 2/ 6>d6c6 368  0.01      391 d6c6 c1c6 d8d4
 2/ 7 e7e1 4148  0.01      518 e7e1 g1f2 d6c6 c1c6 e1a1 c6c7
 3/10 e7e1 4533  0.02     1360 e7e1 c1e1 d6c6 a1c1
 4/11 e7e1 4179  0.04     3289 e7e1 c1e1 d6c6 a1c1 c6d6
 5/13 e7e1 4428  0.07     7139 e7e1 c1e1 d6c6 e1c1 c6d6
 6/17 e7e1 4500  0.16    17689 e7e1 c1e1 d6c6 e1e4 c6d6
 7/18 e7e1 4480  0.44    51255 e7e1 c1e1 d6c6 a1c1 c6b7 c1d1 c7c6
 8/21 e7e1 4495  0.96   117365 e7e1 c1e1 d6c6 a1c1 c6b7 c1c4 c7c6 e1e5
 9/23 e7e1 4619  2.21   280673 e7e1 c1e1 d6c6 e1d1 c6b7 a1a2 c7c6 d1e1
10/25 e7e1 4595  4.87   625010 e7e1 c1e1 d6c6 a1c1 c6b7 e1d1 c7c6 g1h1 f7g7 d1g1
11/25 Te7e1  4676  6.02   764928 e7e1 c1e1 d6c6 a1c1 c6b7 e1e4 d8e8 e4e7 e8e7
g1f1
nps=127022 h/p/q=39.00%/98.00%/0.00% q=68.0% bc=54% br=2.40
mp=1647/1244/-1400/-1050
pawnx=1126 recapx=2218 qcheckx=0 checkx=27666 qfutilx=74032 onereplyx=4043
mthrx=1862 futilx=0 bmx=203
+ 9.08/21.06 91% 33/36 bf=2.10 h/p/q=35.00%/96.14%/0.00% 175.46 22682538
630070/5/129274 98028/55645/43397/750241/2609208/69382/0/12298
*** Problem   Solution(s): Nxd4+ (bm)
[D] 2r5/2rk2pp/1pn1pb2/pN1p4/P2P4/1N2B3/nPR1KPPP/3R4 b - - bm Nxd4+
*** Problem   Solution(s): Nxd4+ (bm)
-- ** BR ** -- ** -- **
** -- BR BK ** -- BP BP
-- BP BN ** BP BB -- **
BP WN ** BP ** -- ** --
WP ** -- WP -- ** -- **
** WN ** -- WB -- ** --
BN WP WR ** WK WP WP WP
** -- ** WR ** -- ** --
mv 1 stage 0, black to move, computer plays black
hash=86e3432baa589eb6
pawnhash=22fdfc585d8d0746
Alpha=-300 Beta=500 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 5>c6d4 500  0.00       18 c6d4 b3d4
 1/ 6 c6d4 1987  0.00       74 c6d4 b3d4 c7c2 d4c2 c8c2
 2/ 8>c6d4 2387  0.01      170 c6d4 b3d4 c7c2 d4c2 c8c2
 2/ 8 c6d4 2387  0.01      357 c6d4 b3d4 c7c2 d4c2 c8c2
 3/ 9>c6d4 2787  0.01      514 c6d4 b3d4 c7c2 d4c2 c8c2
 3/10 c6d4 2787  0.02     1306 c6d4 b3d4 c7c2 d4c2 c8c2 e2f1 f6b2
 4/13<c6d4 2386  0.05     3651 c6d4 b3d4 c7c2 d4c2 c8c2 e2f1 f6b2 e3b6
 4/13 c6d4 1987  0.06     5041 c6d4 b3d4 c7c2 d4c2 c8c2
 5/16 c6d4 2047  0.14    13149 c6d4 b3d4 c7c2 d4c2 c8c2 e2f1 c2b2 e3b6 a2c3
 6/17 c6d4 2084  0.43    47003 c6d4 b5d4 c7c2 d4c2 c8c2 d1d2 c2b2 d2b2 a2c3 e2f1
c3a4
 7/19 c6d4 2182  0.94   108953 c6d4 b3d4 c7c2 d4c2 c8c2 d1d2 a2c1 e2d1 c2d2 d1d2
c1b3 d2c2 b3c5 b5c3 f6c3 e3c5
 8/21 c6d4 2028  1.91   229542 c6d4 b3d4 c7c2 d4c2 c8c2 d1d2 c2b2 d2b2 f6b2 e3b6
a2c3 b5c3 b2c3 e2e3
 9/23 c6d4 2038  3.76   439449 c6d4 b3d4 c7c2 d4c2 c8c2 d1d2 c2b2 d2b2 f6b2 e3b6
a2c3 e2d3 c3a4 b6a5
10/25 Tc6d4  2084  6.00   700416 c6d4 b3d4 c7c2 d4c2 c8c2 d1d2 a2c1 e2d1 c2d2
d1d2 c1b3 d2c2 b3c5 b2b3 f6e5 e3d4
nps=116717 h/p/q=35.00%/99.00%/0.00% q=72.0% bc=52% br=1.99
mp=1586/1835/-1205/-1161
pawnx=282 recapx=3745 qcheckx=0 checkx=16601 qfutilx=77227 onereplyx=139
mthrx=1862 futilx=0 bmx=0
+ 9.11/21.16 91% 34/37 bf=2.09 h/p/q=35.00%/96.22%/0.00% 181.46 23382954
631972/5/128859 98310/59390/45259/766842/2686435/69521/0/12298
*** Problem   Solution(s): Qd3 Rd8+ (bm)
[D] 4k3/p4prp/1p6/2b5/8/2Q3P1/P2R1PKP/4q3 w - - bm Qd3 Rd8+
*** Problem   Solution(s): Qd3 Rd8+ (bm)
-- ** -- ** BK ** -- **
BP -- ** -- ** BP BR BP
-- BP -- ** -- ** -- **
** -- BB -- ** -- ** --
-- ** -- ** -- ** -- **
** -- WQ -- ** -- WP --
WP ** -- WR -- WP WK WP
** -- ** -- BQ -- ** --
mv 1 stage 0, white to move, computer plays white
hash=376c11920a589e4a
pawnhash=520be90b2eafd81e
Alpha=-4665 Beta=-3864 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 4>c3g7 -3864  0.00        3 c3g7
 1/ 4 d2d8 1390  0.01       63 d2d8 e8d8 c3e1
 2/ 5 d2d8 1390  0.01      229 d2d8 e8d8 c3e1
 3/ 7 d2d8 1518  0.02      808 d2d8 e8d8 c3e1 d8c7
 4/11 d2d8 1527  0.04     2498 d2d8 e8d8 c3e1 d8d7
 5/13 d2d8 1609  0.10    11285 d2d8 e8e7 c3e1 e7d8 e1d1 d8e7 g3g4 mtmt
 6/14 d2d8 1639  0.26    29826 d2d8 e8d8 c3e1 f7f5 e1e5 g7f7
 7/18 d2d8 1498  0.63    76142 d2d8 e8d8 c3e1 g7g6 e1e4 d8c7
 8/20 d2d8 1660  1.44   174838 d2d8 e8d8 c3e1 c5d6 e1e4 d8c7 f2f4
 9/24 d2d8 1636  2.77   344344 d2d8 e8d8 c3e1 d8d7 e1e5 g7g6 f2f3
10/24 Td2d8  1594  6.00   765952 d2d8 e8d8 c3e1 f7f6 e1e6 c5d4 g2f3 g7c7
nps=127595 h/p/q=35.00%/99.00%/0.00% q=65.0% bc=61% br=2.08
mp=1075/676/-1353/-26738600
pawnx=46 recapx=587 qcheckx=0 checkx=60734 qfutilx=81799 onereplyx=2046
mthrx=1862 futilx=0 bmx=51
+ 9.13/21.24 92% 35/38 bf=2.09 h/p/q=35.00%/96.29%/0.00% 187.47 24148906
635498/5/128818 98356/59977/47121/827576/2768234/71567/0/12349
*** Problem   Solution(s): Na4 (bm)
[D] r1br2k1/pp2bppp/2nppn2/8/2P1PB2/2N2P2/PqN1B1PP/R2Q1R1K w - - bm Na4
*** Problem   Solution(s): Na4 (bm)
BR ** BB BR -- ** BK **
BP BP ** -- BB BP BP BP
-- ** BN BP BP BN -- **
** -- ** -- ** -- ** --
-- ** WP ** WP WB -- **
** -- WN -- ** WP ** --
WP BQ WN ** WB ** WP WP
WR -- ** WQ ** WR ** WK
mv 1 stage 0, white to move, computer plays white
hash=560289a1b7dd745d
pawnhash=75a6bba37f04ea8
Alpha=-1166 Beta=-365 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 4>f4d6 -365  0.00       27 f4d6
 1/ 4 c3b5 -192  0.00       88 c3b5
 2/ 5 f4d2 -223  0.01      188 f4d2
 3/ 6>f4d2 177  0.01      654 f4d2 f6e4 f3e4
 3/ 6 c3a4 4215  0.02      914 c3a4 b2a1 d1a1
 4/ 8<c3a4 3814  0.02     1274 c3a4 b2a1 d1a1 f6e4
 4/ 8 c3a4 3361  0.03     2030 c3a4 b2a1 c2a1 e6e5
 5/ 8 c3a4 3556  0.06     4529 c3a4 b2a1 d1a1 e6e5
 6/ 9>c3a4 3956  0.08     7091 c3a4 b2a1 d1a1 e6e5 f4e5 d6e5
 6/ 9 c3a4 3956  0.13    10807 c3a4 b2a1 d1a1 e6e5 f4e3
 7/14<c3a4 3555  0.25    21706 c3a4 b2a1 d1a1 e6e5 f4e3 a8b8
 7/14 c3a4 3469  0.47    42153 c3a4 b2a1 d1a1 e6e5 f4g5 c8e6 g5f6 e7f6
 8/14 c3a4 3631  0.81    74777 c3a4 b2a1 d1a1 f6h5 f4e3 c6e5
 9/16 c3a4 3658  1.62   150487 c3a4 b2a1 c2a1 f6e8 f4e3 c6e5 mtmt
10/16 c3a4 3696  3.04   292811 c3a4 b2a1 c2a1 g8h8 f4e3 d6d5 c4d5 e6d5 d1b3 d5e4
b3f7
11/20 Tc3a4  3613  6.01   588800 c3a4 b2a1 d1a1 f6e8 a1b2 e6e5 f4e3 e8f6
nps=97921 h/p/q=35.00%/97.00%/0.00% q=77.0% bc=43% br=2.14
mp=1842/1306/-1465/-1189
pawnx=840 recapx=2255 qcheckx=0 checkx=2172 qfutilx=83923 onereplyx=115
mthrx=1862 futilx=0 bmx=0
+ 9.18/21.21 92% 36/39 bf=2.10 h/p/q=35.00%/96.31%/0.00% 193.48 24737706
634300/5/127858 99196/62232/48983/829748/2852157/71682/0/12349
*** Problem   Solution(s): Rc8 (bm)
[D] 3r1r1k/1p4pp/p4p2/8/1PQR4/6Pq/P3PP2/2R3K1 b - - bm Rc8
*** Problem   Solution(s): Rc8 (bm)
-- ** -- BR -- BR -- BK
** BP ** -- ** -- BP BP
BP ** -- ** -- BP -- **
** -- ** -- ** -- ** --
-- WP WQ WR -- ** -- **
** -- ** -- ** -- WP BQ
WP ** -- ** WP WP -- **
** -- WR -- ** -- WK --
mv 1 stage 0, black to move, computer plays black
hash=19519f531dddeb
pawnhash=2406208cb05a810e
Alpha=-217 Beta=583 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 4 f6f5 206  0.00       95 f6f5
 2/ 7 b7b5 175  0.01      484 b7b5
 3/ 8>b7b5 575  0.02     1527 b7b5 c4d3
 3/ 8 d8c8 5880  0.02     2033 d8c8 d4h4
 4/ 8<d8c8 5479  0.04     3487 d8c8 d4h4 c8c4 c1c4
 4/ 9 d8c8 5477  0.05     5058 d8c8 e2e4 c8c4
 5/10<d8c8 5076  0.07     8163 d8c8 e2e4 c8c4 d4c4 h3g3 f2g3
 5/10 d8c8 5030  0.10    12041 d8c8 c4c8 f8c8 c1c8 h3c8 d4d8 c8d8
 6/13 d8c8 5031  0.17    20488 d8c8 c4c8 f8c8 c1c8 h3c8 d4d8 c8d8 a2a3 h8g8
 7/15 d8c8 5014  0.38    47185 d8c8 c4c8 f8c8 c1c8 h3c8 d4d8 c8d8 g1h2 h8g8 h2g2
 8/15 d8c8 5033  0.71    91474 d8c8 c4c8 f8c8 c1c8 h3c8 d4d8 c8d8 g1g2 d8d5 f2f3
b7b5
 9/19 d8c8 5033  1.24   165186 d8c8 c4c8 f8c8 c1c8 h3c8 e2e4 c8c1 d4d1 c1d1 g1g2
h8g8 mtmt
10/22 d8c8 5032  2.33   318968 d8c8 c4c8 f8c8 c1c8 h3c8 e2e4 c8c1 d4d1 c1d1 g1h2
h8g8 a2a3 g8f8
11/24 d8c8 5427  5.05   698020 d8c8 c4c8 f8c8 c1c8 h3c8 d4c4 c8c4 g1g2 c4b4 e2e4
h8g8
12/24 Td8c8  5695  6.00   845824 d8c8 c4c8 f8c8 c1c8 h3c8 e2e4 c8c1 g1g2 h8g8
a2a4 b7b5 g2h3
nps=140947 h/p/q=38.00%/98.00%/0.00% q=67.0% bc=43% br=1.90
mp=291/26843596/-1519/-26738600
pawnx=625 recapx=1824 qcheckx=0 checkx=22874 qfutilx=49495 onereplyx=5303
mthrx=1904 futilx=0 bmx=127
+ 9.25/21.27 92% 37/40 bf=2.09 h/p/q=35.08%/96.35%/0.00% 199.48 25583530
639588/5/128252 99821/64056/50887/852622/2901652/76985/0/12476
*** Problem   Solution(s): Ka5 Kc5 b7 (bm)
[D] 1k6/5RP1/1P6/1K6/6r1/8/8/8 w - - bm Ka5 Kc5 b7
*** Problem   Solution(s): Ka5 Kc5 b7 (bm)
-- BK -- ** -- ** -- **
** -- ** -- ** WR WP --
-- WP -- ** -- ** -- **
** WK ** -- ** -- ** --
-- ** -- ** -- ** BR **
** -- ** -- ** -- ** --
-- ** -- ** -- ** -- **
** -- ** -- ** -- ** --
mv 1 stage 0, white to move, computer plays white
hash=b44e4659ba4aad8f
pawnhash=2e1e141a3699e795
Alpha=3070 Beta=3871 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 5>b5c6 3871  0.00       67 b5c6
 1/ 5 f7f8 9066  0.00      108 f7f8 b8b7 g7g8R
 2/ 8<f7f8 8665  0.00      304 f7f8 b8b7 g7g8R g4g8
 2/ 8 f7f8 8665  0.01      308 f7f8 b8b7 g7g8R g4g8
 3/11 f7f8 8265  0.01     1590 f7f8 b8b7 f8f7 b7c8 b6b7 c8d8 f7f8 d8d7 b7b8Q
 4/12 f7f8 8265  0.01     2284 f7f8 b8b7 f8f7 b7b8 f7f8 b8b7 f8f7 b7b8 f7f8 b8b7
f8f7 b7b8
 5/13 f7f8 8265  0.02     4422 f7f8 b8b7 f8f7 b7b8 f7f8 b8b7 f8f7 b7b8 f7f8 b8b7
f8f7 b7b8
 6/15 f7f8 8265  0.06    14621 f7f8 b8b7 f8f7 b7b8 f7f8 b8b7 f8f7 b7b8 f7f8 b8b7
f8f7 b7b8
 7/18 f7f8 8265  0.12    28924 f7f8 b8b7 f8f7 b7b8 f7f8 b8b7 f8f7 b7b8 f7f8 b8b7
f8f7 b7b8
 8/20>f7f8 8665  0.42   109907 f7f8 b8b7 f8f7 b7b8 f7f8 b8b7 f8f7 b7b8 f7f8 b8b7
f8f7 b7b8
 8/20 b5a5 9495  0.46   121431 b5a5 b8c8 f7f8 c8d7 g7g8Q g4g8 f8g8 d7e7
 9/21 b5a5 9517  0.64   172298 b5a5 b8c8 f7f8 c8d7 g7g8Q g4g8 f8g8 d7c6 g8f8
10/24 b5a5 9535  0.93   255332 b5a5 b8c8 f7f8 c8d7 g7g8Q g4g8 f8g8 d7c6 g8c8
c6b7 c8f8
11/26 b5a5 9535  1.88   501200 b5a5 b8c8 f7f8 c8d7 g7g8Q g4g8 f8g8 d7c6 g8c8
c6b7 c8f8 b7c6
12/29 b5a5 9535  3.48   923814 b5a5 b8c8 f7f8 c8d7 g7g8Q g4g8 f8g8 d7c6 g8c8
c6b7 c8f8 b7c6 f8c8 c6b7 c8f8 b7c6 f8c8 c6b7 c8f8 b7c6 f8c8
13/30 Tb5a5  9535  6.02  1529857 b5a5 b8c8 f7f8 c8d7 g7g8Q g4g8 f8g8 d7c6 g8c8
c6b7 c8f8 b7c6 f8c8 c6b7 c8f8 b7c6 f8c8 c6b7 c8f8 b7c6 f8c8
nps=254171 h/p/q=31.00%/99.00%/0.00% q=69.0% bc=49% br=1.95 mp=101/88/0/0
pawnx=9756 recapx=1085 qcheckx=0 checkx=111983 qfutilx=45739 onereplyx=6968
mthrx=1969 futilx=0 bmx=8098
+ 9.34/21.49 92% 38/41 bf=2.09 h/p/q=34.98%/96.41%/0.00% 205.50 27113388
661302/5/131940 109577/65141/52856/964605/2947391/83953/0/20574
*** Problem   Solution(s): Ba5 (bm)
[D] r1b1r1k1/pp1n1pbp/1qp3p1/3p4/1B1P4/Q3PN2/PP2BPPP/R4RK1 w - - bm Ba5
*** Problem   Solution(s): Ba5 (bm)
BR ** BB ** BR ** BK **
BP BP ** BN ** BP BB BP
-- BQ BP ** -- ** BP **
** -- ** BP ** -- ** --
-- WB -- WP -- ** -- **
WQ -- ** -- WP WN ** --
WP WP -- ** WB WP WP WP
WR -- ** -- ** WR WK --
mv 1 stage 0, white to move, computer plays white
hash=48c4584a304d3bbf
pawnhash=2a6069df8a17dabb
Alpha=4 Beta=805 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 4 f3g5 527  0.00       49 f3g5
 2/ 4 b4e7 439  0.00      105 b4e7
 3/ 6 b4a5 489  0.01      667 b4a5 g7f8
 4/ 9 b4a5 489  0.03     1914 b4a5 g7f8 b2b4
 5/11>b4a5 889  0.04     3575 b4a5 g7f8 b2b4 f8b4 a5b6
 5/11 b4a5 4169  0.07     6180 b4a5 g7f8 a3c3 f8b4 a5b4
 6/11>b4a5 4569  0.10     9366 b4a5 g7f8 a3c3 f8b4 a5b4 b6d8
 6/11 b4a5 4920  0.16    15049 b4a5 g7f8 a3c3 f8b4 c3b4 b6b4 a5b4
 7/12 b4a5 4676  0.30    28754 b4a5 g7f8 a3c3 f8b4 c3b4 b6b4 a5b4 g8g7
 8/13 b4a5 4696  0.52    52896 b4a5 g7f8 a3c3 f8b4 c3b4 b6b4 a5b4 a7a5
 9/15 b4a5 4852  0.93    97322 b4a5 g7f8 a3c3 f8b4 c3b4 b6b4 a5b4 g8g7 b4a5
10/16 b4a5 4655  1.83   195128 b4a5 g7f8 a3c3 f8b4 c3b4 b6b4 a5b4 a7a5 b4d6 g8g7
11/18 b4a5 4492  4.75   513909 b4a5 g7f8 a3c3 f8b4 c3b4 b6b4 a5b4 d7f6 f3e5 c8f5
12/20>Tb4a5  4892  6.02   649270 b4a5 g7f8 a3c3 f8b4 c3b4 b6b4 a5b4 d7f6 e2d3
c8g4
nps=107798 h/p/q=40.00%/98.00%/0.00% q=73.0% bc=41% br=1.97
mp=1158/1114/-417/-1118
pawnx=184 recapx=903 qcheckx=0 checkx=1423 qfutilx=116419 onereplyx=46
mthrx=1969 futilx=0 bmx=0
+ 9.40/21.45 92% 39/42 bf=2.08 h/p/q=35.10%/96.45%/0.00% 211.52 27762658
661016/5/131252 109761/66044/54825/966028/3063810/83999/0/20574
*** Problem   Solution(s): Be7 Qxa8 (bm)
[D] r2q3k/p2P3p/1p3p2/3QP1r1/8/B7/P5PP/2R3K1 w - - bm Be7 Qxa8
*** Problem   Solution(s): Be7 Qxa8 (bm)
BR ** -- BQ -- ** -- BK
BP -- ** WP ** -- ** BP
-- BP -- ** -- BP -- **
** -- ** WQ WP -- BR --
-- ** -- ** -- ** -- **
WB -- ** -- ** -- ** --
WP ** -- ** -- ** WP WP
** -- WR -- ** -- WK --
mv 1 stage 0, white to move, computer plays white
hash=f0b8c54dab032993
pawnhash=e7d27e409fec3ca4
Alpha=257 Beta=1058 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 5<e5f6 257  0.00       65 e5f6
 1/ 6 a3e7 -516  0.00      194 a3e7
 2/ 6>a3e7 -115  0.01      242 a3e7 d8e7
 2/ 6 a3e7 110  0.01      400 a3e7 g5e5 e7f6
 3/ 6>a3e7 510  0.01      488 a3e7 g5e5 e7f6
 3/ 9 a3e7 3442  0.02     1375 a3e7 d8e7 d5a8 g5g8
 4/ 9>a3e7 3842  0.03     1826 a3e7 d8e7 d5a8 g5g8 a8a7
 4/12 a3e7 3843  0.04     3524 a3e7 d8e7 d5a8 g5g8 a8g8 h8g8 c1c8
 5/12>a3e7 4243  0.07     5349 a3e7 d8e7 d5a8 g5g8 a8g8 h8g8 c1c8
 5/13 a3e7 6501  0.11     9710 a3e7 d8e7 d5a8 g5g8 a8g8 h8g8 c1c8 g8f7
 6/17 a3e7 6894  0.29    29778 a3e7 h7h6 e7d8 a8d8 e5f6
 7/18>a3e7 7294  0.39    41348 a3e7 h7h6 e7d8 a8d8 e5f6 g5d5 c1c8
 7/18 a3e7 7295  0.70    82315 a3e7 d8e7 c1c8 e7d8 c8a8 f6e5 a8d8
 8/23>a3e7 7695  1.43   175176 a3e7 d8e7 c1c8 e7d8 c8a8 f6e5 a8d8
 8/23 a3e7 7784  2.21   269189 a3e7 d8e7 c1c8 h8g7
 9/25>a3e7 8184  3.18   378600 a3e7 d8e7 c1c8 h8g7 c8a8 e7d8 a8d8 f6e5 d8g8 g7h6
 9/25 Ta3e7  10931  6.01   747545 a3e7 d8e7 d5a8 h8g7 e5f6 e7f6 d7d8Q f6d8 a8d8
b6b5 d8d7
nps=124446 h/p/q=23.00%/99.00%/0.00% q=77.0% bc=59% br=2.29
mp=3206/26843596/-1082/-26738600
pawnx=5861 recapx=2882 qcheckx=0 checkx=40952 qfutilx=58478 onereplyx=3197
mthrx=2016 futilx=0 bmx=240
+ 9.40/21.53 93% 40/43 bf=2.09 h/p/q=34.81%/96.51%/0.00% 217.53 28510204
663028/5/131065 115622/68926/56841/1006980/3122288/87196/0/20814
*** Problem   Solution(s): dxc4 (bm)
[D] 3rb1k1/pq3pbp/4n1p1/3p4/2N5/2P2QB1/PP3PPP/1B1R2K1 b - - bm dxc4
*** Problem   Solution(s): dxc4 (bm)
-- ** -- BR BB ** BK **
BP BQ ** -- ** BP BB BP
-- ** -- ** BN ** BP **
** -- ** BP ** -- ** --
-- ** WN ** -- ** -- **
** -- WP -- ** WQ WB --
WP WP -- ** -- WP WP WP
** WB ** WR ** -- WK --
mv 1 stage 0, black to move, computer plays black
hash=72f3f7a8751f056c
pawnhash=36c5dad32a4fdfc6
Alpha=-2107 Beta=-1306 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 5>d5c4 -1306  0.00       13 d5c4
 1/ 5 e8a4 -884  0.00       69 e8a4
 2/ 8 e8c6 -908  0.01      250 e8c6
 3/ 9>e8c6 -507  0.01      778 e8c6 c4d6
 3/ 9 d5c4 3351  0.02     1577 d5c4 d1d8 b7f3 g2f3 e6d8
 4/10 d5c4 3062  0.04     3090 d5c4 d1d8 e6d8 f3b7 d8b7 f2f3
 5/10 d5c4 2901  0.08     7215 d5c4 d1d8 e6d8 f3e2 e8b5
 6/14 d5c4 2890  0.20    17979 d5c4 d1d8 e6d8 f3e2 e8b5 f2f4
 7/14 d5c4 2898  0.44    42600 d5c4 d1d8 e6d8 f3e2 e8c6 f2f4
 8/16 d5c4 2951  1.34   126127 d5c4 d1d8 e6d8 f3e2 d8e6 b1e4 e8c6
 9/19 d5c4 3159  3.04   299216 d5c4 d1d8 e6d8 f3e2 d8e6 e2c2 e8c6 f2f3
10/19 Td5c4  3212  6.00   603136 d5c4 d1d8 e6d8 f3e3 d8e6 e3d2 e8a4 f2f3
nps=100472 h/p/q=33.00%/98.00%/0.00% q=78.0% bc=50% br=2.21
mp=1974/1997/-1726/-2124
pawnx=792 recapx=1662 qcheckx=0 checkx=7668 qfutilx=107384 onereplyx=1117
mthrx=2017 futilx=0 bmx=0
+ 9.41/21.48 93% 41/44 bf=2.09 h/p/q=34.77%/96.55%/0.00% 223.53 29113340
661667/5/130243 116414/70588/58858/1014648/3229672/88313/0/20814
*** Problem   Solution(s): Qxa1 (bm)
[D] 7k/2p1b1pp/8/1p2P3/1P3r2/2P3Q1/1P5P/R4qBK b - - bm Qxa1
*** Problem   Solution(s): Qxa1 (bm)
-- ** -- ** -- ** -- BK
** -- BP -- BB -- BP BP
-- ** -- ** -- ** -- **
** BP ** -- WP -- ** --
-- WP -- ** -- BR -- **
** -- WP -- ** -- WQ --
-- WP -- ** -- ** -- WP
WR -- ** -- ** BQ WB WK
mv 1 stage 0, black to move, computer plays black
hash=6f800c878d8784e9
pawnhash=26a2e9616b605589
Alpha=-608 Beta=192 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 3 f1a1 -208  0.00       51 f1a1 g3f4 a1b2
 2/ 7 f1a1 -208  0.01      230 f1a1 g3f4 a1b2
 3/ 7>f1a1 192  0.01      330 f1a1 g3f4 a1b2
 3/ 7 f1a1 6246  0.01      864 f1a1 g3d3
 4/ 7<e7b4 5845  0.02     1524 e7b4 g3d3
 4/ 9 f1a1 5783  0.03     3544 f1a1 e5e6 a1b2 g3f4 b2c3
 5/10<f1a1 5382  0.05     5594 f1a1 e5e6 a1a8 g3g2 a8g2 h1g2 f4e4 h2h3
 5/10 f1a1 5379  0.07     7193 f1a1 g3g2 h8g8 g2d5 f4f7
 6/10 f1a1 5591  0.14    16138 f1a1 g3h3 a1b2 h3c8 f4f8 c8f8 e7f8 h2h3
 7/13 f1a1 5772  0.28    33596 f1a1 h2h3 f4e4 g3h2 c7c6
 8/14<f1a1 5371  0.54    70577 f1a1 h2h3 f4e4 g3h2 a1f1 h2g3 g7g6
 8/14 f1a1 5364  0.76   100221 f1a1 g3g2 h8g8 g2c6 a1b2 c6b5
 9/18>f1a1 5764  1.51   191537 f1a1 g3g2 h8g8 g2g3 a1a8 g3g2 a8g2 h1g2 e7b4 c3b4
f4b4
 9/18 f1a1 5765  1.78   229983 f1a1 g3g2 a1e1 g2a8 e7f8 a8d5 e1e4 d5e4 f4e4 g1d4
e4e1
10/20 f1a1 6162  3.56   464525 f1a1 h2h3 f4e4 g3h2 a1f1 h2g3
11/24 Tf1a1  6553  6.02   796672 f1a1 h2h3 f4e4 g3f2 e4e5 h1h2 e7b4 c3b4 a1g1
nps=132360 h/p/q=30.00%/98.00%/0.00% q=69.0% bc=53% br=2.00
mp=1568/26843596/-1501/-26738600
pawnx=5328 recapx=1362 qcheckx=0 checkx=27572 qfutilx=145483 onereplyx=5236
mthrx=2023 futilx=0 bmx=48
+ 9.44/21.53 93% 42/45 bf=2.09 h/p/q=34.67%/96.58%/0.00% 229.55 29910012
664667/5/130298 121742/71950/60881/1042220/3375155/93549/0/20862
*** Problem   Solution(s): Nb5 (bm)
[D] r1bqr1k1/pp1nb1p1/4p2p/3p1p2/3P4/P1N1PNP1/1PQ2PP1/3RKB1R w K - bm Nb5
*** Problem   Solution(s): Nb5 (bm)
BR ** BB BQ BR ** BK **
BP BP ** BN BB -- BP --
-- ** -- ** BP ** -- BP
** -- ** BP ** BP ** --
-- ** -- WP -- ** -- **
WP -- WN -- WP WN WP --
-- WP WQ ** -- WP WP **
** -- ** WR WK WB ** WR
mv 1 stage 0, white to move, computer plays white
hash=ef4a99b9b063e20e
pawnhash=54e964015918c8e7
Alpha=-887 Beta=-86 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 3>f3e5 -86  0.00       16 f3e5 d7e5 d4e5
 1/ 3 f1b5 121  0.00       73 f1b5
 2/ 4 f1e2 91  0.01      162 f1e2
 3/ 5<f1e2 -309  0.01      492 f1e2 d7e5 d4e5
 3/ 5 b2b4 -501  0.02     1132 b2b4 a7a5
 4/ 7 b2b4 -437  0.03     2298 b2b4 a7a5 d1b1
 5/12>b2b4 -36  0.05     3989 b2b4 a7a5 c2b2 g8h7
 5/12 f1e2 -36  0.06     4467 f1e2 e8f8 d1b1 e7a3
 6/14 f1b5 -62  0.24    22182 f1b5 a7a5 b5d7 c8d7 e1e2
 7/16 c3b5 337  0.90    82162 c3b5 d8a5 d1d2 a7a6 b2b4 a5b6 b5c7
 8/17>c3b5 737  1.83   157788 c3b5 d8a5 d1d2 a7a6 b2b4 a5b6 b5c7 e7b4 c7e8
 8/17 c3b5 1230  2.75   237400 c3b5 d8a5 d1d2 f5f4 c2g6 a5d8 e3f4
 9/20>c3b5 1630  5.30   462591 c3b5 d8a5 d1d2 e8f8 b5c7 a8b8 c7e6 f8f6
 9/20 Tc3b5  1678  6.02   532480 c3b5 d8a5 b2b4 e7b4 a3b4 a5b4 d1d2 e8e7 b5a7
a8a7 c2c8
nps=88437 h/p/q=39.00%/97.00%/0.00% q=79.0% bc=55% br=2.88
mp=1099/1152/-1299/-1616
pawnx=747 recapx=775 qcheckx=0 checkx=8631 qfutilx=130479 onereplyx=108
mthrx=2023 futilx=0 bmx=0
+ 9.43/21.50 93% 43/46 bf=2.11 h/p/q=34.76%/96.59%/0.00% 235.57 30442492
661793/5/129229 122489/72725/62904/1050851/3505634/93657/0/20862
*** Problem   Solution(s): Nxd4 (bm)
[D] r1b2rk1/pp2bppp/2n1pn2/q5B1/2BP4/2N2N2/PP2QPPP/2R2RK1 b - - bm Nxd4
*** Problem   Solution(s): Nxd4 (bm)
BR ** BB ** -- BR BK **
BP BP ** -- BB BP BP BP
-- ** BN ** BP BN -- **
BQ -- ** -- ** -- WB --
-- ** WB WP -- ** -- **
** -- WN -- ** WN ** --
WP WP -- ** WQ WP WP WP
** -- WR -- ** WR WK --
mv 1 stage 0, black to move, computer plays black
hash=737f1700c10056b8
pawnhash=eaedc0a46b82e9c9
Alpha=-773 Beta=27 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 3>c6d4 27  0.00        4 c6d4
 1/ 4 c6d4 680  0.00       58 c6d4 f3d4 a5g5
 2/ 5 c6d4 675  0.01      303 c6d4 e2d1
 3/10 c6d4 680  0.02      964 c6d4 f3d4 a5g5
 4/10 c6d4 382  0.05     3191 c6d4 f3d4 a5g5 e2d1
 5/11 c6d4 488  0.10     6773 c6d4 f3d4 a5g5 g1h1
 6/14 c6d4 554  0.28    23041 c6d4 f3d4 a5g5 f2f4 g5h5
 7/16 c6d4 468  0.70    60147 c6d4 f3d4 a5g5 f2f4 g5g4 c4b5
 8/17 c6d4 520  1.64   142958 c6d4 f3d4 a5g5 d4f3 g5f4 c1d1
 9/18 c6d4 539  3.54   311191 c6d4 f3d4 a5g5 f2f4 g5g4 e2g4 f6g4 g1h1
10/20 Tc6d4  618  6.06   540679 c6d4 f3d4 a5g5 d4f3 g5g4 h2h3 g4f5
nps=89192 h/p/q=30.00%/98.00%/0.00% q=79.0% bc=52% br=2.06
mp=1814/1140/-926/-1336
pawnx=43 recapx=2158 qcheckx=0 checkx=4735 qfutilx=134203 onereplyx=541
mthrx=2023 futilx=0 bmx=0
+ 9.45/21.47 93% 44/47 bf=2.11 h/p/q=34.66%/96.62%/0.00% 241.63 30983172
659216/5/128224 122532/74883/64927/1055586/3639837/94198/0/20862
*** Problem   Solution(s): Rb4 (bm)
[D] 1rbq1rk1/p1p1bppp/2p2n2/8/Q1BP4/2N5/PP3PPP/R1B2RK1 b - - bm Rb4
*** Problem   Solution(s): Rb4 (bm)
-- BR BB BQ -- BR BK **
BP -- BP -- BB BP BP BP
-- ** BP ** -- BN -- **
** -- ** -- ** -- ** --
WQ ** WB WP -- ** -- **
** -- WN -- ** -- ** --
WP WP -- ** -- WP WP WP
WR -- WB -- ** WR WK --
mv 1 stage 0, black to move, computer plays black
hash=d6b439384a456a86
pawnhash=a43212c7241079ac
Alpha=-467 Beta=333 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 9>e7b4 333  0.00      104 e7b4
 1/ 9 b8b7 491  0.01      225 b8b7 a4c6 d8d4
 2/ 9 c8e6 91  0.01      338 c8e6
 3/ 9<c8e6 -309  0.02      853 c8e6 a4c6 e6g4
 3/ 9 b8b7 -495  0.03     1504 b8b7 a4d1
 4/12 c8g4 -250  0.06     4222 c8g4 a4a7 f8e8
 5/12 c8f5 -206  0.10     7500 c8f5 a4a7 f6g4
 6/14>c8f5 194  0.18    14839 c8f5 a4a7 f6g4 a2a4 e7d6
 6/14 b8b4 2348  0.38    31273 b8b4 a4a7 b4c4 c1e3
 7/14 b8b4 2408  0.60    52296 b8b4 a4a7 b4c4 c1e3 f6d5 c3e4
 8/14 b8b4 2412  1.09   102496 b8b4 a4a7 b4c4 c1e3 e7b4 c3e2
 9/21 b8b4 2019  3.02   286848 b8b4 c4f7 f8f7 a4a7 f6e8 f1d1
10/21 Tb8b4  2242  6.00   581632 b8b4 c4f7 f8f7 a4a7 f6e8 c3e2 b4d4
nps=96939 h/p/q=33.00%/98.00%/0.00% q=77.0% bc=44% br=2.31
mp=1481/1601/-1478/-1336
pawnx=217 recapx=760 qcheckx=0 checkx=4968 qfutilx=121765 onereplyx=306
mthrx=2023 futilx=0 bmx=27
+ 9.46/21.46 93% 45/48 bf=2.11 h/p/q=34.62%/96.65%/0.00% 247.63 31564804
657600/5/127466 122749/75643/66950/1060554/3761602/94504/0/20889
*** Problem   Solution(s): Qxh7+ (bm)
[D] 2b3k1/4rrpp/p2p4/2pP2RQ/1pP1Pp1N/1P3P1P/1q6/6RK w - - bm Qxh7+
*** Problem   Solution(s): Qxh7+ (bm)
-- ** BB ** -- ** BK **
** -- ** -- BR BR BP BP
BP ** -- BP -- ** -- **
** -- BP WP ** -- WR WQ
-- BP WP ** WP BP -- WN
** WP ** -- ** WP ** WP
-- BQ -- ** -- ** -- **
** -- ** -- ** -- WR WK
mv 1 stage 0, white to move, computer plays white
hash=b316962478923ce5
pawnhash=7092dbb37831b985
Alpha=-1858 Beta=-1057 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 8 h4f5 -1857  0.00      108 h4f5
 2/ 8<h4f5 -2257  0.01      378 h4f5 b2b3
 2/ 8 e4e5 -2615  0.01      732 e4e5 d6e5
 3/10 e4e5 -2953  0.02     1563 e4e5 e7e5 g5e5 d6e5
 4/12 h5h6 -2753  0.06     4811 h5h6 b2b3 h1h2
 5/13>h5h6 -2352  0.10     7349 h5h6 b2b3 h1h2 b3c4 h6d6
 5/18 h5h6 -2084  0.19    15857 h5h6 g7g6 h4g6 h7g6 g5g6
 6/18<h5h6 -2484  0.35    31145 h5h6 c8h3 h6d6 b2b3 d6d8 e7e8 d8e8
 6/18 h5h6 -2929  0.50    42181 h5h6 e7d7 h4f5 g7g6 e4e5 b2e5
 7/18>h5h6 -2528  0.64    55975 h5h6 e7d7 h4f5 g7g6
 7/22 h5h7 -317  1.15   107709 h5h7 g8h7 g5h5 h7g8 h4g6 b2g2 g1g2 e7b7
 8/22>h5h7 83  1.23   115174 h5h7 g8h7 g5h5 h7g8 h4g6 b2g2 g1g2 c8h3 h5h3 e7e4
mtmt
 8/23 h5h7 7276  4.30   469223 h5h7 g8h7 g5h5 h7g8 h4g6 b2g2 g1g2 f7f8 h5h8 g8f7
 9/26>h5h7 7676  4.74   528729 h5h7 g8h7 g5h5 h7g8 h4g6 b2g2 g1g2 c8h3 h5h3 f7f8
g6e7
 9/26 Mh5h7  99972  4.77   532648 h5h7 g8h7 g5h5 h7g8 h4g6 b2g2 g1g2 c8h3 h5h3
f7f8 g6e7 g8f7 e7f5 f8h8
nps=111737 h/p/q=15.00%/98.00%/0.00% q=71.0% bc=53% br=2.33 mp=0/475/-804/-115
pawnx=3679 recapx=1709 qcheckx=0 checkx=27633 qfutilx=81380 onereplyx=3935
mthrx=2188 futilx=0 bmx=255
+ 9.45/21.55 93% 46/49 bf=2.12 h/p/q=34.22%/96.67%/0.00% 252.40 32097452
655050/5/127169 126428/77352/69138/1088187/3842982/98439/0/21144
*** Problem   Solution(s): Rxb6+ (bm)
[D] k4r2/1R4pb/1pQp1n1p/3P4/5p1P/3P2P1/r1q1R2K/8 w - - bm Rxb6+
*** Problem   Solution(s): Rxb6+ (bm)
BK ** -- ** -- BR -- **
** WR ** -- ** -- BP BB
-- BP WQ BP -- BN -- BP
** -- ** WP ** -- ** --
-- ** -- ** -- BP -- WP
** -- ** WP ** -- WP --
BR ** BQ ** WR ** -- WK
** -- ** -- ** -- ** --
mv 1 stage 0, white to move, computer plays white
hash=5e5da9aff47ab874
pawnhash=a354a72de5c1b843
Alpha=-498 Beta=302 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 7>e2c2 302  0.00        2 e2c2
 1/ 7 e2c2 302  0.01      111 e2c2
 2/ 8>e2c2 702  0.01      482 e2c2 h7d3
 2/ 8 b7b6 703  0.02      951 b7b6 c2c6 e2a2 c6a4 a2a4
 3/ 8>Mb7b6  99984  0.02      961 b7b6 c2c6 e2a2 c6a4 a2a4
nps=45762 h/p/q=35.00%/96.00%/0.00% q=81.0% bc=50% br=0.82 mp=409/0/0/-924
pawnx=8 recapx=13 qcheckx=0 checkx=90 qfutilx=54 onereplyx=7 mthrx=2188 futilx=0
bmx=0
+ 9.32/21.28 94% 47/50 bf=2.09 h/p/q=34.24%/96.66%/0.00% 252.42 32098412
641968/5/127162 126436/77365/71326/1088277/3843036/98446/0/21144
*** Problem   Solution(s): Rg4+ (bm)
[D] r1bq1r2/pp4k1/4p2p/3pPp1Q/3N1R1P/2PB4/6P1/6K1 w - - bm Rg4+
*** Problem   Solution(s): Rg4+ (bm)
BR ** BB BQ -- BR -- **
BP BP ** -- ** -- BK --
-- ** -- ** BP ** -- BP
** -- ** BP WP BP ** WQ
-- ** -- WN -- WR -- WP
** -- WP WB ** -- ** --
-- ** -- ** -- ** WP **
** -- ** -- ** -- WK --
mv 1 stage 0, white to move, computer plays white
hash=9020eb8d6a4e5d0d
pawnhash=c9c87ba832be1241
Alpha=-5377 Beta=-4576 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 4>d4f5 -4576  0.00       24 d4f5 e6f5
 1/ 4 f4f2 -4307  0.00       91 f4f2
 2/ 7 f4f1 -4307  0.01      499 f4f1
 3/10>f4f1 -3906  0.03     2077 f4f1 c8d7 g1h2
 3/10 f4g4 3052  0.04     3425 f4g4 d8g5 g4g5 h6g5 h5g5 g7f7
 4/11>f4g4 3452  0.05     4136 f4g4 d8g5 g4g5 h6g5 h5g5 g7f7 g5f6 f7g8
 4/11 f4g4 3556  0.09     8240 f4g4 d8g5 h4g5 f5g4 h5g6 g7h8 g6h6
 5/13>f4g4 3956  0.09     8685 f4g4 d8g5 h4g5 f5g4 h5g6 g7h8 g6h6
 5/13 f4g4 9023  0.19    21424 f4g4 d8g5 h4g5 f8f7 g5h6 g7f8
 6/18 f4g4 9422  0.43    52249 f4g4 d8g5 h4g5 f8f7 g5h6 g7h8 h5f7 f5g4
 7/22<f4g4 9021  1.14   137958 f4g4 d8g5 h4g5 f8f7 g5h6 g7h8 h5f7 f5g4 d4e6
 7/22 f4g4 9021  1.14   138029 f4g4 d8g5 h4g5 f8f7 g5h6 g7h8 h5f7 f5g4 d4e6
 8/23<f4g4 8620  3.34   415942 f4g4 d8g5 h4g5 f8f7 g5h6 g7h8 h5f7 c8d7 d4e6
 8/23 f4g4 8620  3.35   417477 f4g4 d8g5 h4g5 f8f7 g5h6 g7h8 h5f7 c8d7 d4e6
 9/24 Tf4g4  9019  6.01   757760 f4g4 d8g5 h4g5 f8h8 g5h6 g7f8 d4f5 c8d7 mtmt
nps=126020 h/p/q=33.00%/99.00%/0.00% q=73.0% bc=60% br=2.26
mp=2614/26843596/-1092/-26738600
pawnx=11162 recapx=1804 qcheckx=0 checkx=43958 qfutilx=87107 onereplyx=4548
mthrx=2189 futilx=0 bmx=98
+ 9.31/21.33 94% 48/51 bf=2.09 h/p/q=34.22%/96.71%/0.00% 258.43 32856172
644239/5/127136 137598/79169/73515/1132235/3930143/102994/0/21242
*** Problem   Solution(s): Re7 c4 (bm)
[D] r1k5/1p3q2/1Qpb4/3N1p2/5Pp1/3P2Pp/PPPK3P/4R3 w - - bm Re7 c4
*** Problem   Solution(s): Re7 c4 (bm)
BR ** BK ** -- ** -- **
** BP ** -- ** BQ ** --
-- WQ BP BB -- ** -- **
** -- ** WN ** BP ** --
-- ** -- ** -- WP BP **
** -- ** WP ** -- WP BP
WP WP WP WK -- ** -- WP
** -- ** -- WR -- ** --
mv 1 stage 0, white to move, computer plays white
hash=9188204aba12cfdb
pawnhash=1834e735c7b30af0
Alpha=2954 Beta=3755 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 7 d5c3 3369  0.00      194 d5c3
 2/ 7 d5b4 3048  0.01      764 d5b4
 3/10 d5c3 3047  0.02     2174 d5c3 c8b8
 4/12>d5c3 3447  0.06     6473 d5c3 a8a6 b6d4
 4/12 e1e7 3800  0.08     8055 e1e7 d6f4 g3f4 f7d5 b6b7
 5/13 e1e7 4199  0.12    14439 e1e7 f7e7 d5e7 d6e7 b6d4
 6/15<e1e7 3798  0.26    33012 e1e7 f7e7 d5e7 d6e7 b6d4 a8a2 d2c1
 6/15 e1e7 3798  0.28    34870 e1e7 f7e7 d5e7 d6e7 b6d4 a8a2 d2c1
 7/17>e1e7 4198  0.34    41532 e1e7 f7e7 d5e7 c8b8 e7f5 a8a2 d2c1
 7/17 e1e7 4198  0.60    76056 e1e7 f7e7 d5e7 c8b8 e7c6 b8c8 d2c1 b7c6 b6c6 c8b8
 8/19 e1e7 3801  1.39   178225 e1e7 f7e7 d5e7 d6e7 a2a3 e7b4 d2e2
 9/22 e1e7 4083  2.79   365767 e1e7 f7e7 d5e7 d6e7 a2a3 e7f8 d2c1 a8a7
10/24 e1e7 4376  5.39   716731 e1e7 f7e7 d5e7 d6e7 a2a3 a8a5 b6a5 e7a3 mtmt
11/25 Te1e7  3986  6.00   805889 e1e7 f7e7 d5e7 d6e7 b6e3 c8d7 e3d4 d7c8 d4e5
e7b4
nps=134292 h/p/q=40.00%/99.00%/0.00% q=66.0% bc=51% br=1.94
mp=2434/1724/-1077/-1009
pawnx=716 recapx=864 qcheckx=0 checkx=34411 qfutilx=74119 onereplyx=3438
mthrx=2189 futilx=0 bmx=122
+ 9.35/21.40 94% 49/52 bf=2.09 h/p/q=34.33%/96.75%/0.00% 264.43 33662060
647347/5/127298 138314/80033/75704/1166646/4004262/106432/0/21364
*** Problem   Solution(s): Re1 (bm)
[D] 6k1/6p1/p7/3Pn3/5p2/4rBqP/P4RP1/5QK1 b - - bm Re1
*** Problem   Solution(s): Re1 (bm)
-- ** -- ** -- ** BK **
** -- ** -- ** -- BP --
BP ** -- ** -- ** -- **
** -- ** WP BN -- ** --
-- ** -- ** -- BP -- **
** -- ** -- BR WB BQ WP
WP ** -- ** -- WR WP **
** -- ** -- ** WQ WK --
mv 1 stage 0, black to move, computer plays black
hash=3f77a12e5bd08d1f
pawnhash=ddb69dfa87712584
Alpha=1782 Beta=2583 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 6>e5f3 2583  0.00        9 e5f3
 1/ 6 e5f3 2583  0.00       90 e5f3 f2f3 e3f3
 2/ 6>e5f3 2983  0.01      162 e5f3 f2f3 e3f3
 2/ 8 e5f3 2983  0.01      426 e5f3 f2f3 e3f3
 3/ 9<e5f3 2582  0.02     1778 e5f3 f2f3 e3f3 f1f3 g3f3 g2f3 g7g6
 3/ 9 e5f3 2582  0.02     1801 e5f3 f2f3 e3f3 f1f3 g3f3 g2f3 g7g6
 4/10>e5f3 2982  0.04     3993 e5f3 f2f3 e3f3 f1f3 g3f3 g2f3 g7g6 a2a3
 4/10 e3e1 3597  0.05     4684 e3e1 f3d1
 5/12 e3e1 3593  0.09    11642 e3e1 f3h5 e1f1 f2f1 g3f3
 6/14 e3e1 3579  0.19    26688 e3e1 f3e2 e1f1 e2f1 g3f3 g2f3
 7/16 e3e1 3582  0.37    55950 e3e1 f3d1 e1f1 g1f1 g3d3
 8/20 e3e1 3647  0.70   109447 e3e1 f3e4 e1f1 g1f1 g8f7 e4b1 g7g6
 9/20 e3e1 4046  1.47   236055 e3e1 f3h5 e1f1 f2f1 g3e3 g1h2 e3d2 a2a4 d2d5
10/24 e3e1 4270  4.05   651163 e3e1 a2a3 e1f1 g1f1 e5f3 f2f3 g3g5 mtmt
11/24 Te3e1  4348  6.01   968704 e3e1 f3e2 e1f1 e2f1 f4f3 a2a4 f3g2 f1g2 e5c4
f2f5 g3d6
nps=161102 h/p/q=34.00%/99.00%/0.00% q=67.0% bc=54% br=1.90
mp=1609/26843606/-1698/-26738600
pawnx=16719 recapx=2961 qcheckx=0 checkx=42685 qfutilx=108278 onereplyx=4738
mthrx=2191 futilx=0 bmx=858
+ 9.38/21.45 94% 50/53 bf=2.09 h/p/q=34.32%/96.79%/0.00% 270.45 34630764
653411/5/128050 155033/82994/77895/1209331/4112540/111170/0/22222
*** Problem   Solution(s): Qh1+ (bm)
[D] r3kr2/1pp4p/1p1p4/7q/4P1n1/2PP2Q1/PP4P1/R1BB2K1 b q - bm Qh1+
*** Problem   Solution(s): Qh1+ (bm)
BR ** -- ** BK BR -- **
** BP BP -- ** -- ** BP
-- BP -- BP -- ** -- **
** -- ** -- ** -- ** BQ
-- ** -- ** WP ** BN **
** -- WP WP ** -- WQ --
WP WP -- ** -- ** WP **
WR -- WB WB ** -- WK --
mv 1 stage 0, black to move, computer plays black
hash=c5a2b0eb0ee8c033
pawnhash=f939f02c0929bf47
Alpha=904 Beta=1705 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 5>Mh5h1  99993  0.00       89 h5h1 g1h1 f8f1
nps=44500 h/p/q=0.00%/89.00%/0.00% q=87.0% bc=54% br=0.00 mp=0/0/-696/-284
pawnx=0 recapx=1 qcheckx=0 checkx=4 qfutilx=20 onereplyx=2 mthrx=2191 futilx=0
bmx=0
+ 9.22/21.15 94% 51/54 bf=2.09 h/p/q=33.69%/96.65%/0.00% 270.45 34630852
641312/5/128049 155033/82995/80086/1209335/4112560/111172/0/22222
*** Problem   Solution(s): Qxg7+ (bm)
[D] r3r1k1/pp1q1pp1/4b1p1/3p2B1/3Q1R2/8/PPP3PP/4R1K1 w - - bm Qxg7+
*** Problem   Solution(s): Qxg7+ (bm)
BR ** -- ** BR ** BK **
BP BP ** BQ ** BP BP --
-- ** -- ** BB ** BP **
** -- ** BP ** -- WB --
-- ** -- WQ -- WR -- **
** -- ** -- ** -- ** --
WP WP WP ** -- ** WP WP
** -- ** -- WR -- WK --
mv 1 stage 0, white to move, computer plays white
hash=cfdabaa9053eda4d
pawnhash=e85e9d85a1b9584e
Alpha=-1325 Beta=-524 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 5 c2c3 -892  0.00      121 c2c3
 2/ 7 b2b3 -917  0.01      388 b2b3
 3/ 9 f4h4 -983  0.02     1825 f4h4 a8c8
 4/11 f4f1 -1188  0.12    10758 f4f1 f7f6 g5d2
 5/13 f4f1 -1111  0.27    26870 f4f1 e6f5 c2c4 d5c4 d4c4
 6/14 f4f1 -1309  0.89    92417 f4f1 a8c8 c2c3 f7f6
 7/17>f4f1 -908  1.55   164098 f4f1 e6f5 d4d1 e8e1 f1e1 a7a5
 7/17 Md4g7  99981  1.59   169295 d4g7 g8g7 g5f6 g7g8 f4h4 d7a4 h4a4 d5d4 mtmt
nps=106408 h/p/q=38.00%/98.00%/0.00% q=76.0% bc=62% br=2.65 mp=326/941/-833/-971
pawnx=43 recapx=709 qcheckx=0 checkx=3445 qfutilx=37081 onereplyx=629 mthrx=2242
futilx=0 bmx=0
+ 9.18/21.07 94% 52/55 bf=2.10 h/p/q=33.76%/96.67%/0.00% 272.04 34800148
632730/5/127922 155076/83704/82328/1212780/4149641/111801/0/22222
*** Problem   Solution(s): Bxf2+ (bm)
[D] r1bqk2r/pppp1ppp/5n2/2b1n3/4P3/1BP3Q1/PP3PPP/RNB1K1NR b KQkq - bm Bxf2+
*** Problem   Solution(s): Bxf2+ (bm)
BR ** BB BQ BK ** -- BR
BP BP BP BP ** BP BP BP
-- ** -- ** -- BN -- **
** -- BB -- BN -- ** --
-- ** -- ** WP ** -- **
** WB WP -- ** -- WQ --
WP WP -- ** -- WP WP WP
WR WN WB -- WK -- WN WR
mv 1 stage 0, black to move, computer plays black
hash=e219d70b853f06c2
pawnhash=8caa93e6dd107ffb
Alpha=132 Beta=933 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 4>f6e4 933  0.00       27 f6e4
 1/ 4 f6g4 1031  0.00       72 f6g4
 2/ 6>f6g4 1431  0.01      217 f6g4 b3f7 e5f7
 2/ 7 c5f2 6219  0.01      455 c5f2 g3f2 e5d3 e1e2
 3/ 7 c5f2 6219  0.02      976 c5f2 g3f2 e5d3 e1f1 d3f2
 4/10 c5f2 6219  0.03     2126 c5f2 g3f2 e5d3 e1e2 d3f2 e2f2
 5/11 c5f2 6438  0.05     4326 c5f2 g3f2 e5d3 e1e2 d3f2 e2f2 f6e4 f2f1
 6/15 c5f2 6724  0.22    20723 c5f2 e1f2 f6e4 f2f1 e4g3 h2g3 e8g8 h1h6
 7/18 c5f2 6598  0.84    77063 c5f2 g3f2 e5d3 e1e2 d3f2 e2f2 f6e4 f2f1 d8f6 g1f3
e8g8
 8/18 c5f2 6388  1.32   125046 c5f2 g3f2 e5d3 e1e2 d3f2 e2f2 f6e4 f2f1 d8f6 g1f3
e8f8
 9/19 c5f2 6572  2.17   212427 c5f2 g3f2 e5d3 e1e2 d3f2 e2f2 f6e4 f2e3 d8g5
10/30 c5f2 6392  5.45   576731 c5f2 g3f2 e5d3 e1e2 d3f2 e2f2 f6e4 f2f1 e8f8 c1f4
d8f6
11/30 Tc5f2  6763  6.00   630784 c5f2 g3f2 e5d3 e1e2 d3f2 e2f2 f6e4 f2f3 d8h4
c1e3 e8f8
nps=105061 h/p/q=29.00%/98.00%/0.00% q=71.0% bc=55% br=2.10 mp=88/573/-1860/-771
pawnx=137 recapx=853 qcheckx=0 checkx=20676 qfutilx=83801 onereplyx=827
mthrx=2242 futilx=0 bmx=70
+ 9.21/21.23 94% 53/56 bf=2.10 h/p/q=33.68%/96.70%/0.00% 278.05 35430932
632695/5/127429 155213/84557/84570/1233456/4233442/112628/0/22292
*** Problem   Solution(s): Rf8+ (bm)
[D] r3q1kr/ppp5/3p2pQ/8/3PP1b1/5R2/PPP3P1/5RK1 w - - bm Rf8+
*** Problem   Solution(s): Rf8+ (bm)
BR ** -- ** BQ ** BK BR
BP BP BP -- ** -- ** --
-- ** -- BP -- ** BP WQ
** -- ** -- ** -- ** --
-- ** -- WP WP ** BB **
** -- ** -- ** WR ** --
WP WP WP ** -- ** WP **
** -- ** -- ** WR WK --
mv 1 stage 0, white to move, computer plays white
hash=1924eef18913f4
pawnhash=a09e4aca553dadb8
Alpha=-2365 Beta=-1564 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 6<h6h8 -2365  0.00      221 h6h8 g8h8 e4e5
 1/ 6 f3f8 -3645  0.01      477 f3f8 e8f8 h6h8 g8h8 f1f8
 2/ 7>f3f8 -3244  0.01      489 f3f8 e8f8 h6h8 g8h8 f1f8 a8f8 d4d5
 2/ 7 Mf3f8  99986  0.01      584 f3f8 e8f8 h6h8 g8h8 f1f8 a8f8 d4d5
nps=48667 h/p/q=65.00%/95.00%/0.00% q=87.0% bc=59% br=0.25 mp=0/480/0/-754
pawnx=0 recapx=0 qcheckx=0 checkx=37 qfutilx=25 onereplyx=11 mthrx=2242 futilx=0
bmx=0
+ 9.09/20.98 94% 54/57 bf=2.06 h/p/q=34.23%/96.67%/0.00% 278.06 35431516
621606/5/127425 155213/84557/86812/1233493/4233467/112639/0/22292
*** Problem   Solution(s): Qd1+ (bm)
[D] 8/8/2R5/1p2qp1k/1P2r3/2PQ2P1/5K2/8 w - - bm Qd1+
*** Problem   Solution(s): Qd1+ (bm)
-- ** -- ** -- ** -- **
** -- ** -- ** -- ** --
-- ** WR ** -- ** -- **
** BP ** -- BQ BP ** BK
-- WP -- ** BR ** -- **
** -- WP WQ ** -- WP --
-- ** -- ** -- WK -- **
** -- ** -- ** -- ** --
mv 1 stage 0, white to move, computer plays white
hash=360c8317aee7dfd8
pawnhash=1cc270c3a77d72f
Alpha=1448 Beta=2249 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 4 d3f3 1868  0.00       57 d3f3 e4g4
 2/ 7 c3c4 1763  0.01      505 c3c4
 3/ 9>d3f3 2163  0.02     1625 d3f3 h5g5 f2g2 e4e2 f3e2
 3/ 9 c6c5 3449  0.03     2474 c6c5 e5g7 c5f5
 4/10>c6c5 3849  0.03     2967 c6c5 e5g7 c5f5
 4/12 c6c5 4218  0.07     7511 c6c5 e5e6 c5b5
 5/14>c6c5 4618  0.13    15313 c6c5 e5e6 f2f3 h5g6 d3b5
 5/14 d3d1 8636  0.16    19604 d3d1 h5g5 d1d2 f5f4 c6c5 e4e2 d2e2
 6/16 d3d1 9004  0.26    33391 d3d1 h5g5 d1d2 f5f4 c6c5 e5c5 b4c5 e4a4
 7/20>d3d1 9404  0.37    50583 d3d1 h5g5 d1d2 f5f4 c6c5 e5c5 b4c5 e4a4 d2d5 g5f6
 7/20 d3d1 10522  0.71   101039 d3d1 h5g5 d1d2 e4f4 g3f4 e5f4 d2f4 g5f4 c6c5
f4e4 c5b5 f5f4 f2e2 f4f3 e2d2
 8/23 d3d1 10522  1.37   202278 d3d1 h5g5 d1d2 e4f4 g3f4 e5f4 d2f4 g5f4 c6c5
f4e4 c5b5 f5f4 f2e2 f4f3 e2d2 f3f2
 9/25 d3d1 10525  2.84   429091 d3d1 h5g5 d1d2 e4f4 g3f4 e5f4 d2f4 g5f4 c6c5
f4e4 c5b5 f5f4 f2e2 f4f3 e2f1 e4d3
10/28>d3d1 10925  4.82   728774 d3d1 h5g5 d1d2 e4f4 g3f4 e5f4 d2f4 g5f4 c6c5
f4e4 c5b5 f5f4 f2e2 f4f3 e2f1 e4d3
10/28 Td3d1  10925  6.01   907264 d3d1 h5g5 d1d2 e4f4 g3f4 e5f4 d2f4 g5f4 c6c5
f4e4 c5b5 f5f4 f2e2 f4f3 e2f1 e4d3
nps=150959 h/p/q=25.00%/99.00%/0.00% q=65.0% bc=60% br=2.26
mp=88/88/-138/-26738600
pawnx=1563 recapx=3656 qcheckx=0 checkx=89915 qfutilx=70926 onereplyx=6096
mthrx=2253 futilx=0 bmx=874
+ 9.10/21.10 94% 55/58 bf=2.07 h/p/q=34.07%/96.71%/0.00% 284.07 36338780
626531/5/127923 156776/88213/89065/1323408/4304393/118735/0/23166
*** Problem   Solution(s): Nd5 (bm)
[D] r1b2rk1/2p1qnbp/p1pp2p1/5p2/2PQP3/1PN2N1P/PB3PP1/3R1RK1 w - - bm Nd5
*** Problem   Solution(s): Nd5 (bm)
BR ** BB ** -- BR BK **
** -- BP -- BQ BN BB BP
BP ** BP BP -- ** BP **
** -- ** -- ** BP ** --
-- ** WP WQ WP ** -- **
** WP WN -- ** WN ** WP
WP WB -- ** -- WP WP **
** -- ** WR ** WR WK --
mv 1 stage 0, white to move, computer plays white
hash=cec0bafb4346ade2
pawnhash=ff967924e3926608
Alpha=324 Beta=1125 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 9>e4f5 1125  0.00       76 e4f5
 1/ 9 d4g7 1126  0.01      172 d4g7 g8g7 c3d5
 2/ 9>d4g7 1526  0.01      195 d4g7 g8g7 c3d5
 2/11 d4g7 2361  0.01      378 d4g7 g8g7 c3d5 e7e5 b2e5 d6e5 d5c7
 3/13 d4g7 2359  0.02     1610 d4g7 g8g7 c3d5 e7e5 f3e5 d6e5 d5c7
 4/15 d4g7 2359  0.06     4819 d4g7 g8g7 c3d5 e7e5 f3e5 d6e5 d5c7
 5/18>d4g7 2759  0.16    14198 d4g7 g8g7 c3d5 e7e5 f3e5 d6e5 d5c7 f5e4
 5/18 c3d5 6541  0.17    15381 c3d5 g7d4 d5e7 g8g7 b2d4 g7h6 e4f5 c8f5 e7c6
 6/18 c3d5 6541  0.36    33738 c3d5 g7d4 d5e7 g8g7 b2d4 g7h6 e4f5 c8f5 e7c6
 7/18 c3d5 6540  0.80    76567 c3d5 g7d4 d5e7 g8g7 b2d4 g7h6 e4f5 c8f5 d4e3 h6h5
 8/22 c3d5 6541  1.83   183695 c3d5 g7d4 d5e7 g8g7 f3d4 g7h6 e4f5 g6f5 e7c8
 9/22 c3d5 6938  3.24   341306 c3d5 g7d4 d5e7 g8g7 f3d4 g7h6 e4f5 c8f5 e7f5 g6f5
d4f5 h6g5
10/24 Tc3d5  7031  6.00   617472 c3d5 g7d4 d5e7 g8g7 f3d4 g7h6 e4f5 g6f5 e7c8
a8c8 d4c6 h6g5 d1d6
nps=102861 h/p/q=33.00%/97.00%/0.00% q=80.0% bc=51% br=2.03
mp=2897/1252/-1398/-1505
pawnx=1318 recapx=2908 qcheckx=0 checkx=12450 qfutilx=83416 onereplyx=796
mthrx=2260 futilx=0 bmx=0
+ 9.12/21.15 94% 56/59 bf=2.06 h/p/q=34.05%/96.71%/0.00% 290.07 36956252
626377/5/127405 158094/91121/91325/1335858/4387809/119531/0/23166
*** Problem   Solution(s): Qh8+ (bm)
[D] rn1qr1k1/1p2np2/2p3p1/8/1pPb4/7Q/PB1P1PP1/2KR1B1R w - - bm Qh8+
*** Problem   Solution(s): Qh8+ (bm)
BR BN -- BQ BR ** BK **
** BP ** -- BN BP ** --
-- ** BP ** -- ** BP **
** -- ** -- ** -- ** --
-- BP WP BB -- ** -- **
** -- ** -- ** -- ** WQ
WP WB -- WP -- WP WP **
** -- WK WR ** WB ** WR
mv 1 stage 0, white to move, computer plays white
hash=802f778ed63f31be
pawnhash=2dba56c9e6fd7add
Alpha=-4806 Beta=-4005 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 6>Mh3h8  99993  0.00      182 h3h8 d4h8 h1h8
nps=45500 h/p/q=40.00%/84.00%/0.00% q=86.0% bc=51% br=0.00 mp=164/546/-564/-393
pawnx=0 recapx=0 qcheckx=0 checkx=13 qfutilx=75 onereplyx=3 mthrx=2260 futilx=0
bmx=0
+ 8.98/20.90 95% 57/60 bf=2.06 h/p/q=34.15%/96.50%/0.00% 290.07 36956432
615941/5/127403 158094/91121/93585/1335871/4387884/119534/0/23166
*** Problem   Solution(s): Qf7+ (bm)
[D] 3qrbk1/ppp1r2n/3pP2p/3P4/2P4P/1P3Q2/PB6/R4R1K w - - bm Qf7+
*** Problem   Solution(s): Qf7+ (bm)
-- ** -- BQ BR BB BK **
BP BP BP -- BR -- ** BN
-- ** -- BP WP ** -- BP
** -- ** WP ** -- ** --
-- ** WP ** -- ** -- WP
** WP ** -- ** WQ ** --
WP WB -- ** -- ** -- **
WR -- ** -- ** WR ** WK
mv 1 stage 0, white to move, computer plays white
hash=4706bd5c1d2b37d7
pawnhash=c55d72d3c54f25a6
Alpha=-1738 Beta=-937 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 4>Mf3f7  99993  0.00       32 f3f7 e7f7 e6f7
nps=16000 h/p/q=0.00%/88.00%/0.00% q=81.0% bc=51% br=0.00 mp=0/191/0/-390
pawnx=1 recapx=0 qcheckx=0 checkx=3 qfutilx=7 onereplyx=1 mthrx=2260 futilx=0
bmx=0
+ 8.85/20.62 95% 58/61 bf=2.06 h/p/q=33.59%/96.36%/0.00% 290.08 36956464
605844/5/127403 158095/91121/95845/1335874/4387891/119535/0/23166
*** Problem   Solution(s): Rxg3+ (bm)
[D] 6r1/3Pn1qk/p1p1P1rp/2Q2p2/2P5/1P4P1/P3R2P/5RK1 b - - bm Rxg3+
*** Problem   Solution(s): Rxg3+ (bm)
-- ** -- ** -- ** BR **
** -- ** WP BN -- BQ BK
BP ** BP ** WP ** BR BP
** -- WQ -- ** BP ** --
-- ** WP ** -- ** -- **
** WP ** -- ** -- WP --
WP ** -- ** WR ** -- WP
** -- ** -- ** WR WK --
mv 1 stage 0, black to move, computer plays black
hash=6849871aa8cd936
pawnhash=c6320a5e7963cb55
Alpha=-3625 Beta=-2824 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 3>g6e6 -2824  0.00       27 g6e6
 1/ 3 g7f6 601  0.01       95 g7f6
 2/ 6 g8d8 556  0.01      244 g8d8
 3/10<g8d8 155  0.01      719 g8d8 f1f5 e7f5
 3/10 g6g3 -807  0.02     1436 g6g3 g1h1 g3g4
 4/11 g6g3 -831  0.04     2871 g6g3 g1h1 g3g4 a2a3
 5/12>g6g3 -430  0.09     7138 g6g3 g1h1 g3f3 f1f3 g7a1 e2e1
 5/12 g6g3 828  0.11     9212 g6g3 g1h1 g3h3 a2a3 h3b3
 6/15<g6g3 427  0.32    29920 g6g3 g1h1 g3h3 a2a3 h3b3 a3a4
 6/15 g8a8 -429  0.51    47696 g8a8 g1h1 g6g3 h2g3 g7g3 e2e1
 7/18 g6g3 -828  1.03    99812 g6g3 g1h1 g3f3 f1d1 g8d8 b3b4
 8/20 g6g3 -639  1.96   188856 g6g3 g1h1 g3f3 f1d1 f3d3 d1f1 f5f4
 9/23 Tg6g3  -766  6.02   593920 g6g3 g1h1 g3d3 f1g1 g7g1 c5g1 g8g1 h1g1 f5f4
c4c5
nps=98723 h/p/q=24.00%/98.00%/0.00% q=80.0% bc=52% br=2.73
mp=4269/3200/-1423/-1605
pawnx=2067 recapx=1810 qcheckx=0 checkx=14573 qfutilx=110549 onereplyx=2531
mthrx=2260 futilx=0 bmx=0
+ 8.85/20.66 95% 59/62 bf=2.08 h/p/q=33.44%/96.39%/0.00% 296.09 37550384
605651/5/126820 160162/92931/98105/1350447/4498440/122066/0/23166
*** Problem   Solution(s): Nxf7 (bm)
[D] r1brnbk1/ppq2pp1/4p2p/4N3/3P4/P1PB1Q2/3B1PPP/R3R1K1 w - - bm Nxf7
*** Problem   Solution(s): Nxf7 (bm)
BR ** BB BR BN BB BK **
BP BP BQ -- ** BP BP --
-- ** -- ** BP ** -- BP
** -- ** -- WN -- ** --
-- ** -- WP -- ** -- **
WP -- WP WB ** WQ ** --
-- ** -- WB -- WP WP WP
WR -- ** -- WR -- WK --
mv 1 stage 0, white to move, computer plays white
hash=14200159eec8803c
pawnhash=efbe8209d2f4e815
Alpha=454 Beta=1255 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 4 g1h1 1149  0.00       82 g1h1
 2/ 5 f3d1 1133  0.01      281 f3d1
 3/ 6>f3d1 1533  0.01      564 f3d1 e8d6
 3/ 8 e5f7 1847  0.03     1786 e5f7 d8d5
 4/ 8>e5f7 2247  0.04     2243 e5f7 d8d5 f7h6 g7h6 d2h6
 4/10 e5f7 2258  0.06     4482 e5f7 d8d5 f7e5
 5/13<e5f7 1857  0.12    10422 e5f7 d8d5 f7e5 e8d6
 5/13 e5f7 1786  0.19    17533 e5f7 d8d5 d3e4 d5b5
 6/14 e5f7 2057  0.40    36427 e5f7 d8d5 d3e4 d5a5 c3c4
 7/15 e5f7 2231  0.85    82465 e5f7 d8d5 f7e5 e8d6 a1b1
 8/21 e5f7 2222  2.63   251124 e5f7 d8d5 d3g6 e8d6 f7e5
 9/24 Te5f7  1934  6.02   580608 e5f7 d8d5 f7e5 e8d6 a1b1
nps=96511 h/p/q=31.00%/98.00%/0.00% q=76.0% bc=58% br=2.49
mp=3631/715/-837/-1728
pawnx=97 recapx=1022 qcheckx=0 checkx=17766 qfutilx=165002 onereplyx=1197
mthrx=2260 futilx=0 bmx=0
+ 8.86/20.71 95% 60/63 bf=2.08 h/p/q=33.40%/96.41%/0.00% 302.11 38130992
605254/5/126216 160259/93953/100365/1368213/4663442/123263/0/23166
*** Problem   Solution(s): g4+ (bm)
[D] 8/6pp/3q1p2/3n1k2/1P6/3NQ2P/5PP1/6K1 w - - bm g4+
*** Problem   Solution(s): g4+ (bm)
-- ** -- ** -- ** -- **
** -- ** -- ** -- BP BP
-- ** -- BQ -- BP -- **
** -- ** BN ** BK ** --
-- WP -- ** -- ** -- **
** -- ** WN WQ -- ** WP
-- ** -- ** -- WP WP **
** -- ** -- ** -- WK --
mv 1 stage 0, white to move, computer plays white
hash=32492ebd51be077d
pawnhash=3a77b97f9073ed73
Alpha=1744 Beta=2545 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 3>g1f1 2545  0.00       11 g1f1
 1/ 7 e3d4 2549  0.00      114 e3d4
 2/ 8>Mg2g4  99984  0.01      410 g2g4 f5g6 e3e8 g6g5 e8h5
nps=58571 h/p/q=23.00%/87.00%/0.00% q=79.0% bc=70% br=0.38 mp=663/228/-115/-116
pawnx=0 recapx=1 qcheckx=0 checkx=51 qfutilx=39 onereplyx=2 mthrx=2260 futilx=0
bmx=0
+ 8.75/20.52 95% 61/64 bf=2.05 h/p/q=33.23%/96.27%/0.00% 302.11 38131400
595803/5/126215 160259/93954/102625/1368264/4663481/123265/0/23166
*** Problem   Solution(s): Ne7+ (bm)
[D] 1r1r1qk1/p2n1p1p/bp1Pn1pQ/2pNp3/2P2P1N/1P5B/P6P/3R1RK1 w - - bm Ne7+
*** Problem   Solution(s): Ne7+ (bm)
-- BR -- BR -- BQ BK **
BP -- ** BN ** BP ** BP
BB BP -- WP BN ** BP WQ
** -- BP WN BP -- ** --
-- ** WP ** -- WP -- WN
** WP ** -- ** -- ** WB
WP ** -- ** -- ** -- WP
** -- ** WR ** WR WK --
mv 1 stage 0, white to move, computer plays white
hash=84fe7eaac21b2b01
pawnhash=e2f145612f0da488
Alpha=714 Beta=1515 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 8<h6f8 714  0.01      297 h6f8 d7f8 d5f6 g8h8
 1/10 d5e7 -1000  0.01      579 d5e7 g8h8
 2/11>d5e7 -599  0.02      816 d5e7 g8h8 h6f8 d8f8 e7c6
 2/11 d5e7 -598  0.03     1752 d5e7 g8h8 h4g6 f7g6 e7g6
 3/11>d5e7 -197  0.03     1814 d5e7 g8h8 h4g6 f7g6 e7g6
 3/12 d5e7 6260  0.05     3658 d5e7 g8h8 e7g6 f7g6 h4g6 h8g8 g6f8 d7f8
 4/13>d5e7 6660  0.06     3906 d5e7 g8h8 e7g6 f7g6 h4g6 h8g8 g6f8 d7f8
 4/14 d5e7 9114  0.12     9792 d5e7 f8e7 d6e7 d8e8 d1d7 e6f4
 5/17>d5e7 9514  0.13    10566 d5e7 f8e7 d6e7 d8e8 d1d7 e6f4
 5/17 d5e7 11462  0.28    21915 d5e7 f8e7 d6e7 d8c8 d1d7
 6/17<d5e7 11061  0.46    40115 d5e7 f8e7 d6e7 d8c8 d1d7 e6c7
 6/17 d5e7 11060  0.60    53589 d5e7 f8e7 d6e7 d8c8 d1d7 e6c7
 7/18<d5e7 10659  1.03   100044 d5e7 f8e7 d6e7 d8e8 h3e6 d7f6
 7/20 d5e7 10657  1.53   148502 d5e7 f8e7 d6e7 d8e8 h3e6 d7f6
 8/21<d5e7 10256  3.06   321349 d5e7 f8e7 d6e7 e5f4 h3e6 f7e6 e7d8R b8d8 h6g5
d8e8 d1d7 a6c4
 8/21 d5e7 10256  3.10   326039 d5e7 f8e7 d6e7 e5f4 h3e6 f7e6 e7d8R b8d8 h6g5
d8e8 d1d7 a6c4
 9/22<Td5e7  9855  6.01   645120 d5e7 f8e7 d6e7 e5f4 h3e6 f7e6 e7d8R b8d8 h6g5
d8e8 d1d7 a6c4 b3c4
nps=107395 h/p/q=40.00%/98.00%/0.00% q=77.0% bc=57% br=1.85
mp=2699/1580/-1040/-1009
pawnx=4550 recapx=2436 qcheckx=0 checkx=18681 qfutilx=110673 onereplyx=2271
mthrx=2260 futilx=0 bmx=48
+ 8.75/20.54 95% 62/65 bf=2.05 h/p/q=33.34%/96.29%/0.00% 308.12 38776520
596562/5/125848 164809/96390/104885/1386945/4774154/125536/0/23214
*** Problem   Solution(s): Qxe5 (bm)
[D] 1k1r2r1/ppq5/1bp4p/3pQ3/8/2P2N2/PP4P1/R4R1K b - - bm Qxe5
*** Problem   Solution(s): Qxe5 (bm)
-- BK -- BR -- ** BR **
BP BP BQ -- ** -- ** --
-- BB BP ** -- ** -- BP
** -- ** BP WQ -- ** --
-- ** -- ** -- ** -- **
** -- WP -- ** WN ** --
WP WP -- ** -- ** WP **
WR -- ** -- ** WR ** WK
mv 1 stage 0, black to move, computer plays black
hash=40523e0f125831a0
pawnhash=e1cec083ed129fc1
Alpha=1371 Beta=2172 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 4 a7a6 1770  0.00       59 a7a6
 2/ 5 a7a5 1768  0.00      211 a7a5
 3/ 7 c7e5 1647  0.01      781 c7e5 f3e5 h6h5
 4/11 d8e8 1621  0.04     3380 d8e8 e5c7 b6c7 f3d2
 5/11 d5d4 1683  0.10    10078 d5d4 c3d4 b6d4 e5c7 b8c7 f1b1
 6/16 d8f8 1736  0.36    39054 d8f8 e5e6 h6h5 mtmt
 7/17 d8e8 1732  0.92   101970 d8e8 e5c7 b6c7 f1e1 e8e1 a1e1 c7d6 h1g1
 8/20>d8e8 2132  1.93   223608 d8e8 e5c7 b6c7 f1e1 c7d6 a2a3 e8e1 a1e1 b8c7 h1g1
a7a5
 8/20 c7e5 3168  2.12   247566 c7e5 f3e5 g8g5 e5f3 g5h5 f3h2 b6c7 g2g3 c7g3
 9/20>c7e5 3568  2.29   269247 c7e5 f3e5 g8g5 e5f3 g5h5 f3h2 b6c7 g2g3 c7g3 h1g1
 9/20 c7e5 5402  2.87   342628 c7e5 f3e5 g8g5 e5f3 g5h5 f3h2 b6c7 g2g3 c7g3
10/25 Tc7e5  5264  6.02   716800 c7e5 f3e5 g8g5 e5f3 g5h5 f3h2 b6c7 g2g3 c7g3
nps=119030 h/p/q=26.00%/98.00%/0.00% q=71.0% bc=45% br=2.40
mp=1069/1842/-1549/-1499
pawnx=1446 recapx=4320 qcheckx=0 checkx=20028 qfutilx=61394 onereplyx=2162
mthrx=2356 futilx=0 bmx=202
+ 8.77/20.61 95% 63/66 bf=2.06 h/p/q=33.23%/96.32%/0.00% 314.14 39493320
598384/5/125717 166255/100710/107241/1406973/4835548/127698/0/23416
*** Problem   Solution(s): Rxd5 (bm)
[D] 3r2k1/p2q4/1p4p1/3rRp1p/5P1P/6PK/P3R3/3Q4 w - - bm Rxd5
*** Problem   Solution(s): Rxd5 (bm)
-- ** -- BR -- ** BK **
BP -- ** BQ ** -- ** --
-- BP -- ** -- ** BP **
** -- ** BR WR BP ** BP
-- ** -- ** -- WP -- WP
** -- ** -- ** -- WP WK
WP ** -- ** WR ** -- **
** -- ** WQ ** -- ** --
mv 1 stage 0, white to move, computer plays white
hash=57db609fb08dad3d
pawnhash=280ea0e09a0fda68
Alpha=6127 Beta=6928 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 3<e5d5 6127  0.00       40 e5d5
 1/ 3 e5d5 6127  0.00       42 e5d5
 2/ 8<e5d5 5726  0.01      232 e5d5 d7d5 d1d5 d8d5 h3g2
 2/ 8 d1b3 -1025  0.01      460 d1b3
 3/ 9 e5d5 -625  0.02     1195 e5d5 d7d5 e2e8 g8f7
 4/ 9>e5d5 -224  0.02     1609 e5d5 d7d5 e2e8 g8f7 e8d8 d5d1
 4/11 e5d5 3670  0.04     3083 e5d5 d7d5 e2e8 g8f7 e8d8 d5a2
 5/13<e5d5 3269  0.06     6721 e5d5 d7d5 e2e8 g8f7 e8d8 d5a2 d1h5
 5/13 e5d5 3269  0.07     6900 e5d5 d7d5 e2e8 g8f7 e8d8 d5a2 d1h5
 6/13>e5d5 3669  0.07     7871 e5d5 d7d5 e2e8 g8f7 e8d8 d5a2 d1h5 g6h5
 6/15 e5d5 3669  0.14    17116 e5d5 d7d5 e2e8 g8f7 e8d8 d5a2 d1h5 g6h5
 7/15>e5d5 4069  0.17    20884 e5d5 d7d5 e2e8 g8f7 e8d8 d5a2 d1h5 g6h5
 7/17 e5d5 4563  0.33    40964 e5d5 d7d5 e2e8 g8h7 e8d8 d5a2 d1d3
 8/20 e5d5 4960  0.76   103037 e5d5 d7d5 e2e8 d8e8 d1d5 g8f8 h3g2 e8e3 d5d7
 9/22 e5d5 5210  1.47   210070 e5d5 d7d5 e2e8 d8e8 d1d5 g8f8 h3g2 e8e7 g2g1
10/24 e5d5 5286  3.11   450258 e5d5 d7d5 e2e8 d8e8 d1d5 g8f8 h3g2 e8e2 g2f3 e2e8
d5f5 g6f5
11/26 Te5d5  5363  6.00   866304 e5d5 d7d5 e2e8 d8e8 d1d5 g8f8 h3g2 e8e7 g2f3
e7f7 d5d6 f8g7
nps=144336 h/p/q=39.00%/99.00%/0.00% q=66.0% bc=56% br=1.83
mp=1316/26843596/-878/-26738600
pawnx=274 recapx=3498 qcheckx=0 checkx=45802 qfutilx=84328 onereplyx=2734
mthrx=2356 futilx=0 bmx=42
+ 8.81/20.69 95% 64/67 bf=2.05 h/p/q=33.31%/96.36%/0.00% 320.15 40359624
602382/5/126066 166529/104208/109597/1452775/4919876/130432/0/23458
*** Problem   Solution(s): Qxe3 (bm)
[D] 6k1/5ppp/1q6/2b5/8/2R1pPP1/1P2Q2P/7K w - - bm Qxe3
*** Problem   Solution(s): Qxe3 (bm)
-- ** -- ** -- ** BK **
** -- ** -- ** BP BP BP
-- BQ -- ** -- ** -- **
** -- BB -- ** -- ** --
-- ** -- ** -- ** -- **
** -- WR -- BP WP WP --
-- WP -- ** WQ ** -- WP
** -- ** -- ** -- ** WK
mv 1 stage 0, white to move, computer plays white
hash=964f86415f1601c6
pawnhash=ff74082755fd3c83
Alpha=1464 Beta=2265 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 1>c3e3 2265  0.00        2 c3e3
 1/ 2 c3c2 2881  0.00       37 c3c2
 2/ 3 h1g2 2853  0.00       82 h1g2
 3/ 8>h1g2 3253  0.01      281 h1g2 b6b2 e2b2
 3/ 8 e2e3 5026  0.01      538 e2e3 c5e3 c3c8 b6d8 c8d8
 4/ 8>e2e3 5426  0.01      758 e2e3 b6b2 c3c5 b2c1 c5c1
 4/12 e2e3 6568  0.03     2902 e2e3 c5d6 c3c8 b6d8 c8d8
 5/14<e2e3 6167  0.05     5439 e2e3 c5d6 c3c8 d6f8 e3b6 h7h5
 5/14 e2e3 4630  0.07     8344 e2e3 b6a5 c3c5 a5c5 e3c5
 6/14 e2e3 4630  0.12    14761 e2e3 b6a5 c3c5 a5c5 e3c5 g7g6
 7/14 e2e3 4630  0.22    29504 e2e3 b6a5 c3c5 a5c5 e3c5 h7h6
 8/16 e2e3 4632  0.42    61843 e2e3 b6a5 c3c5 a5c5 e3c5 g7g6 h1g2 g8g7
 9/19 e2e3 4634  0.85   129662 e2e3 b6a5 e3c5 a5c3 b2c3 g7g6 h1g2 g8g7 g2f2
10/22 e2e3 4634  1.76   272571 e2e3 b6a5 e3c5 a5c3 b2c3 g7g6 h1g2 h7h6
11/25 e2e3 4634  3.77   577709 e2e3 b6a5 e3c5 a5c3 b2c3 g7g6 h1g2 h7h5 g2f2 g8g7
12/26 Te2e3  4635  6.02   956416 e2e3 b6a5 e3c5 a5c3 b2c3 g7g6 h1g1 g8g7 c5e5
f7f6 e5e7
nps=158820 h/p/q=35.00%/99.00%/0.00% q=65.0% bc=47% br=2.21
mp=1122/26843596/-953/-26738600
pawnx=393 recapx=1198 qcheckx=0 checkx=38881 qfutilx=71711 onereplyx=6890
mthrx=2518 futilx=0 bmx=863
+ 8.85/20.76 95% 65/68 bf=2.06 h/p/q=33.34%/96.40%/0.00% 326.17 41316040
607589/5/126671 166922/105406/112115/1491656/4991587/137322/0/24321
*** Problem   Solution(s): f3 h3 (bm)
[D] 2k5/pppr4/4R3/4Q3/2pp2q1/8/PPP2PPP/6K1 w - - bm f3 h3
*** Problem   Solution(s): f3 h3 (bm)
-- ** BK ** -- ** -- **
BP BP BP BR ** -- ** --
-- ** -- ** WR ** -- **
** -- ** -- WQ -- ** --
-- ** BP BP -- ** BQ **
** -- ** -- ** -- ** --
WP WP WP ** -- WP WP WP
** -- ** -- ** -- WK --
mv 1 stage 0, white to move, computer plays white
hash=92a8a25cf712eb87
pawnhash=dcb3c10407be569e
Alpha=2449 Beta=3250 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 5 f2f4 3157  0.01      111 f2f4
 2/ 8>f2f3 3557  0.01      381 f2f3
 2/ 8 e6e8 3558  0.01      498 e6e8 d7d8 e8d8 c8d8 e5d5
 3/11<e6e8 3157  0.03     2483 e6e8 d7d8 e8d8 c8d8 e5d5 d8c8 d5c4 c8b8
 3/11 e5e1 2771  0.04     3618 e5e1 d7f7
 4/13>e5e1 3171  0.07     7422 e5e1 g4f5 c2c3
 4/13 e6e8 3821  0.09     9022 e6e8 d7d8 e8d8 c8d8 e5d5 d8c8 d5c4
 5/17 e6e8 3982  0.20    25471 e6e8 d7d8 f2f3 g4h4 e5e6 c8b8 e8d8 h4d8 e6c4
 6/19>e6e8 4382  0.77   100141 e6e8 d7d8 f2f3 g4h4 e5e6 c8b8 e8d8 h4d8 e6c4 c7c6
f3f4
 6/19 f2f3 4384  0.87   111688 f2f3 g4h4 e6e8 d7d8 e5e6 c8b8 e8d8 h4d8 e6c4 c7c6
f3f4
 7/19>f2f3 4784  0.91   116465 f2f3 g4h4 e6e8 d7d8 e5f5 c8b8 g2g3 d8e8 g3h4 e8e1
g1f2
 7/20 f2f3 7453  1.57   210013 f2f3 g4e6 e5e6 c4c3 e6e8
 8/21<f2f3 7052  2.76   396475 f2f3 g4e6 e5e6 a7a6 e6e8 d7d8 e8e6 d8d7 e6e8 d7d8
e8e6 d8d7 e6e8 d7d8 e8e6 d8d7
 8/21 f2f3 7052  2.91   418557 f2f3 g4e6 e5e6 d4d3 c2d3 b7b5 mtmt
 9/24 f2f3 7451  5.17   773779 f2f3 g4e6 e5e6 c4c3 e6g8 d7d8 g8g4 c8b8 g4h4 d8d7
h4h8
10/24 Tf2f3  7810  6.03   913431 f2f3 g4e6 e5e6 c4c3 e6g8 d7d8 g8b3 d8h8 f3f4
c3b2
nps=151607 h/p/q=34.00%/95.00%/0.00% q=69.0% bc=55% br=2.19
mp=1551/2323/-976/-1592
pawnx=8777 recapx=3596 qcheckx=0 checkx=47702 qfutilx=68074 onereplyx=6768
mthrx=2526 futilx=0 bmx=832
+ 8.87/20.81 95% 66/69 bf=2.06 h/p/q=33.35%/96.38%/0.00% 332.19 42229472
612021/5/127123 175699/109002/114641/1539358/5059661/144090/0/25153
*** Problem   Solution(s): Na2+ (bm)
[D] 2kr3r/pppq1ppp/3p1n2/bQ2p3/1n1PP3/1PN1BN1P/1PP2PP1/2KR3R b - - bm Na2+
*** Problem   Solution(s): Na2+ (bm)
-- ** BK BR -- ** -- BR
BP BP BP BQ ** BP BP BP
-- ** -- BP -- BN -- **
BB WQ ** -- BP -- ** --
-- BN -- WP WP ** -- **
** WP WN -- WB WN ** WP
-- WP WP ** -- WP WP **
** -- WK WR ** -- ** WR
mv 1 stage 0, black to move, computer plays black
hash=12959dc0e67661dc
pawnhash=a767fa39fe3089ba
Alpha=-554 Beta=246 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/13 b4a2 245  0.00      112 b4a2 c1d2
 2/13>b4a2 645  0.01      136 b4a2 c1d2 d7b5
 2/13 b4a2 7494  0.01      541 b4a2 c3a2 d7b5
 3/13 b4a2 7353  0.03     1398 b4a2 c3a2 d7b5 f3g5
 4/18 b4a2 7358  0.09     3890 b4a2 c3a2 d7b5 e3g5
 5/18 b4a2 6960  0.15     9382 b4a2 c3a2 d7b5 d4e5 d6e5 f3g5 a5b6
 6/18 b4a2 7302  0.30    22881 b4a2 c3a2 d7b5 d4e5 d6e5 e3a7 f6e4 f3g1
 7/18 b4a2 6904  0.83    72005 b4a2 c3a2 d7b5 d4e5 d6e5 f3g5 a5b6 d1d8 h8d8 g5f7
 8/19 b4a2 6963  1.98   176433 b4a2 c3a2 d7b5 d4e5 f6e4 e5d6 d8d6 d1d6 c7d6
 9/23<b4a2 6562  4.17   388130 b4a2 c3a2 d7b5 d4e5 f6e4 e5d6 d8d6 d1d6 c7d6
 9/23 b4a2 6562  4.17   388298 b4a2 c3a2 d7b5 d4e5 f6e4 e5d6 d8d6 d1d6 c7d6
10/23>b4a2 6962  5.87   547707 b4a2 c3a2 d7b5 d4e5 d6e5 f3g5 d8d1 h1d1 h8f8 e3a7
h7h6 g5f7
10/23 Tb4a2  6963  6.06   565248 b4a2 c3a2 d7b5 d4e5 d6e5 f3g5 d8d1 h1d1 h8f8
e3a7 h7h6 d1d8 c8d8 g2g4
nps=93291 h/p/q=34.00%/96.00%/0.00% q=79.0% bc=54% br=2.05 mp=796/910/-813/-526
pawnx=1257 recapx=2893 qcheckx=0 checkx=8406 qfutilx=108748 onereplyx=601
mthrx=2526 futilx=0 bmx=0
+ 8.89/20.84 95% 67/70 bf=2.06 h/p/q=33.36%/96.37%/0.00% 338.25 42794720
611353/5/126517 176956/111895/117167/1547764/5168409/144691/0/25153
*** Problem   Solution(s): Nxa7+ (bm)
[D] 2kr3r/pp1q1ppp/5n2/1Nb5/2Pp1B2/7Q/P4PPP/1R3RK1 w - - bm Nxa7+
*** Problem   Solution(s): Nxa7+ (bm)
-- ** BK BR -- ** -- BR
BP BP ** BQ ** BP BP BP
-- ** -- ** -- BN -- **
** WN BB -- ** -- ** --
-- ** WP BP -- WB -- **
** -- ** -- ** -- ** WQ
WP ** -- ** -- WP WP WP
** WR ** -- ** WR WK --
mv 1 stage 0, white to move, computer plays white
hash=a11f014a20723214
pawnhash=a6f993e3b9d02332
Alpha=-1733 Beta=-932 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 5>h3d7 -932  0.00      167 h3d7 f6d7 f1e1
 1/ 5 h3d3 -693  0.01      253 h3d3
 2/ 8 h3f3 -731  0.01      562 h3f3
 3/ 9<h3f3 -1131  0.03     1778 h3f3 d7b5 f1e1
 3/ 9 h3d3 -1467  0.04     3137 h3d3 d8e8
 4/ 9>h3d3 -1066  0.05     3870 h3d3 d8e8 f1e1 e8e1 b1e1 f6g4
 4/10 h3d3 -813  0.09     7142 h3d3 d7g4 f4e5
 5/13<h3d3 -1213  0.18    16416 h3d3 d7g4 f4e5 h8g8
 5/15 h3d3 -1213  0.26    24595 h3d3 d7g4 g2g3 h7h5
 6/15 h3b3 -1504  0.98    95547 h3b3 d7g4 b5d4 d8d4 b3b7
 7/18 h3f3 -1463  2.44   247404 h3f3 d7c6 f3d3 f6g4
 8/19>h3f3 -1062  3.41   344510 h3f3 d7c6 f3d3 f6g4 f1e1 c6g6
 8/20 h3f3 -1060  5.27   532390 h3f3 d7c6 f3e2 a7a6 b5c7
 9/23 Th3f3  -1060  6.00   612357 h3f3 d7c6 f3e2 a7a6
nps=101975 h/p/q=29.00%/98.00%/0.00% q=75.0% bc=52% br=2.66
mp=1942/1824/-1448/-1120
pawnx=1867 recapx=3005 qcheckx=0 checkx=13004 qfutilx=120661 onereplyx=1516
mthrx=2606 futilx=0 bmx=0
- 8.89/20.87 94% 67/71 bf=2.07 h/p/q=33.30%/96.39%/0.00% 344.26 43407076
611367/5/126089 178823/114900/119773/1560768/5289070/146207/0/25153
*** Problem   Solution(s): e6 (bm)
[D] r3r1k1/pp1n1ppp/2p5/4Pb2/2B2P2/B1P5/P5PP/R2R2K1 w - - bm e6
*** Problem   Solution(s): e6 (bm)
BR ** -- ** BR ** BK **
BP BP ** BN ** BP BP BP
-- ** BP ** -- ** -- **
** -- ** -- WP BB ** --
-- ** WB ** -- WP -- **
WB -- WP -- ** -- ** --
WP ** -- ** -- ** WP WP
WR -- ** WR ** -- WK --
mv 1 stage 0, white to move, computer plays white
hash=863d4608bf889186
pawnhash=9cabda3122b0cb89
Alpha=-670 Beta=130 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 2>d1d7 130  0.00        7 d1d7
 1/ 3 g1h1 312  0.00       53 g1h1
 2/ 4 a1c1 280  0.01      145 a1c1
 3/ 6<a1c1 -120  0.01      469 a1c1 d7e5 f4e5
 3/ 6 g1h1 -315  0.02     1088 g1h1 c6c5
 4/ 7>g1h1 85  0.02     1363 g1h1 c6c5 d1d7 a7a6
 4/ 8 e5e6 1704  0.03     2787 e5e6 d7f6 e6f7
 5/11>e5e6 2104  0.05     3947 e5e6 d7f6 e6f7
 5/11 e5e6 3042  0.09     7866 e5e6 d7e5 f4e5 f7e6
 6/13 e5e6 2876  0.19    19611 e5e6 e8e6 d1d7 e6e1 a1e1 f5d7 a3d6
 7/13 e5e6 3275  0.33    33820 e5e6 f5e6 c4e6 d7f6 e6f5 a7a5
 8/14 e5e6 3098  0.61    66584 e5e6 f5e6 c4e6 d7f6 e6d7 f6d7 d1d7 b7b5
 9/15 e5e6 2975  1.54   178222 e5e6 f5e6 c4e6 d7b6 e6b3 a7a5
10/17 e5e6 3013  4.04   461084 e5e6 f5e6 c4e6 d7f6 e6f5 a8d8 h2h3 b7b5
11/18<Te5e6  2612  6.01   699457 e5e6 f5e6 c4e6 d7b6 e6b3 e8e2 g1f1 a8e8 mtmt
nps=116402 h/p/q=30.00%/97.00%/0.00% q=73.0% bc=47% br=2.21
mp=1820/1439/-1955/-1605
pawnx=3102 recapx=2018 qcheckx=0 checkx=9912 qfutilx=63175 onereplyx=1484
mthrx=2606 futilx=0 bmx=14
+ 8.92/20.83 94% 68/72 bf=2.07 h/p/q=33.25%/96.40%/0.00% 350.27 44106532
612591/5/125923 181925/116918/122379/1570680/5352245/147691/0/25167
*** Problem   Solution(s): Qd2 (bm)
[D] r1q3rk/1ppbb1p1/4Np1p/p3pP2/P3P3/2N4R/1PP1Q1PP/3R2K1 w - - bm Qd2
*** Problem   Solution(s): Qd2 (bm)
BR ** BQ ** -- ** BR BK
** BP BP BB BB -- BP --
-- ** -- ** WN BP -- BP
BP -- ** -- BP WP ** --
WP ** -- ** WP ** -- **
** -- WN -- ** -- ** WR
-- WP WP ** WQ ** WP WP
** -- ** WR ** -- WK --
mv 1 stage 0, white to move, computer plays white
hash=300af994c4e767fc
pawnhash=a57c9b29892da002
Alpha=-168 Beta=632 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 4 e2g4 388  0.00      125 e2g4
 2/ 8 c3d5 384  0.01      313 c3d5
 3/ 8 c3d5 298  0.02     1188 c3d5 e7d6
 4/ 9 e2g4 228  0.04     3622 e2g4 a8a6
 5/12 e2c4 378  0.10     9346 e2c4 e7d6 h3d3
 6/14>e2c4 778  0.37    34719 e2c4 e7d6 h3d3 g7g6 c3b5 g6f5 e4f5
 6/14 e2d2 2461  0.43    40172 e2d2 g8d8 e6d8 e7c5 g1h1 c8d8
 7/19>e2d2 2861  0.49    45838 e2d2 g8d8 e6d8 e7c5 g1h1 c8d8 h3h6 g7h6 d2h6
 7/20 e2d2 4843  0.95    95000 e2d2 e7f8 e6f8 c8f8 d2d7 f8b4
 8/25 e2d2 5187  2.18   232409 e2d2 h8h7 d2d7 e7d6 d7c8 g8c8 h3h6 g7h6
 9/25 e2d2 5237  3.98   423938 e2d2 g8e8 d2d7 c7c6 d7c8 e8c8 h3d3 c8g8
10/26<Te2d2  4836  6.00   643072 e2d2 g8e8 d2d7 c7c5 d7c8
nps=107089 h/p/q=32.00%/99.00%/0.00% q=73.0% bc=55% br=2.24
mp=3469/26843596/-1137/-1338
pawnx=2067 recapx=1296 qcheckx=0 checkx=19613 qfutilx=123091 onereplyx=4451
mthrx=2614 futilx=0 bmx=112
+ 8.93/20.90 94% 69/73 bf=2.07 h/p/q=33.23%/96.44%/0.00% 356.27 44749604
613008/5/125606 183992/118214/124993/1590293/5475336/152142/0/25279
*** Problem   Solution(s): Qf1+ (bm)
[D] 5r1k/pp4pp/2p5/2b1P3/4Pq2/1PB1p3/P3Q1PP/3N2K1 b - - bm Qf1+
*** Problem   Solution(s): Qf1+ (bm)
-- ** -- ** -- BR -- BK
BP BP ** -- ** -- BP BP
-- ** BP ** -- ** -- **
** -- BB -- WP -- ** --
-- ** -- ** WP BQ -- **
** WP WB -- BP -- ** --
WP ** -- ** WQ ** WP WP
** -- ** WN ** -- WK --
mv 1 stage 0, black to move, computer plays black
hash=9f25f5f088c03b49
pawnhash=157aa7952dbe3b49
Alpha=4390 Beta=5191 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 7 f4e4 4791  0.00      123 f4e4
 2/ 8>f4e4 5191  0.01      307 f4e4 d1e3
 2/ 8 h8g8 5191  0.01      460 h8g8
 3/10>h8g8 5591  0.01      751 h8g8 d1e3 c5e3 e2e3 f4e3
 3/10 f4f1 5592  0.02     1070 f4f1 e2f1 e3e2 d1f2 e2f1Q g1f1 f8f2
 4/13 f4f1 5991  0.03     3210 f4f1 e2f1 e3e2 d1f2 e2f1Q g1f1 f8f2 f1g1 f2a2
c3d4 h7h6
 5/14>f4f1 6391  0.04     4465 f4f1 e2f1 e3e2 d1f2 e2f1Q g1f1 f8f2 f1g1 f2a2
g1h1 c5d4
 5/14 f4f1 6391  0.06     5948 f4f1 e2f1 e3e2 d1f2 e2f1Q g1f1 f8f2 f1g1 f2a2
g1h1 c5d4
 6/18>f4f1 6791  0.08     8802 f4f1 e2f1 e3e2 d1f2 e2f1Q g1f1 f8f2 f1g1 f2a2
c3d4 c5d4 g1f1 a2g2 e5e6
 6/18 f4f1 6887  0.13    15745 f4f1 e2f1 e3e2 d1f2 e2f1R g1f1 f8f2 f1e1 f2g2
c3d4 g2h2 d4c5 h2a2
 7/18<f4f1 6486  0.30    37903 f4f1 e2f1 e3e2 d1f2 e2f1R g1f1 f8f2 f1e1 f2g2
e1f1 g2c2 c3d4
 7/18 f4f1 6486  0.30    37918 f4f1 e2f1 e3e2 d1f2 e2f1R g1f1 f8f2 f1e1 f2g2
e1f1 g2c2 c3d4
 8/20>f4f1 6886  0.35    44550 f4f1 e2f1 e3e2 d1f2 e2f1R g1f1 f8f2 f1e1 f2g2
e1f1 g2c2 c3d4 c5d4 e5e6
 8/20 f4f1 6905  0.51    68069 f4f1 e2f1 e3e2 d1f2 e2f1R g1f1 f8f2 f1e1 f2g2
e1f1 g2c2 c3d4 c5d4 e5e6
 9/23 f4f1 6885  2.41   325870 f4f1 e2f1 e3e2 d1f2 e2f1R g1f1 f8f2 f1e1 f2g2
c3d2 c5d4 h2h4 d4e5 d2f4
10/25 f4f1 6887  4.47   626553 f4f1 e2f1 e3e2 d1f2 e2f1R g1f1 f8f2 f1e1 f2g2
b3b4 c5b4 c3b4 g2h2 a2a3
11/27>Tf4e4  7287  6.00   864256 f4e4
nps=143947 h/p/q=30.00%/97.00%/0.00% q=69.0% bc=47% br=2.12
mp=1887/26843596/-1172/-26738637
pawnx=5803 recapx=1941 qcheckx=0 checkx=30537 qfutilx=48349 onereplyx=4401
mthrx=2618 futilx=0 bmx=294
- 8.96/20.99 93% 69/74 bf=2.07 h/p/q=33.19%/96.45%/0.00% 362.27 45613860
616404/5/125909 189795/120155/127611/1620830/5523685/156543/0/25573
*** Problem   Solution(s): Qd6 (bm)
[D] r3r1k1/pppq1ppp/8/8/1Q4n1/7P/PPP2PP1/RNB1R1K1 b - - bm Qd6
*** Problem   Solution(s): Qd6 (bm)
BR ** -- ** BR ** BK **
BP BP BP BQ ** BP BP BP
-- ** -- ** -- ** -- **
** -- ** -- ** -- ** --
-- WQ -- ** -- ** BN **
** -- ** -- ** -- ** WP
WP WP WP ** -- WP WP **
WR WN WB -- WR -- WK --
mv 1 stage 0, black to move, computer plays black
hash=425dd76eda49549b
pawnhash=d3f5015f8064bbe
Alpha=-3957 Beta=-3156 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 6 g4h6 -3843  0.01      288 g4h6
 2/ 7 g4f6 -3994  0.01      754 g4f6
 3/10 e8e1 -4030  0.03     2418 e8e1 b4e1 a8e8 c1e3 g4f6
 4/11 d7d4 -3746  0.16    10907 d7d4 h3g4 d4b4
 5/15>d7d4 -3345  0.28    21633 d7d4 e1e8 a8e8 b4d2 d4d2 b1d2 g8h8
 5/15 d7d6 -3344  0.31    24883 d7d6 e1e8 a8e8 b4f4 d6f4 g1f1
 6/16>d7d6 -2943  0.36    29888 d7d6 e1e8 a8e8 b4f4 d6f4 h3g4 f4c1
 6/16 d7d6 4803  0.51    47920 d7d6 e1e8 a8e8 b4f4 d6f4 h3g4 f4c1 g1h2 mtmt
 7/18 d7d6 5200  0.71    71333 d7d6 h3g4 d6b4 e1f1 b4g4 c2c4
 8/19 d7d6 5226  1.31   141071 d7d6 h3g4 d6b4 e1e8 a8e8 b1d2 b4g4 d2f1 g4g2 g1g2
 9/23 d7d6 5340  3.68   420128 d7d6 h3g4 d6b4 e1f1 b4g4 c1g5 g4g5
10/24>Td7d6  99992  6.01   708611 d7d6 h3g4 d6b4 e1f1 b4g4 c1f4 g4f4 c2c3
nps=117827 h/p/q=26.00%/96.00%/0.00% q=71.0% bc=51% br=2.12
mp=690/1893/-1834/-1072
pawnx=443 recapx=2738 qcheckx=0 checkx=24983 qfutilx=80498 onereplyx=5284
mthrx=2764 futilx=0 bmx=1464
+ 8.97/21.03 93% 70/75 bf=2.07 h/p/q=33.09%/96.44%/0.00% 368.29 46322472
617633/5/125778 190238/122893/130375/1645813/5604183/161827/0/27037
*** Problem   Solution(s): Bxf6 (bm)
[D] r1b1qrk1/2p2ppp/pb1pnn2/1p2pNB1/3PP3/1BP5/PP2QPPP/RN1R2K1 w - - bm Bxf6
*** Problem   Solution(s): Bxf6 (bm)
BR ** BB ** BQ BR BK **
** -- BP -- ** BP BP BP
BP BB -- BP BN BN -- **
** BP ** -- BP WN WB --
-- ** -- WP WP ** -- **
** WB WP -- ** -- ** --
WP WP -- ** WQ WP WP WP
WR WN ** WR ** -- WK --
mv 1 stage 0, white to move, computer plays white
hash=70d52748d0601bde
pawnhash=e2066299055d24c6
Alpha=138 Beta=939 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/11 g5f6 539  0.00      136 g5f6 g7f6
 2/11 g5f6 683  0.01      583 g5f6 g7f6 d4d5
 3/15 g5f6 675  0.05     3206 g5f6 g7f6 a2a4
 4/16>g5f6 1075  0.09     5804 g5f6 g7f6 d4e5 f6e5 e2g4 g8h8 c3c4
 4/16 g5f6 1075  0.13     9030 g5f6 g7f6 d4e5 f6e5 e2g4 g8h8 c3c4
 5/16>g5f6 1475  0.18    12212 g5f6 g7f6 d4e5 f6e5 e2g4 g8h8 c3c4 b5c4
 5/16 g5f6 1476  0.32    22884 g5f6 g7f6 d4e5 f6e5 e2g4 g8h8 c3c4 b5c4
 6/18>g5f6 1876  0.45    31606 g5f6 g7f6 b3e6 f7e6 e2g4 e8g6 f5e7
 6/20 g5f6 3352  1.31   100795 g5f6 e6d4 f5d4 g7f6 d4f3
 7/20 g5f6 2952  2.20   178281 g5f6 e6d4 c3d4 c8f5 e4f5 g7f6 d4d5
 8/20 g5f6 3218  4.35   361373 g5f6 e6d4 c3d4 c8f5 e4f5 g7f6 d4e5 f6e5 e2g4 g8h8
 9/24<Tg5f6  2817  6.07   514091 g5f6 e6d4 f5d4 g7f6 b3d5 a8a7 d4c6 e8c6 d5c6
nps=84638 h/p/q=34.00%/94.00%/0.00% q=82.0% bc=57% br=2.41
mp=1542/1342/-1422/-1549
pawnx=1045 recapx=2413 qcheckx=0 checkx=7871 qfutilx=130493 onereplyx=858
mthrx=2764 futilx=0 bmx=0
+ 8.97/21.07 93% 71/76 bf=2.08 h/p/q=33.11%/96.41%/0.00% 374.36 46836564
616271/5/125110 191283/125306/133139/1653684/5734676/162685/0/27037
*** Problem   Solution(s): Ng3 (bm)
[D] 3r2k1/ppp2ppp/6q1/b4n2/3nQB2/2p5/P4PPP/RN3RK1 b - - bm Ng3
*** Problem   Solution(s): Ng3 (bm)
-- ** -- BR -- ** BK **
BP BP BP -- ** BP BP BP
-- ** -- ** -- ** BQ **
BB -- ** -- ** BN ** --
-- ** -- BN WQ WB -- **
** -- BP -- ** -- ** --
WP ** -- ** -- WP WP WP
WR WN ** -- ** WR WK --
mv 1 stage 0, black to move, computer plays black
hash=31b5763d4be266f2
pawnhash=211ae5ac8b33402c
Alpha=2868 Beta=3669 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 4 c3c2 3504  0.00       88 c3c2 e4b7 c2b1N a1b1
 2/ 7 c7c6 3413  0.01      460 c7c6
 3/10 g6c6 3076  0.02     1504 g6c6 e4c6 b7c6
 4/11 f5g3 3437  0.06     5479 f5g3 e4e7 g3f1 e7d8
 5/14>f5g3 3837  0.12    10308 f5g3 e4e7 g3e2 g1h1 c7c5
 5/15 f5g3 11326  0.38    38861 f5g3 f4d2 g3f1 g1f1 g6e4 b1c3 a5c3 d2c3
 6/16<f5g3 10925  0.50    52518 f5g3 f4d2 g3f1 g1f1 g6e4
 6/17 f5g3 10839  1.06   115178 f5g3 f4e5 d4e2 e4e2 g3e2 g1h1 c3c2 e5b2
 7/19<f5g3 10438  1.59   174189 f5g3 f4e5 d4e2 e4e2 g3e2 g1h1 c3c2 e5g3 c2b1B
a1b1 e2g3 h2g3 g6b1
 7/19 f5g3 10401  2.75   297508 f5g3 e4d4 g3e2 g1h1 e2d4 f1e1
 8/19<f5g3 10000  3.96   424917 f5g3 e4d4 g3e2 g1h1 e2d4 f1e1 c3c2 f4c7 c2b1B
a1b1 a5c7 a2a4 g6b1
 8/20 Tf5g3  9876  6.00   658432 f5g3 f4g3 g6e4 f2f3 d4e2 g1h1 c3c2 f3e4
nps=109666 h/p/q=43.00%/98.00%/0.00% q=78.0% bc=51% br=2.87
mp=1318/2105/-1509/-1140
pawnx=8521 recapx=977 qcheckx=0 checkx=14060 qfutilx=80541 onereplyx=4219
mthrx=3481 futilx=0 bmx=78
+ 8.96/21.05 93% 72/77 bf=2.09 h/p/q=33.23%/96.43%/0.00% 380.37 47494996
616818/5/124866 199804/126283/136620/1667744/5815217/166904/0/27115
*** Problem   Solution(s): Ng5+ (bm)
[D] r2q3r/ppp2k2/4nbp1/5Q1p/2P1NB2/8/PP3P1P/3RR1K1 w - - bm Ng5+
*** Problem   Solution(s): Ng5+ (bm)
BR ** -- BQ -- ** -- BR
BP BP BP -- ** BK ** --
-- ** -- ** BN BB BP **
** -- ** -- ** WQ ** BP
-- ** WP ** WN WB -- **
** -- ** -- ** -- ** --
WP WP -- ** -- WP -- WP
** -- ** WR WR -- WK --
mv 1 stage 0, white to move, computer plays white
hash=997526869d119b57
pawnhash=14285f83a2cb78f7
Alpha=136 Beta=937 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 6>d1d8 937  0.01      237 d1d8 g6f5
 1/ 7 f5b5 1041  0.01      437 f5b5
 2/11>f5a5 1441  0.02     1381 f5a5
 2/11 e4g5 1752  0.03     1677 e4g5 e6g5 d1d7 d8d7 f5d7
 3/11>e4g5 2152  0.03     1855 e4g5 e6g5 d1d7 d8d7 f5d7
 3/12 e4g5 2725  0.07     5404 e4g5 e6g5 d1d7 d8d7 f5d7 f7g8 f4g5 f6g5 d7c7
 4/13 e4g5 3074  0.18    16356 e4g5 e6g5 d1d7 d8d7 f5d7 f7f8 f4g5 f6g5 d7c7
 5/16 e4g5 3074  0.44    44768 e4g5 e6g5 d1d7 d8d7 f5d7 f7f8 f4g5 f6g5 d7c7
 6/17 e4g5 2958  1.04   112858 e4g5 e6g5 d1d7 d8d7 f5d7 f7f8 f4g5 f6g5 d7c7 b7b6
 7/17>e4g5 3358  1.14   121293 e4g5 e6g5 d1d7 d8d7 f5d7 f7f8 f4g5 f6g5 d7c7 b7b6
c7a7
 7/19 e4g5 3358  2.62   287905 e4g5 e6g5 d1d7 d8d7 f5d7 f7f8 f4g5 f6g5 d7c7 b7b6
c7a7
 8/22>e4g5 3758  2.82   309533 e4g5 e6g5 d1d7 d8d7 f5d7 f7f8 f4g5 f6g5 d7c7 b7b6
c7b7
 8/22 Te4g5  3780  6.00   678912 e4g5 e6g5 d1d7 d8d7 f5d7 f7f8 f4g5 f6g5 d7c7
b7b6 c7d7
nps=113058 h/p/q=31.00%/99.00%/0.00% q=76.0% bc=56% br=2.16
mp=1347/672/-1505/-1504
pawnx=160 recapx=1292 qcheckx=0 checkx=25330 qfutilx=66099 onereplyx=813
mthrx=3481 futilx=0 bmx=32
+ 8.95/21.06 93% 73/78 bf=2.09 h/p/q=33.21%/96.46%/0.00% 386.37 48173908
617614/5/124683 199964/127575/140101/1693074/5881316/167717/0/27147
*** Problem   Solution(s): Qxh2+ (bm)
[D] r3k2r/pbp2pp1/3b1n2/1p6/3P3p/1B2N1Pq/PP1PQP1P/R1B2RK1 b kq - bm Qxh2+
*** Problem   Solution(s): Qxh2+ (bm)
BR ** -- ** BK ** -- BR
BP BB BP -- ** BP BP --
-- ** -- BB -- BN -- **
** BP ** -- ** -- ** --
-- ** -- WP -- ** -- BP
** WB ** -- WN -- WP BQ
WP WP -- WP WQ WP -- WP
WR -- WB -- ** WR WK --
mv 1 stage 0, black to move, computer plays black
hash=33221294a720be79
pawnhash=1a5f09d13b3f03d
Alpha=-1319 Beta=-518 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 3>h4g3 -518  0.00        2 h4g3
 1/ 5 h4g3 -518  0.00      134 h4g3
 2/ 8>Mh3h2  99984  0.02      608 h3h2 g1h2 h4g3 h2g1 h8h1
nps=32000 h/p/q=28.00%/89.00%/0.00% q=88.0% bc=77% br=1.88 mp=0/0/-1481/-1391
pawnx=9 recapx=10 qcheckx=0 checkx=29 qfutilx=29 onereplyx=7 mthrx=3481 futilx=0
bmx=0
+ 8.86/20.90 93% 74/79 bf=2.09 h/p/q=33.14%/96.37%/0.00% 386.39 48174516
609804/5/124678 199973/127585/143582/1693103/5881345/167724/0/27147
*** Problem   Solution(s): Ra1 (bm)
[D] r4rk1/p1B1bpp1/1p2pn1p/8/2PP4/3B1P2/qP2QP1P/3R1RK1 w - - bm Ra1
*** Problem   Solution(s): Ra1 (bm)
BR ** -- ** -- BR BK **
BP -- WB -- BB BP BP --
-- BP -- ** BP BN -- BP
** -- ** -- ** -- ** --
-- ** WP WP -- ** -- **
** -- ** WB ** WP ** --
BQ WP -- ** WQ WP -- WP
** -- ** WR ** WR WK --
mv 1 stage 0, white to move, computer plays white
hash=53915701266f99cc
pawnhash=254191e5fafb6758
Alpha=-1173 Beta=-372 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 4>d4d5 -372  0.00       27 d4d5
 1/ 4 g1g2 377  0.00       81 g1g2
 2/ 4 d1c1 329  0.01      185 d1c1
 3/ 7<d1c1 -71  0.01      607 d1c1 a2b2 e2b2
 3/ 7 d1a1 -681  0.02     1262 d1a1 a2b3
 4/ 7>d1a1 -280  0.02     1516 d1a1 a2b3 c7b6 a7b6
 4/ 7 d1a1 469  0.04     2706 d1a1 a2b3 g1g2
 5/ 9 d3b1 289  0.07     5793 d3b1 a2b3 b1d3
 6/10 e2c2 337  0.27    25454 e2c2 a2a5 g1g2
 7/14 d4d5 245  0.86    81117 d4d5 b6b5 c4b5 f6e8 d3c4
 8/19 d1a1 395  2.13   206514 d1a1 a2b3 d3c2 b3b4 c2a4
 9/19>d1a1 795  2.44   242239 d1a1 a2b3 d3c2 b3b4 c2a4 b4a4 a1a4 a8c8 a4a7
 9/19 d1a1 4884  3.26   331596 d1a1 a2b3 d3c2 b3b4 a1a4 f6h7 a4b4
10/19 d1a1 5283  4.67   491694 d1a1 a2b3 d3c2 b3b4 a1a4 b4a4 c2a4 a8c8 c7b6 a7b6
11/19<Td1a1  4882  6.01   642048 d1a1 a2b3 d3c2 b3b4 a1a4 b4a4 c2a4 a8c8 c7b6
a7b6
nps=106866 h/p/q=31.00%/98.00%/0.00% q=75.0% bc=53% br=2.44
mp=2158/1461/-1318/-1445
pawnx=1932 recapx=1191 qcheckx=0 checkx=6542 qfutilx=112164 onereplyx=271
mthrx=3481 futilx=0 bmx=0
+ 8.89/20.88 93% 75/80 bf=2.09 h/p/q=33.11%/96.39%/0.00% 392.40 48816564
610207/5/124405 201905/128776/147063/1699645/5993509/167995/0/27147
*** Problem   Solution(s): Bd6 (bm)
[D] r4rk1/1bR1bppp/4pn2/1p2N3/1P6/P3P3/4BPPP/3R2K1 b - - bm Bd6
*** Problem   Solution(s): Bd6 (bm)
BR ** -- ** -- BR BK **
** BB WR -- BB BP BP BP
-- ** -- ** BP BN -- **
** BP ** -- WN -- ** --
-- WP -- ** -- ** -- **
WP -- ** -- WP -- ** --
-- ** -- ** WB WP WP WP
** -- ** WR ** -- WK --
mv 1 stage 0, black to move, computer plays black
hash=7c0b5c5a94d5aab9
pawnhash=5d73c8b888ee2929
Alpha=1927 Beta=2728 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 5<a8a3 1927  0.00      104 a8a3
 1/ 5 a8a3 -593  0.00      187 a8a3 c7e7
 2/ 5 a8a3 -593  0.04      320 a8a3 c7e7
 3/11 b7g2 -274  0.07     1102 b7g2 g1g2 f6d5
 4/11 f6d5 -324  0.10     3453 f6d5 c7b7 a8a3 e2b5 e7b4
 5/11<f6d5 -724  0.14     6744 f6d5 c7b7 a8a3 e2b5 e7b4
 5/11 a8a3 -766  0.19    11866 a8a3 c7e7 b7a6 e7a7
 6/13 a8a3 -381  0.32    24590 a8a3 c7b7 e7b4 d1b1 f6d5 e2b5
 7/13>a8a3 19  0.56    50271 a8a3 c7b7 e7b4 e2b5 a3a2 b7c7
 7/13 e7d6 503  0.70    65296 e7d6 d1d6 f6e8 d6d7 e8c7 d7c7
 8/15 e7d6 373  1.08   104482 e7d6 d1d6 f6e8 d6d7 e8c7 d7c7 b7e4 e2b5 a8a3
 9/17 e7d6 373  2.20   230387 e7d6 d1d6 f6e8 d6d7 e8c7 d7c7 b7e4 e2b5 a8a3
10/18 e7d6 361  4.49   489006 e7d6 d1d6 f6e8 d6d7 e8c7 d7c7 a8b8 f2f4
11/20 Te7d6  663  6.03   661509 e7d6 d1d6 f6e8 d6d7 e8c7 d7c7 b7a6 e2h5 f7f5
nps=109794 h/p/q=37.00%/99.00%/0.00% q=77.0% bc=53% br=2.22
mp=2426/1381/-1208/-1951
pawnx=53 recapx=1293 qcheckx=0 checkx=3736 qfutilx=132075 onereplyx=508
mthrx=3481 futilx=0 bmx=0
+ 8.91/20.86 93% 76/81 bf=2.09 h/p/q=33.16%/96.42%/0.00% 398.42 49478072
610840/5/124184 201958/130069/150544/1703381/6125584/168503/0/27147
*** Problem   Solution(s): Bh7+ (bm)
[D] 3rr1k1/pp3pp1/4b3/8/2P1B2R/6QP/P3q1P1/5R1K w - - bm Bh7+
*** Problem   Solution(s): Bh7+ (bm)
-- ** -- BR BR ** BK **
BP BP ** -- ** BP BP --
-- ** -- ** BB ** -- **
** -- ** -- ** -- ** --
-- ** WP ** WB ** -- WR
** -- ** -- ** -- WQ WP
WP ** -- ** BQ ** WP **
** -- ** -- ** WR ** WK
mv 1 stage 0, white to move, computer plays white
hash=3d8a6a6f25ed8d13
pawnhash=f7f150472bd26711
Alpha=-718 Beta=82 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 6 f1f2 -62  0.01      252 f1f2 e2c4 e4b7
 2/ 8 e4h7 242  0.02     1190 e4h7 g8f8 f1f2
 3/11 e4h7 262  0.04     3250 e4h7 g8f8 g3a3 e8e7 f1c1
 4/15 e4h7 234  0.10     8678 e4h7 g8f8 f1f2 d8d1 h1h2
 5/19<e4h7 -166  0.26    24936 e4h7 g8f8 f1f2 d8d1 h1h2 e6c4 f2e2
 5/19 e4h7 -266  0.43    42505 e4h7 g8f8 g3a3 e8e7 f1a1 e6c4 a3a7
 6/19>e4h7 134  0.70    69470 e4h7 g8f8 g3a3 e8e7 h7d3 e2e3
 6/19 f1f2 135  1.25   122551 f1f2 e2d1 h1h2 b7b6 e4h7 g8f8 mtmt
 7/19>f1f2 535  1.72   174551 f1f2 e2d1 h1h2 b7b6 h4h7 g7g6
 7/19 e4h7 5413  2.35   248303 e4h7 g8f8 g3a3 e8e7 h7d3 e2f1 d3f1 e6c4 f7f5
 8/23>e4h7 5813  2.46   260711 e4h7 g8f8 g3a3 e8e7 h7d3 e2f1 d3f1 e6c8 f7f5
 8/27 Te4h7  7250  6.01   720896 e4h7 g8f8 g3a3 e8e7 h7d3 e2f1 d3f1 e6c8 f7f5
nps=119870 h/p/q=20.00%/99.00%/0.00% q=72.0% bc=53% br=2.47
mp=1599/26843596/-1345/-26738600
pawnx=149 recapx=600 qcheckx=0 checkx=25701 qfutilx=87018 onereplyx=3898
mthrx=3485 futilx=0 bmx=1042
+ 8.90/20.94 93% 77/82 bf=2.10 h/p/q=33.00%/96.45%/0.00% 404.44 50198968
612183/5/124120 202107/130669/154029/1729082/6212602/172401/0/28189
*** Problem   Solution(s): Qxd7 (bm)
[D] 3rr1k1/ppqbRppp/2p5/8/3Q1n2/2P3N1/PPB2PPP/3R2K1 w - - bm Qxd7
*** Problem   Solution(s): Qxd7 (bm)
-- ** -- BR BR ** BK **
BP BP BQ BB WR BP BP BP
-- ** BP ** -- ** -- **
** -- ** -- ** -- ** --
-- ** -- WQ -- BN -- **
** -- WP -- ** -- WN --
WP WP WB ** -- WP WP WP
** -- ** WR ** -- WK --
mv 1 stage 0, white to move, computer plays white
hash=cbf648212aa826f0
pawnhash=f7e11b6b263b123b
Alpha=920 Beta=1721 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 5>d4a7 1721  0.00       33 d4a7
 1/ 5 e7e8 1722  0.00      182 e7e8 d7e8 d4d8
 2/ 8>e7e8 2122  0.01      282 e7e8 d7e8 d4d8 c7d8
 2/ 8 e7e8 4408  0.02     1294 e7e8 d8e8 d4d7 e8e1 g3f1
 3/10<e7e8 4007  0.04     3858 e7e8 d8e8 d4d7 e8e1 g3f1 c7d7
 3/10 e7e8 4007  0.05     3953 e7e8 d8e8 d4d7 e8e1 g3f1 c7d7
 4/13>e7e8 4407  0.09     7319 e7e8 d8e8 d4d7 e8e1 g3f1 c7d7 d1d7 e1b1
 4/13 d4d7 4408  0.13    11949 d4d7 f4h3 g2h3 c7d7 e7d7 d8d7
 5/13>d4d7 4808  0.18    16114 d4d7 f4h3 g2h3 c7d7 e7d7 d8d7 d1d7 e8e1 g1g2
 5/13 d4d7 4809  0.31    30269 d4d7 f4h3 g2h3 c7d7 e7d7 d8d7 d1d7 e8e1 g1g2
 6/17 d4d7 4789  0.82    83253 d4d7 c7b8 e7e8 d8e8 c2b3 f4e6
 7/17 d4d7 4921  2.40   240533 d4d7 c7c8 d7c8 d8d1 c2d1 e8c8 e7b7 c8e8
 8/23 Td4d7  4930  6.00   638976 d4d7 c7b8 e7e8 d8e8 c2b3 e8f8
nps=106407 h/p/q=30.00%/98.00%/0.00% q=75.0% bc=56% br=2.39
mp=2455/1383/-1410/-1660
pawnx=2 recapx=2958 qcheckx=0 checkx=20481 qfutilx=111675 onereplyx=2846
mthrx=3485 futilx=0 bmx=102
+ 8.89/20.96 93% 78/83 bf=2.10 h/p/q=32.96%/96.47%/0.00% 410.44 50837944
612505/5/123861 202109/133627/157514/1749563/6324277/175247/0/28291
*** Problem   Solution(s): Qg8+ (bm)
[D] r2q1r1k/2p1b1pp/p1n5/1p1Q1bN1/4n3/1BP1B3/PP3PPP/R4RK1 w - - bm Qg8+
*** Problem   Solution(s): Qg8+ (bm)
BR ** -- BQ -- BR -- BK
** -- BP -- BB -- BP BP
BP ** BN ** -- ** -- **
** BP ** WQ ** BB WN --
-- ** -- ** BN ** -- **
** WB WP -- WB -- ** --
WP WP -- ** -- WP WP WP
WR -- ** -- ** WR WK --
mv 1 stage 0, white to move, computer plays white
hash=5e22c6485e40f304
pawnhash=7933f4e5a9110e69
Alpha=562 Beta=1363 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 5>Md5g8  99993  0.00       83 d5g8 f8g8 g5f7
nps=41500 h/p/q=0.00%/85.00%/0.00% q=93.0% bc=56% br=0.00 mp=0/603/0/0
pawnx=0 recapx=0 qcheckx=0 checkx=2 qfutilx=5 onereplyx=1 mthrx=3485 futilx=0
bmx=0
+ 8.80/20.77 94% 79/84 bf=2.10 h/p/q=32.57%/96.33%/0.00% 410.45 50838028
605215/5/123861 202109/133627/160999/1749565/6324282/175248/0/28291
*** Problem   Solution(s): Na6 (bm)
[D] kr2R3/p4r2/2pq4/2N2p1p/3P2p1/Q5P1/5P1P/5BK1 w - - bm Na6
*** Problem   Solution(s): Na6 (bm)
BK BR -- ** WR ** -- **
BP -- ** -- ** BR ** --
-- ** BP BQ -- ** -- **
** -- WN -- ** BP ** BP
-- ** -- WP -- ** BP **
WQ -- ** -- ** -- WP --
-- ** -- ** -- WP -- WP
** -- ** -- ** WB WK --
mv 1 stage 0, white to move, computer plays white
hash=3b4d8120075fcd0c
pawnhash=96e72c41b055e3ea
Alpha=623 Beta=1424 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 6 e8b8 949  0.00      217 e8b8 d6b8 f2f4
 2/ 7 e8b8 891  0.01      431 e8b8 d6b8 h2h3
 3/ 8 e8b8 966  0.02     1769 e8b8 d6b8 a3a6 f7f6
 4/11>e8b8 1366  0.06     5774 e8b8 d6b8 a3a6 b8e8 h2h3
 4/11 c5a6 5186  0.07     6349 c5a6 d6g3 f2g3 b8e8
 5/11>c5a6 5586  0.09     8115 c5a6 d6g3 h2g3 b8e8 a6c5
 5/12 c5a6 6962  0.12    12324 c5a6 d6d8 e8d8 f7f6
 6/14<c5a6 6561  0.21    23863 c5a6 d6d8 e8d8 f7f6 a6c5 b8d8
 6/15 c5a6 6558  0.34    40184 c5a6 d6g3 f2g3 b8e8 a3c5 a8b7
 7/15<c5a6 6157  0.48    59471 c5a6 d6g3 f2g3 b8e8 a3c5 a8b7 c5c6 b7c6 g1g2 f7f6
 7/15 c5a6 6157  0.57    70247 c5a6 d6g3 h2g3 b8e8 a3d6 e8c8 f1g2
 8/22 c5a6 6556  1.26   156058 c5a6 d6d8 e8d8 b8d8 a6c5
 9/22 c5a6 6901  2.96   374039 c5a6 b8e8 a3d6 e8c8 f1d3 f5f4 g3f4
10/26 c5a6 6942  5.78   752775 c5a6 d6d8 e8d8 b8d8 a3a4 d8c8
11/26<Tc5a6  6541  6.00   781312 c5a6 d6d8 e8d8 b8d8 a3a4 d8c8 a4c6 c8c6 f1g2
a8b7 g2c6 b7c6 a6c5
nps=130175 h/p/q=33.00%/99.00%/0.00% q=70.0% bc=51% br=2.18
mp=399/957/-1368/-1182
pawnx=1951 recapx=1939 qcheckx=0 checkx=29023 qfutilx=72548 onereplyx=4247
mthrx=3557 futilx=0 bmx=253
+ 8.82/20.84 94% 80/85 bf=2.10 h/p/q=32.58%/96.36%/0.00% 416.45 51619340
607286/5/123952 204060/135566/164556/1778588/6396830/179495/0/28544
*** Problem   Solution(s): Ng4+ (bm)
[D] 8/p7/1ppk1n2/5ppp/P1PP4/2P1K1P1/5N1P/8 b - - bm Ng4+
*** Problem   Solution(s): Ng4+ (bm)
-- ** -- ** -- ** -- **
BP -- ** -- ** -- ** --
-- BP BP BK -- BN -- **
** -- ** -- ** BP BP BP
WP ** WP WP -- ** -- **
** -- WP -- WK -- WP --
-- ** -- ** -- WN -- WP
** -- ** -- ** -- ** --
mv 1 stage 0, black to move, computer plays black
hash=3d60bd8b45698b0f
pawnhash=3a4515ed4124581a
Alpha=-456 Beta=344 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 4>c6c5 344  0.00       44 c6c5
 1/ 4 f6g4 494  0.01       85 f6g4 f2g4 f5g4
 2/ 7 a7a6 189  0.01      216 a7a6
 3/ 8 f6g4 103  0.02      678 f6g4 f2g4 f5g4 e3d3
 4/10 f6g4 380  0.02     1436 f6g4 f2g4 f5g4 e3e4 d6d7
 5/13 a7a6 -19  0.04     3523 a7a6 f2g4 f5g4
 6/14 g5g4 75  0.10    10947 g5g4 f2g4 f5g4
 7/16 d6e6 45  0.45    52683 d6e6 e3d3 h5h4 g3h4 g5h4 f2h3
 8/17 d6e6 66  0.79   101808 d6e6 h2h3 f6d7 e3d3 f5f4 f2e4 f4g3 e4g3
 9/20 f6g4 56  2.21   308792 f6g4 f2g4 f5g4 e3d3 d6d7 c4c5 b6c5 d4c5 a7a6 c3c4
d7e6
10/23 a7a6 55  4.02   573161 a7a6 f2h3 f6e4 e3d3 d6d7 c4c5 b6c5
11/23 Ta7a6  -3  6.04   868352 a7a6 f2h3 f6e4 e3d3 d6e6 h3g1 e4c3 d3c3 h5h4
nps=143696 h/p/q=33.00%/92.00%/0.00% q=69.0% bc=60% br=2.27
mp=3487/2799/-1651/-1956
pawnx=15054 recapx=17900 qcheckx=0 checkx=28913 qfutilx=22897 onereplyx=20
mthrx=3557 futilx=0 bmx=25
- 8.85/20.86 93% 80/86 bf=2.10 h/p/q=32.58%/96.31%/0.00% 422.49 52487692
610322/5/124234 219114/153466/168113/1807501/6419727/179515/0/28569
*** Problem   Solution(s): Rxe5 (bm)
[D] 8/p3k1p1/4r3/2ppNpp1/PP1P4/2P3KP/5P2/8 b - - bm Rxe5
*** Problem   Solution(s): Rxe5 (bm)
-- ** -- ** -- ** -- **
BP -- ** -- BK -- BP --
-- ** -- ** BR ** -- **
** -- BP BP WN BP BP --
WP WP -- WP -- ** -- **
** -- WP -- ** -- WK WP
-- ** -- ** -- WP -- **
** -- ** -- ** -- ** --
mv 1 stage 0, black to move, computer plays black
hash=e48040ea3df27bf
pawnhash=78d6281937538e16
Alpha=2885 Beta=3686 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 2>a7a6 3686  0.00        5 a7a6
 1/ 3 e6e5 3689  0.00       41 e6e5
 2/ 4>e6e5 4089  0.00      109 e6e5 d4e5
 2/ 5 f5f4 4094  0.01      256 f5f4 g3h2 e6e5
 3/ 6 f5f4 3783  0.01      622 f5f4 g3h2 c5c4
 4/ 8<f5f4 3382  0.02     1809 f5f4 g3h2 c5b4 c3b4 a7a6 mtmt
 4/ 8 f5f4 3382  0.02     1840 f5f4 g3h2 c5b4 c3b4 a7a6 mtmt
 5/12 c5b4 3370  0.06     6368 c5b4 c3b4 e6a6 a4a5 g7g6
 6/12 c5c4 3475  0.09    11610 c5c4 a4a5 f5f4 g3g4 e6h6
 7/14 c5b4 3240  0.23    32438 c5b4 c3b4 e6a6 a4a5 a6h6 mtmt
 8/16 c5b4 3292  0.43    64257 c5b4 c3b4 a7a6 f2f4 e7f6 f4g5 f6g5 e5f3 g5f6 g3f4
 9/20 c5b4 3212  1.04   160060 c5b4 c3b4 e6b6 b4b5 a7a6 e5c6 e7e6 g3f3 g7g6
10/21 c5b4 3248  2.27   359037 c5b4 c3b4 e6b6 f2f3 b6a6 a4a5 a6h6 b4b5 e7d6
11/23 c5b4 3281  4.47   709531 c5b4 c3b4 e6b6 e5d3 b6c6 d3c5 g7g6 b4b5 c6c8 g3f3
12/25 Tc5b4  3288  6.01   976916 c5b4 c3b4 e6b6 e5d3 b6c6 d3c5 c6h6 c5d3 h6c6
d3c5 c6h6 c5d3 h6c6 d3c5 c6h6 c5d3 h6c6
nps=162657 h/p/q=27.00%/93.00%/0.00% q=67.0% bc=52% br=1.88
mp=1484/1660/-1559/-1518
pawnx=17275 recapx=4342 qcheckx=0 checkx=29683 qfutilx=83668 onereplyx=116
mthrx=3557 futilx=0 bmx=387
- 8.89/20.91 91% 80/87 bf=2.10 h/p/q=32.52%/96.28%/0.00% 428.50 53464608
614536/5/124773 236389/157808/171670/1837184/6503395/179631/0/28956
*** Problem   Solution(s): Rxg2+ (bm)
[D] r6k/p1Q4p/2p1b1rq/4p3/B3P3/4P3/PPP3P1/4RRK1 b - - bm Rxg2+
*** Problem   Solution(s): Rxg2+ (bm)
BR ** -- ** -- ** -- BK
BP -- WQ -- ** -- ** BP
-- ** BP ** BB ** BR BQ
** -- ** -- BP -- ** --
WB ** -- ** WP ** -- **
** -- ** -- WP -- ** --
WP WP WP ** -- ** WP **
** -- ** -- WR WR WK --
mv 1 stage 0, black to move, computer plays black
hash=2b641b339e293a3f
pawnhash=e3edbe3a1fedbf93
Alpha=-3535 Beta=-2734 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 7<e6a2 -3535  0.01      214 e6a2
 1/ 7 e6a2 -3673  0.01      431 e6a2 c7e5
 2/ 9 e6a2 -3335  0.02     1153 e6a2 c7e5 g6g7
 3/12>e6a2 -2934  0.03     2099 e6a2 c7e5 g6g7 e5h2
 3/12 g6g2 -2933  0.04     2797 g6g2 g1g2 a8g8 g2f2 h6f6 f2e2 e6c4
 4/16>g6g2 -2532  0.09     7920 g6g2 g1g2 a8g8 g2f2 h6f6 f2e2 e6c4 e2d1 c4f1
c7a7
 4/16 g6g2 6153  0.12    10750 g6g2 g1g2 a8g8 g2f2 h6f6 f2e2 e6c4 e2d1 c4f1 c7a7
 5/18>g6g2 6553  0.17    17127 g6g2 g1g2 a8g8 c7g7 g8g7 g2f2 g7f7 f2g1 e6a2 f1f7
a2f7 mtmt
 5/18 Mg6g2  99970  0.19    19379 g6g2 g1g2 a8g8 c7g7 g8g7 g2f2 g7f7 f2g1 e6a2
f1f7 a2f7 mtmt
nps=100932 h/p/q=34.00%/98.00%/0.00% q=76.0% bc=55% br=1.63 mp=0/155/-1064/0
pawnx=0 recapx=20 qcheckx=0 checkx=1052 qfutilx=1995 onereplyx=84 mthrx=3557
futilx=0 bmx=0
+ 8.84/20.88 92% 81/88 bf=2.10 h/p/q=32.53%/96.30%/0.00% 428.69 53483988
607773/5/124762 236389/157828/175227/1838236/6505390/179715/0/28956
*** Problem   Solution(s): g5 (bm)
[D] 1r3b1k/p4rpp/4pp2/3q4/2ppbPPQ/6RK/PP5P/2B1NR2 b - - bm g5
*** Problem   Solution(s): g5 (bm)
-- BR -- ** -- BB -- BK
BP -- ** -- ** BR BP BP
-- ** -- ** BP BP -- **
** -- ** BQ ** -- ** --
-- ** BP BP BB WP WP WQ
** -- ** -- ** -- WR WK
WP WP -- ** -- ** -- WP
** -- WB -- WN WR ** --
mv 1 stage 0, black to move, computer plays black
hash=44c75fcca2acffdd
pawnhash=577835bbf82be5a4
Alpha=3167 Beta=3968 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 5 d4d3 3796  0.00       73 d4d3
 2/ 5 f6f5 3629  0.01      300 f6f5
 3/ 8>f8b4 4029  0.02     1238 f8b4 f1g1 b4e1 g1e1
 3/ 8 g7g5 4132  0.03     1842 g7g5 h4h5 g5f4
 4/ 9>g7g5 4532  0.04     2382 g7g5 h4h5 g5f4 h5f7
 4/ 9 g7g5 4532  0.04     3321 g7g5 h4h5 g5f4 h5f7
 5/13>g7g5 4932  0.09     6878 g7g5 h4h5 g5f4 f1f4 d5h5 g4h5 e4f5 h3g2 d4d3
 5/13 g7g5 8101  0.12    10565 g7g5 f4g5 f6g5 f1f7 g5h4 h3h4
 6/13<g7g5 7700  0.20    18350 g7g5 f4g5 f6g5 f1f7 g5h4 h3h4 e4f5
 6/13 g7g5 7700  0.21    19822 g7g5 f4g5 f6g5 f1f7 g5h4 h3h4 e4f5
 7/15 g7g5 8070  0.44    43609 g7g5 f4g5 f6g5 f1f7 g5h4 h3h4 f8c5 f7b7
 8/19 g7g5 8171  0.99   100784 g7g5 f4g5 f6g5 f1f7 g5h4 g3g1 d5a5 a2a4
 9/21 g7g5 8134  2.00   215249 g7g5 f4g5 f6g5 f1f7 g5h4 h3h4 d5a5 e1g2 d4d3
10/23 g7g5 8306  4.41   478943 g7g5 f4g5 f6g5 f1f7 g5h4 h3h4 f8b4 f7f1
11/23 Tg7g5  7906  6.02   650240 g7g5 f4g5 f6g5 f1f7 g5h4 h3h4 d5a5 c1e3 d4e3
f7f8 b8f8
nps=107959 h/p/q=38.00%/97.00%/0.00% q=76.0% bc=52% br=2.23
mp=2254/26843596/-1420/-26738600
pawnx=12232 recapx=1865 qcheckx=0 checkx=13106 qfutilx=94028 onereplyx=1181
mthrx=3557 futilx=0 bmx=57
+ 8.87/20.90 92% 82/89 bf=2.10 h/p/q=32.60%/96.30%/0.00% 434.71 54134228
608250/5/124529 248621/159693/178784/1851342/6599418/180896/0/29013
*** Problem   Solution(s): Nxg7 (bm)
[D] 3qrrk1/1pp2pp1/1p2bn1p/5N2/2P5/P1P3B1/1P4PP/2Q1RRK1 w - - bm Nxg7
*** Problem   Solution(s): Nxg7 (bm)
-- ** -- BQ BR BR BK **
** BP BP -- ** BP BP --
-- BP -- ** BB BN -- BP
** -- ** -- ** WN ** --
-- ** WP ** -- ** -- **
WP -- WP -- ** -- WB --
-- WP -- ** -- ** WP WP
** -- WQ -- WR WR WK --
mv 1 stage 0, white to move, computer plays white
hash=54416291922df24c
pawnhash=dfca50757108af32
Alpha=-109 Beta=691 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 5 b2b3 175  0.00       91 b2b3 e6f5 f1f5
 2/ 7 e1d1 85  0.01      372 e1d1
 3/ 8 e1d1 243  0.02     1243 e1d1 e6d7
 4/11 e1d1 191  0.06     4728 e1d1 f6d7 b2b3 e6f5 f1f5
 5/12>e1d1 591  0.14    12902 e1d1 e6d7 a3a4
 5/12 f5g7 1030  0.20    18497 f5g7 g8g7 g3e5 e6c4 f1f6
 6/15 f5g7 984  0.37    36262 f5g7 g8g7 g3h4 e6c4 f1f6
 7/15>f5g7 1384  0.52    49527 f5g7 g8g7 g3h4 e6c4 f1f6 e8e1 h4e1 d8f6 c1h6 f6h6
 7/16 f5g7 1386  0.92    92100 f5g7 g8g7 f1f6 d8f6 g3e5 e6c4 e5f6 g7f6 c1h6
 8/18 f5g7 1385  1.72   174887 f5g7 g8g7 g3h4 e6c4 h4f6 d8f6 f1f6 e8e1 c1e1 g7f6
 9/25 Tf5g7  1416  6.02   633856 f5g7 g8g7 g3h4 d8d3 f1f6 f8h8 b2b3 e8d8
nps=105362 h/p/q=21.00%/99.00%/0.00% q=77.0% bc=56% br=2.44
mp=1557/26843603/-1757/-1750
pawnx=115 recapx=2251 qcheckx=0 checkx=17662 qfutilx=111147 onereplyx=1192
mthrx=3557 futilx=0 bmx=0
+ 8.87/20.94 92% 83/90 bf=2.10 h/p/q=32.47%/96.33%/0.00% 440.73 54768084
608534/5/124268 248736/161944/182341/1869004/6710565/182088/0/29013
*** Problem   Solution(s): Be6 (bm)
[D] 2qr2k1/4b1p1/2p2p1p/1pP1p3/p2nP3/PbQNB1PP/1P3PK1/4RB2 b - - bm Be6
*** Problem   Solution(s): Be6 (bm)
-- ** BQ BR -- ** BK **
** -- ** -- BB -- BP --
-- ** BP ** -- BP -- BP
** BP WP -- BP -- ** --
BP ** -- BN WP ** -- **
WP BB WQ WN WB -- WP WP
-- WP -- ** -- WP WK **
** -- ** -- WR WB ** --
mv 1 stage 0, black to move, computer plays black
hash=843cc64af28c64e4
pawnhash=835ce079963df083
Alpha=-371 Beta=429 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 3>b3f7 429  0.00      126 b3f7 e3d4 d8d4
 1/ 3 g8h7 437  0.01      182 g8h7 e3d4 d8d4
 2/ 6 b3f7 344  0.01      375 b3f7 e3d4 d8d4
 3/ 8 g8h7 60  0.02     1332 g8h7 f1e2
 4/ 9 d4c2 385  0.05     3413 d4c2 e1c1 c2e3 f2e3
 5/11 d4c2 329  0.11     9104 d4c2 e1e2 c2e3 e2e3 d8d4
 6/16 b3e6 342  0.37    32926 b3e6 g3g4 e6f7
 7/16 b3e6 456  0.69    62186 b3e6 g3g4 e6g4 h3g4 c8g4 g2h1 g4e4 h1h2
 8/20 b3e6 692  1.37   124931 b3e6 g3g4 e6g4 h3g4 c8g4 g2h1 g4h4 h1g2 h4e4 f2f3
d4f3
 9/21>b3e6 1092  2.02   188054 b3e6 g3g4 e6g4 h3g4 c8g4 g2h1 g4h4 h1g2 h4e4 f2f3
d4f3 e3d4
 9/21 b3e6 1124  3.20   308831 b3e6 g3g4 e6g4 h3g4 c8g4 g2h1 g4h4 h1g2 h4e4 g2g3
d4e6
10/24 Tb3e6  1523  6.01   569344 b3e6 g3g4 e6g4 h3g4 c8g4 g2h1 g4h4 h1g2 h4e4
g2g3 e4g6 g3h3
nps=94701 h/p/q=34.00%/97.00%/0.00% q=77.0% bc=58% br=2.31
mp=1973/2370/-1744/-1690
pawnx=3434 recapx=2389 qcheckx=0 checkx=11120 qfutilx=154503 onereplyx=692
mthrx=3557 futilx=0 bmx=0
+ 8.88/20.98 92% 84/91 bf=2.10 h/p/q=32.48%/96.34%/0.00% 446.74 55337428
608104/5/123870 252170/164333/185898/1880124/6865068/182780/0/29013
*** Problem   Solution(s): Bxg4 (bm)
[D] r4rk1/1p2ppbp/p2pbnp1/q7/3BPPP1/2N2B2/PPP4P/R2Q1RK1 b - - bm Bxg4
*** Problem   Solution(s): Bxg4 (bm)
BR ** -- ** -- BR BK **
** BP ** -- BP BP BB BP
BP ** -- BP BB BN BP **
BQ -- ** -- ** -- ** --
-- ** -- WB WP WP WP **
** -- WN -- ** WB ** --
WP WP WP ** -- ** -- WP
WR -- ** WQ ** WR WK --
mv 1 stage 0, black to move, computer plays black
hash=c097a10de4540a83
pawnhash=890f9d0284722009
Alpha=-739 Beta=61 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 6>f6g4 61  0.00        2 f6g4
 1/ 6 f6g4 1400  0.00       59 f6g4
 2/10 f6g4 1347  0.01      387 f6g4 f3e2 g7d4 d1d4
 3/10<f6g4 946  0.04     1961 f6g4 f3e2 g7d4 d1d4 f7f6
 3/10 f6g4 945  0.05     2927 f6g4 d4g7 g8g7 f3g4
 4/12<f6g4 544  0.10     6882 f6g4 d4g7 g8g7 f3g4 f7f6
 4/15 a5d8 -241  0.26    17923 a5d8 g1g2
 5/21 e6c4 -35  0.46    33991 e6c4 f3e2 a5c7
 6/21 h7h5 -40  1.31   102020 h7h5 g4g5 f6d7 d4g7 g8g7
 7/21 a5b4 -104  2.93   235856 a5b4 g4g5 f6h5 d4g7 h5g7 a1b1 a8c8
 8/22 a5b4 -145  6.03   497598 a5b4 a2a3 b4b2 c3d5 b2b5 d5e7 g8h8 a1b1
 9/22<Ta5b4  -545  6.03   497664 a5b4 a2a3 b4b2 c3d5 b2b5 d5e7 g8h8 a1b1
nps=82559 h/p/q=26.00%/96.00%/0.00% q=84.0% bc=52% br=2.67 mp=0/161/0/-54
pawnx=794 recapx=2830 qcheckx=0 checkx=4672 qfutilx=147229 onereplyx=101
mthrx=3557 futilx=0 bmx=0
- 8.88/20.99 91% 84/92 bf=2.11 h/p/q=32.41%/96.34%/0.00% 452.77 55835092
606903/5/123320 252964/167163/189455/1884796/7012297/182881/0/29013
*** Problem   Solution(s): Bh6 (bm)
[D] r1b1k1nr/pp3pQp/4pq2/3pn3/8/P1P5/2P2PPP/R1B1KBNR w KQkq - bm Bh6
*** Problem   Solution(s): Bh6 (bm)
BR ** BB ** BK ** BN BR
BP BP ** -- ** BP WQ BP
-- ** -- ** BP BQ -- **
** -- ** BP BN -- ** --
-- ** -- ** -- ** -- **
WP -- WP -- ** -- ** --
-- ** WP ** -- WP WP WP
WR -- WB -- WK WB WN WR
mv 1 stage 0, white to move, computer plays white
hash=d15166f7afafdeef
pawnhash=2ec66ebb1500903c
Alpha=-1287 Beta=-486 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 6>f1b5 -486  0.00       73 f1b5 c8d7
 1/ 6 c1h6 511  0.00      144 c1h6 f6g7 h6g7
 2/ 7 g7f6 317  0.01      560 g7f6 g8f6 g1e2
 3/ 8 g7f6 293  0.02     1550 g7f6 g8f6 c1e3
 4/11 g7f6 92  0.05     4255 g7f6 g8f6 f1b5 c8d7 c1f4
 5/14 g7f6 413  0.08     8854 g7f6 g8f6 c1f4 f6d7 g1e2
 6/14 c1h6 471  0.27    27676 c1h6 e8d7 g1h3
 7/15 g7f6 73  0.90    97014 g7f6 g8f6 a1b1 f6d7 g1e2 mtmt
 8/16 c1h6 -192  1.92   206392 c1h6 e5g6 g7f6 g8f6 f1b5 c8d7 b5d7 e8d7 h6g7
 9/21>c1h6 208  2.74   284202 c1h6 e5g6 g7f6 g8f6 f1b5 c8d7 b5d7 e8d7 h6g7 a7a5
g7f6
 9/21 c1h6 679  5.13   524097 c1h6 e5d7 f1b5 e8e7 h6g5
10/21>Tc1h6  1079  6.03   615437 c1h6 e5d7 f1b5 e8e7 h6g5
nps=102029 h/p/q=34.00%/99.00%/0.00% q=72.0% bc=52% br=2.05
mp=787/1021/-2197/-2128
pawnx=528 recapx=3406 qcheckx=0 checkx=14959 qfutilx=54282 onereplyx=625
mthrx=3629 futilx=0 bmx=37
+ 8.89/20.99 91% 85/93 bf=2.11 h/p/q=32.43%/96.37%/0.00% 458.80 56450528
606995/5/123040 253492/170569/193084/1899755/7066579/183506/0/29050
*** Problem   Solution(s): e4+ (bm)
[D] 8/k7/p7/3Qp2P/n1P5/3KP3/1q6/8 b - - bm e4+
*** Problem   Solution(s): e4+ (bm)
-- ** -- ** -- ** -- **
BK -- ** -- ** -- ** --
BP ** -- ** -- ** -- **
** -- ** WQ BP -- ** WP
BN ** WP ** -- ** -- **
** -- ** WK WP -- ** --
-- BQ -- ** -- ** -- **
** -- ** -- ** -- ** --
mv 1 stage 0, black to move, computer plays black
hash=f5db2c5d63df59b0
pawnhash=19ebeb304143bf7f
Alpha=2298 Beta=3099 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 4 b2b1 2761  0.00       63 b2b1 d3e2
 2/ 6>b2b1 3161  0.01      430 b2b1 d3d2 e5e4
 2/ 6 e5e4 10691  0.01      573 e5e4 d3e4 a4c3 e4d4 c3d5 d4d5
 3/ 8>e5e4 11091  0.01      665 e5e4 d3e4 a4c3 e4d4 c3d5 d4d5
 3/ 9 e5e4 11091  0.02     1937 e5e4 d3e4 a4c3 e4f5 b2f2 f5g6
 4/ 9>e5e4 11491  0.02     2055 e5e4 d3e4 a4c3 e4f5 b2f2 f5g6 c3d5
 4/12 e5e4 11491  0.06     6394 e5e4 d3e4 a4c3 e4e5 b2h2 e5e6
 5/15<e5e4 11090  0.15    20234 e5e4 d3e4 a4c3 e4f5 b2f2 f5e6 c3d5 e6d5
 5/15 e5e4 11090  0.15    20266 e5e4 d3e4 a4c3 e4f5 b2f2 f5e6 c3d5 e6d5
 6/17<e5e4 10689  0.32    47958 e5e4 d3e4 a4c3 e4f5 b2f2 f5e6 c3d5 e6d5 f2e3
 6/17 e5e4 10689  0.32    47991 e5e4 d3e4 a4c3 e4f5 b2f2 f5e6 c3d5 e6d5 f2e3
 7/19 e5e4 10691  0.80   129400 e5e4 d3e4 a4c3 e4d3 c3d5 c4d5 b2b3 d3e4 b3c4
 8/19>e5e4 11091  0.82   132584 e5e4 d3e4 a4c3 e4d3 c3d5 c4d5 b2b3 d3e4 b3c4
e4e5 a7b6 e5e6
 8/21 e5e4 12253  1.74   288067 e5e4 d3e4 a4c3 e4d3 c3d5 c4d5 b2b3 d3e4 b3c2
e4f3 c2f5 f3g2
 9/25 e5e4 12265  3.42   575059 e5e4 d3e4 a4c3 e4d3 c3d5 c4d5 b2b1 d3d4 b1d1
d4c4 d1h5 c4d4
10/28 Te5e4  12275  6.02  1020928 e5e4 d3e4 a4c3 e4d3 c3d5 c4d5 b2b1 d3d4 b1d1
d4c4 d1h5 c4d4
nps=169702 h/p/q=37.00%/99.00%/0.00% q=61.0% bc=64% br=2.12 mp=88/103/0/0
pawnx=3244 recapx=3367 qcheckx=0 checkx=131321 qfutilx=66222 onereplyx=3268
mthrx=3629 futilx=0 bmx=440
+ 8.90/21.06 91% 86/94 bf=2.11 h/p/q=32.48%/96.39%/0.00% 464.82 57471456
611398/5/123644 256736/173936/196713/2031076/7132801/186774/0/29490
*** Problem   Solution(s): Ng4+ (bm)
[D] 2r5/1r6/4pNpk/3pP1qp/8/2P1QP2/5PK1/R7 w - - bm Ng4+
*** Problem   Solution(s): Ng4+ (bm)
-- ** BR ** -- ** -- **
** BR ** -- ** -- ** --
-- ** -- ** BP WN BP BK
** -- ** BP WP -- BQ BP
-- ** -- ** -- ** -- **
** -- WP -- WQ WP ** --
-- ** -- ** -- WP WK **
WR -- ** -- ** -- ** --
mv 1 stage 0, white to move, computer plays white
hash=ba72d874f60d6498
pawnhash=c5dfa2276a3a551b
Alpha=-3604 Beta=-2803 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 5 e3g5 -3530  0.00       69 e3g5 h6g5 a1a3
 2/ 7>e3g5 -3129  0.01      419 e3g5 h6g5 a1c1
 2/ 8 f6g4 4169  0.01      529 f6g4 h5g4 a1h1 h6g7 e3g5 g4f3
 3/ 8 f6g4 4016  0.02     1188 f6g4 h5g4 a1h1 h6g7 e3g5 g4f3 g2f3 c8c3
 4/12 f6g4 3693  0.03     2965 f6g4 h5g4 a1h1 h6g7 e3g5 g4f3 g2f3 c8c3 f3e2 b7b2
 5/14 f6g4 3512  0.07     7202 f6g4 h5g4 a1h1 h6g7 e3g5 g4f3 g2f3 c8c3 f3g2 b7b2
 6/17>f6g4 3912  0.09     9373 f6g4 h5g4 a1h1 h6g7 e3g5 g4f3 g2f3 c8c3 f3g2 b7b2
g5f4
 6/17 f6g4 3912  0.12    14455 f6g4 h5g4 a1h1 h6g7 e3g5 g4f3 g2f3 c8c3 f3g2 b7b2
g5f4
 7/18>f6g4 4312  0.19    22923 f6g4 h5g4 a1h1 h6g7 e3g5 g4f3 g2f3 c8c3 f3g2 b7b2
g5g4 g7f7
 7/18 f6g4 4312  0.30    37132 f6g4 h5g4 a1h1 h6g7 e3g5 g4f3 g2f3 c8c3 f3g2 b7b2
g5g4 g7f7
 8/20>f6g4 4712  0.47    57177 f6g4 h5g4 a1h1 h6g7 e3g5 g4f3 g2f3 c8c3 f3g2 b7b2
g5g4 d5d4 g4d4 c3c2
 8/20 f6g4 4712  0.62    79449 f6g4 h5g4 a1h1 h6g7 e3g5 g4f3 g2f3 c8c3 f3g2 b7b2
g5g4 d5d4 g4d4 c3c2
 9/23>f6g4 5112  1.21   150673 f6g4 h5g4 a1h1 h6g7 e3g5 g4f3 g2f3 c8c3 f3g2 b7b2
g5g4 d5d4 g4d4 c3h3
 9/23 f6g4 6165  2.08   262580 f6g4 h5g4 a1h1 h6g7 e3g5 g4f3 g2f3 c8c3 f3g2 b7b2
g5g4 d5d4 g4d4 c3h3
10/27>f6g4 6565  5.98   766306 f6g4 h5g4 a1h1 h6g7 e3g5 g4f3 g2f3 c8f8 f3e3 b7b2
h1h6 d5d4 c3d4 f8f2
10/27 Tf6g4  6565  6.00   769024 f6g4 h5g4 a1h1 h6g7 e3g5 g4f3 g2f3 c8f8 f3e3
b7b2 h1h6 d5d4 c3d4 f8f2
nps=128107 h/p/q=22.00%/99.00%/0.00% q=70.0% bc=57% br=2.23
mp=1124/994/-173/-26738600
pawnx=2732 recapx=930 qcheckx=0 checkx=42520 qfutilx=69332 onereplyx=4998
mthrx=3629 futilx=0 bmx=469
+ 8.92/21.13 91% 87/95 bf=2.11 h/p/q=32.37%/96.42%/0.00% 470.82 58240480
613058/5/123701 259468/174866/200342/2073596/7202133/191772/0/29959
*** Problem   Solution(s): Qd8+ b3 (bm)
[D] r1b4k/ppp2Bb1/6Pp/3pP3/1qnP1p1Q/8/PPP3P1/1K1R3R w - - bm Qd8+ b3
*** Problem   Solution(s): Qd8+ b3 (bm)
BR ** BB ** -- ** -- BK
BP BP BP -- ** WB BB --
-- ** -- ** -- ** WP BP
** -- ** BP WP -- ** --
-- BQ BN WP -- BP -- WQ
** -- ** -- ** -- ** --
WP WP WP ** -- ** WP **
** WK ** WR ** -- ** WR
mv 1 stage 0, white to move, computer plays white
hash=4e127edb7bce9827
pawnhash=fd8b30e52be238f5
Alpha=682 Beta=1483 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 5>f7d5 1483  0.00        2 f7d5
 1/ 6 h4d8 1561  0.01      123 h4d8 g7f8 d8c7 c4b2
 2/ 6>h4d8 1961  0.01      131 h4d8 g7f8 d8c7 c4b2
 2/ 9 h4d8 2921  0.02      761 h4d8 b4f8 d8f8 g7f8 f7d5
 3/13<h4d8 2520  0.03     2125 h4d8 b4f8 d8f8 g7f8 f7d5 c4e5
 3/13 h4d8 2520  0.04     2136 h4d8 b4f8 d8f8 g7f8 f7d5 c4e5
 4/15 h4d8 2410  0.09     6964 h4d8 b4f8 d8f8 g7f8 f7d5 c4e3
 5/18 h4d8 2487  0.21    19465 h4d8 b4f8 d8c7 c8g4 d1e1
 6/22 h4d8 2649  0.59    53199 h4d8 b4f8 d8c7 c4e3 d1c1
 7/24 h4d8 2632  1.69   170473 h4d8 b4f8 d8c7 c4e3 d1c1 f8b4 c2c3
 8/24>h4d8 3032  2.08   206404 h4d8 b4f8 d8c7 c4e3 d1c1 f4f3 g2f3 f8b4
 8/25 h4d8 3033  3.65   372439 h4d8 b4f8 h1h6 g7h6 d8f8 h6f8 d1h1 f8h6 h1h6 h8g7
h6h7 g7f8 f7d5 c4d2 b1c1 c7c6 g6g7
 9/25>h4d8 3433  3.71   378888 h4d8 b4f8 h1h6 g7h6 d8f8 h6f8 d1h1 f8h6 h1h6 h8g7
h6h7 g7f8 f7d5 c4d2 b1c1 c7c6 g6g7
 9/27 Th4d8  3433  6.05   634880 h4d8 b4f8 h1h6 g7h6 d8f8 h6f8 d1h1 f8h6 h1h6
h8g7 h6h7 g7f8 f7d5 c4d2 b1c1 c7c6 g6g7
nps=104852 h/p/q=33.00%/96.00%/0.00% q=73.0% bc=52% br=1.99
mp=3809/1616/-1170/-1605
pawnx=15129 recapx=910 qcheckx=0 checkx=22733 qfutilx=85568 onereplyx=3996
mthrx=3630 futilx=0 bmx=3
+ 8.92/21.19 91% 88/96 bf=2.11 h/p/q=32.38%/96.42%/0.00% 476.87 58875360
613285/5/123461 274597/175776/203972/2096329/7287701/195768/0/29962
*** Problem   Solution(s): Qa8+ (bm)
[D] 6k1/5p2/p5np/4B3/3P4/1PP1q3/P3r1QP/6RK w - - bm Qa8+
*** Problem   Solution(s): Qa8+ (bm)
-- ** -- ** -- ** BK **
** -- ** -- ** BP ** --
BP ** -- ** -- ** BN BP
** -- ** -- WB -- ** --
-- ** -- WP -- ** -- **
** WP WP -- BQ -- ** --
WP ** -- ** BR ** WQ WP
** -- ** -- ** -- WR WK
mv 1 stage 0, white to move, computer plays white
hash=88b6eb20dba2c4b9
pawnhash=e47beb498d8f08fd
Alpha=4202 Beta=5003 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 6>g2e2 5003  0.00       42 g2e2
 1/ 7 g2a8 5004  0.00       93 g2a8 g8h7 a8a6
 2/ 8>Mg2a8  99984  0.01      166 g2a8 g8h7 a8h8 g6h8 g1g7
nps=33200 h/p/q=46.00%/87.00%/0.00% q=78.0% bc=66% br=0.33 mp=1393/557/0/-152
pawnx=0 recapx=0 qcheckx=0 checkx=8 qfutilx=55 onereplyx=7 mthrx=3630 futilx=0
bmx=0
+ 8.85/21.05 91% 89/97 bf=2.09 h/p/q=32.52%/96.32%/0.00% 476.88 58875528
606964/5/123460 274597/175776/207602/2096337/7287756/195775/0/29962
*** Problem   Solution(s): Nxe4 (bm)
[D] 1r3rk1/5pb1/p2p2p1/Q1n1q2p/1NP1P3/3p1P1B/PP1R3P/1K2R3 b - - bm Nxe4
*** Problem   Solution(s): Nxe4 (bm)
-- BR -- ** -- BR BK **
** -- ** -- ** BP BB --
BP ** -- BP -- ** BP **
WQ -- BN -- BQ -- ** BP
-- WN WP ** WP ** -- **
** -- ** BP ** WP ** WB
WP WP -- WR -- ** -- WP
** WK ** -- WR -- ** --
mv 1 stage 0, black to move, computer plays black
hash=7dd24d92b0a5509d
pawnhash=afef6f20242fd521
Alpha=-34 Beta=766 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 8>b8b4 766  0.00       72 b8b4
 1/10 c5e4 1980  0.01      227 c5e4 a5e5 g7e5 e1e4 b8b4
 2/10 c5e4 1980  0.01      428 c5e4 a5e5 g7e5 e1e4 b8b4
 3/10>c5e4 2380  0.01      761 c5e4 a5e5 g7e5 e1e4 b8b4
 3/11 c5e4 4567  0.03     1767 c5e4 b4d5 e4d2 a5d2
 4/11>c5e4 4967  0.04     2434 c5e4 b4d5 e4d2 a5d2 e5e1 d2e1
 4/11 c5e4 9879  0.08     5435 c5e4 b4c6 e5a5
 5/13<c5e4 9478  0.11     8112 c5e4 b4c6 e4d2 a5d2 b8b2
 5/14 c5e4 9476  0.14    10761 c5e4 a5e5 e4d2 b1a1 d6e5 b4d3
 6/15<c5e4 9075  0.24    21467 c5e4 a5e5 e4d2 b1c1 d6e5 b4d3 d2f3
 6/19 c5e4 9069  0.38    35421 c5e4 e1e4 e5a5 a2a3 b8b4 a3b4
 7/19<c5e4 8668  0.77    77690 c5e4 e1e4 e5a5 c4c5 b8b4 e4b4
 7/19 c5e4 8663  1.24   126257 c5e4 a5e5 e4d2 b1c1 d6e5 b4d3 d2f3 e1e2
 8/21<c5e4 8262  1.88   194954 c5e4 a5e5 e4d2 b1a1 d6e5 b4a6 b8d8 h3f1
 8/21 c5e4 7403  2.54   259807 c5e4 a5e5 e4d2 b1a1 d6e5 b4a6 b8d8 h3f1 d2f3
 9/21<c5e4 7002  3.63   377527 c5e4 a5e5 e4d2 b1c1 d6e5 c1d2 b8b4 h3f1 b4c4 f1d3
 9/21 c5e4 7002  3.98   410658 c5e4 a5e5 e4d2 b1c1 d6e5 c1d2 b8b4 h3f1 b4c4 f1d3
10/25<Tc5e4  6601  6.01   631808 c5e4 a5e5 e4d2 b1c1 d6e5 c1d2 b8b4 h3f1 b4b2
nps=105074 h/p/q=40.00%/98.00%/0.00% q=76.0% bc=54% br=2.19
mp=2362/3592/-1639/-1697
pawnx=3427 recapx=1126 qcheckx=0 checkx=18333 qfutilx=92295 onereplyx=1851
mthrx=3630 futilx=0 bmx=0
+ 8.86/21.09 91% 90/98 bf=2.09 h/p/q=32.59%/96.34%/0.00% 482.89 59507336
607218/5/123231 278024/176902/211232/2114670/7380051/197626/0/29962
*** Problem   Solution(s): Rh5 (bm)
[D] r1bq1r1k/1pp1Np1p/p2p2pQ/4R3/n7/8/PPPP1PPP/R1B3K1 w - - bm Rh5
*** Problem   Solution(s): Rh5 (bm)
BR ** BB BQ -- BR -- BK
** BP BP -- WN BP ** BP
BP ** -- BP -- ** BP WQ
** -- ** -- WR -- ** --
BN ** -- ** -- ** -- **
** -- ** -- ** -- ** --
WP WP WP WP -- WP WP WP
WR -- WB -- ** -- WK --
mv 1 stage 0, white to move, computer plays white
hash=b17cf687eba359f9
pawnhash=2bfe008e9be497b
Alpha=-394 Beta=406 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 5 e5e4 114  0.01      188 e5e4
 2/ 6 e5e3 102  0.01      700 e5e3
 3/ 8 e5e4 -200  0.02     1860 e5e4 c8e6
 4/11 e5e4 -16  0.07     6836 e5e4 c8d7 g1h1
 5/12 e5e3 -44  0.21    21699 e5e3 c8g4 g1h1
 6/14>h6h4 356  0.55    58308 h6h4 h8g7 e5e4
 6/14 Me5h5  99993  0.61    63488 e5h5 c8d7 h6h7
nps=103569 h/p/q=31.00%/94.00%/0.00% q=75.0% bc=56% br=2.19 mp=412/420/-382/-850
pawnx=0 recapx=25 qcheckx=0 checkx=2187 qfutilx=10496 onereplyx=749 mthrx=3682
futilx=0 bmx=0
+ 8.83/21.02 91% 91/99 bf=2.09 h/p/q=32.58%/96.31%/0.00% 483.50 59570824
601726/5/123206 278024/176927/214914/2116857/7390547/198375/0/29962
*** Problem   Solution(s): Be3 b6+ (bm)
[D] 8/k1b5/P4p2/1Pp2p1p/K1P2P1P/8/3B4/8 w - - bm Be3 b6+
*** Problem   Solution(s): Be3 b6+ (bm)
-- ** -- ** -- ** -- **
BK -- BB -- ** -- ** --
WP ** -- ** -- BP -- **
** WP BP -- ** BP ** BP
WK ** WP ** -- WP -- WP
** -- ** -- ** -- ** --
-- ** -- WB -- ** -- **
** -- ** -- ** -- ** --
mv 1 stage 0, white to move, computer plays white
hash=a96f9d97b9a1687c
pawnhash=d5b406140e3c4687
Alpha=3291 Beta=4092 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 2<mtmt 3291  0.00       11
 1/ 2 d2e3 2231  0.00       25 d2e3
 2/ 3>d2e3 2631  0.00       38 d2e3 c7f4
 2/ 4 d2e3 3391  0.00       78 d2e3 c7b6
 3/ 5 d2c3 3567  0.01      209 d2c3 c7f4 c3f6
 4/ 9<d2c3 3166  0.01      540 d2c3 c7f4 c3f6 a7b6
 4/ 9 a4b3 3166  0.01      869 a4b3 c7b6 b3c3
 5/10 a4b3 3529  0.02     1914 a4b3 c7d8 d2c3 a7b6
 6/11 d2e3 3129  0.03     3704 d2e3 c7b6 a4b3 a7b8 e3c5 b6c5
 7/12>d2e3 3529  0.05     6343 d2e3 c7b6 e3f2 a7a8 a4b3 a8a7
 7/13 d2c3 3530  0.07     8941 d2c3 c7f4 c3f6 f4b8 f6g5
 8/16 d2c3 3363  0.10    15540 d2c3 c7f4 c3f6 f4b8 f6e7 b8c7 e7c5 c7b6 c5b6 a7b6
 9/17 a4b3 3349  0.29    45726 a4b3 c7b8 d2c3 b8f4 c3f6 f4b8 f6e7 b8c7
10/19 a4b3 3349  0.39    62956 a4b3 c7b8 d2c3 b8f4 c3f6 a7b6 f6d8 b6a7 d8f6 a7b6
f6d8 b6a7 d8f6 a7b6 f6d8 b6a7 d8f6
11/19 a4b3 3251  0.63   104582 a4b3 c7b8 b3c2 a7b6 d2c1 b6a7 c2d3 a7b6 c1b2 b8f4
12/20 a4b3 3251  0.97   164800 a4b3 c7b8 b3c2 a7b6 c2d3 b6a7 d3c2 a7b6 c2d3 b6a7
d3c2 a7b6 c2d3 b6a7 d3c2
13/21 a4b3 3251  1.65   278741 a4b3 c7b8 b3c2 b8c7 c2b3 c7b8 b3c2 b8c7 c2b3 c7b8
b3c2 b8c7 c2b3
14/23 d2e3 3252  2.44   419390 d2e3 c7d6 e3c5 d6c5 b5b6 c5b6 a4b3 mtmt
15/27 a4b3 3256  4.58   794082 a4b3 c7b8 b3c2 b8c7 b5b6 c7b6 d2e3 mtmt
16/27 Ta4b3  3462  6.03  1049601 a4b3 c7b8 b3c2 b8c7 d2e3 c7d6 c2d3 a7b6 e3d2
d6b8 d3c3 b6a7 d2e3 a7b6 c3d3 b8a7 e3c1 mtmt
nps=174208 h/p/q=46.00%/99.00%/0.00% q=66.0% bc=46% br=1.69
mp=3139/1953/-1765/-1651
pawnx=30719 recapx=1262 qcheckx=0 checkx=29031 qfutilx=60454 onereplyx=1991
mthrx=3682 futilx=0 bmx=81
- 8.90/21.08 91% 91/100 bf=2.09 h/p/q=32.71%/96.34%/0.00% 489.53 60620424
606204/5/123834 308743/178189/218596/2145888/7451001/200366/0/30043
*** Problem   Solution(s): Bc3 (bm)
[D] 5rk1/p5pp/8/8/2Pbp3/1P4P1/7P/4RN1K b - - bm Bc3
*** Problem   Solution(s): Bc3 (bm)
-- ** -- ** -- BR BK **
BP -- ** -- ** -- BP BP
-- ** -- ** -- ** -- **
** -- ** -- ** -- ** --
-- ** WP BB BP ** -- **
** WP ** -- ** -- WP --
-- ** -- ** -- ** -- WP
** -- ** -- WR WN ** WK
mv 1 stage 0, black to move, computer plays black
hash=8c3f0675a6610026
pawnhash=ca891967bf46c67c
Alpha=-170 Beta=630 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 3>g8f7 630  0.00       10 g8f7
 1/ 3 f8f2 1269  0.00       63 f8f2
 2/ 4 d4c5 1064  0.01      139 d4c5
 3/ 6<d4c5 663  0.01      432 d4c5 h1g2 f8e8
 3/ 6 a7a5 209  0.01      797 a7a5 g3g4
 4/10 f8f2 426  0.03     2051 f8f2 e1d1
 5/12>f8f3 826  0.05     4764 f8f3 f1d2 f3e3
 5/12 d4c3 989  0.05     5501 d4c3 e1d1 f8f2 f1e3
 6/14 f8f2 730  0.12    14081 f8f2 f1e3 d4c3 e1d1 g8f7
 7/15 f8f6 365  0.59    72496 f8f6 f1e3 d4c3 e1e2 c3d4
 8/17 d4c3 404  1.07   142220 d4c3 e1d1 f8f1 d1f1 a7a5 mtmt
 9/17 d4c3 803  1.50   205140 d4c3 e1d1 f8f1 d1f1 e4e3 f1f4 e3e2 f4e4 e2e1R h1g2
mtmt
10/19>d4c3 1203  1.85   262709 d4c3 e1d1 f8f1 d1f1 e4e3 f1f4 e3e2 f4e4 e2e1R
h1g2 e1e4 g2h3 e4c4
10/19 d4c3 2966  2.55   374217 d4c3 e1d1 f8f1 d1f1 e4e3 h1g2 e3e2 f1b1 e2e1R
b1e1 c3e1 g2f3
11/20 d4c3 3186  3.47   540809 d4c3 e1d1 f8f1 d1f1 e4e3 h2h4 e3e2 f1c1 g8f7 mtmt
12/23 Td4c3  3412  6.01   946219 d4c3 e1d1 f8f1 d1f1 e4e3 f1b1 e3e2 b1e1 c3e1
h1g1 mtmt
nps=157493 h/p/q=28.00%/98.00%/0.00% q=70.0% bc=46% br=2.12
mp=1309/26843596/-1256/-26738600
pawnx=4931 recapx=1293 qcheckx=0 checkx=23353 qfutilx=56912 onereplyx=2349
mthrx=3682 futilx=0 bmx=428
+ 8.93/21.10 91% 92/101 bf=2.09 h/p/q=32.66%/96.36%/0.00% 495.54 61566644
609571/5/124242 313674/179482/222278/2169241/7507913/202715/0/30471
*** Problem   Solution(s): Qxf8+ (bm)
[D] 2Q2n2/2R4p/1p1qpp1k/8/3P3P/3B2P1/5PK1/r7 w - - bm Qxf8+
*** Problem   Solution(s): Qxf8+ (bm)
-- ** WQ ** -- BN -- **
** -- WR -- ** -- ** BP
-- BP -- BQ BP BP -- BK
** -- ** -- ** -- ** --
-- ** -- WP -- ** -- WP
** -- ** WB ** -- WP --
-- ** -- ** -- WP WK **
BR -- ** -- ** -- ** --
mv 1 stage 0, white to move, computer plays white
hash=bdb3861cdc30a824
pawnhash=d953596e374dfb88
Alpha=425 Beta=1226 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 5 f2f4 888  0.00      109 f2f4
 2/ 6>f2f4 1288  0.00      248 f2f4 d6d4
 2/ 7 c8f8 15270  0.01      477 c8f8 h6h5 g3g4 h5h4
 3/10>c8f8 15670  0.01      807 c8f8 h6h5 g3g4 h5h4 f8d6
 3/10 Mc8f8  99988  0.02     1050 c8f8 h6h5 c7h7 h5g4 h7g7 g4h5 f8h8
nps=58333 h/p/q=38.00%/91.00%/0.00% q=76.0% bc=53% br=1.67 mp=0/0/0/-299
pawnx=0 recapx=0 qcheckx=0 checkx=69 qfutilx=202 onereplyx=12 mthrx=3682
futilx=0 bmx=0
+ 8.87/20.99 91% 93/102 bf=2.08 h/p/q=32.72%/96.30%/0.00% 495.56 61567696
603605/5/124240 313674/179482/225960/2169310/7508115/202727/0/30471
*** Problem   Solution(s): Qxg6+ (bm)
[D] 6k1/2pb1r1p/3p1PpQ/p1nPp3/1q2P3/2N2P2/PrB5/2K3RR w - - bm Qxg6+
*** Problem   Solution(s): Qxg6+ (bm)
-- ** -- ** -- ** BK **
** -- BP BB ** BR ** BP
-- ** -- BP -- WP BP WQ
BP -- BN WP BP -- ** --
-- BQ -- ** WP ** -- **
** -- WN -- ** WP ** --
WP BR WB ** -- ** -- **
** -- WK -- ** -- WR WR
mv 1 stage 0, white to move, computer plays white
hash=3f7d8a64485ee4de
pawnhash=c4dcf5c58dd765b0
Alpha=-1733 Beta=-932 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 4<g1g6 -1733  0.01      122 g1g6 h7g6
 1/ 4 c1d2 -2711  0.01      257 c1d2 f7f6
 2/ 9>c1d2 -2310  0.01      460 c1d2 f7f6
 2/ 9 g1g6 1117  0.02     1028 g1g6 g8h8 c1d2
 3/10>g1g6 1517  0.04     2121 g1g6 g8h8 h6d2
 3/10 h6g6 1518  0.05     2827 h6g6 h7g6 g1g6 f7g7 g6g7 g8f8 h1h8
 4/11>h6g6 1918  0.06     3420 h6g6 g8h8 g6f7 b2c2 c1c2 c5e4
 4/14 Mh6g6  99993  0.08     5754 h6g6 h7g6 g1g6 f7g7 g6g7 g8f8 h1h8
nps=69325 h/p/q=36.00%/97.00%/0.00% q=77.0% bc=63% br=1.34 mp=1583/572/0/-798
pawnx=54 recapx=2 qcheckx=0 checkx=265 qfutilx=2140 onereplyx=37 mthrx=3682
futilx=0 bmx=0
+ 8.83/20.92 91% 94/103 bf=2.08 h/p/q=32.75%/96.31%/0.00% 495.64 61573448
597800/5/124231 313728/179484/229642/2169575/7510255/202764/0/30471
*** Problem   Solution(s): Qxh5 (bm)
[D] b4r1k/pq2rp2/1p1bpn1p/3PN2n/2P2P2/P2B3K/1B2Q2N/3R2R1 w - - bm Qxh5
*** Problem   Solution(s): Qxh5 (bm)
BB ** -- ** -- BR -- BK
BP BQ ** -- BR BP ** --
-- BP -- BB BP BN -- BP
** -- ** WP WN -- ** BN
-- ** WP ** -- WP -- **
WP -- ** WB ** -- ** WK
-- WB -- ** WQ ** -- WN
** -- ** WR ** -- WR --
mv 1 stage 0, white to move, computer plays white
hash=e38a9baf7c759ac7
pawnhash=998e9481ec7dd386
Alpha=-1498 Beta=-697 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 2>d5e6 -697  0.00        2 d5e6
 1/ 5 d5e6 -697  0.00       74 d5e6
 2/ 7<d5e6 -1097  0.01      566 d5e6 f7e6 e2f3
 2/10 d5e6 -1097  0.02      843 d5e6 h5f4 h3g3 f4e2 d3e2 e7e6
 3/14>e5f7 -696  0.05     1734 e5f7 f8f7 e2h5 d6f4 b2f6 f7f6
 3/14 e2h5 2789  0.08     2812 e2h5 f6g8
 4/14>e2h5 3189  0.09     3601 e2h5 f6g8 d5e6 d6e5
 4/14 e2h5 8422  0.15     8120 e2h5 f6g4 e5d7 f7f6
 5/15>e2h5 8822  0.17     9534 e2h5 f6g4 e5d7 f7f6 b2f6 g4f6 d7f8
 5/15 Me2h5  99988  0.24    15233 e2h5 f8e8 h5h6 f6h7 h6h7
nps=63736 h/p/q=37.00%/96.00%/0.00% q=80.0% bc=63% br=2.56
mp=1548/397/-973/-1736
pawnx=100 recapx=58 qcheckx=0 checkx=470 qfutilx=2930 onereplyx=167 mthrx=3682
futilx=0 bmx=0
+ 8.79/20.87 91% 95/104 bf=2.08 h/p/q=32.79%/96.31%/0.00% 495.88 61588680
592199/5/124202 313828/179542/233324/2170045/7513185/202931/0/30471
*** Problem   Solution(s): Bxg3 Qxh4 (bm)
[D] r2r2k1/pb3ppp/1p1bp3/7q/3n2nP/PP1B2P1/1B1N1P2/RQ2NRK1 b - - bm Bxg3 Qxh4
*** Problem   Solution(s): Bxg3 Qxh4 (bm)
BR ** -- BR -- ** BK **
BP BB ** -- ** BP BP BP
-- BP -- BB BP ** -- **
** -- ** -- ** -- ** BQ
-- ** -- BN -- ** BN WP
WP WP ** WB ** -- WP --
-- WB -- WN -- WP -- **
WR WQ ** -- WN WR WK --
mv 1 stage 0, black to move, computer plays black
hash=eb17f39a30a48181
pawnhash=a5044aa5f795ae7f
Alpha=1598 Beta=2399 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 7 e6e5 2014  0.00      145 e6e5
 2/10 d6c7 1864  0.01      447 d6c7
 3/11 h5h4 1627  0.03     1980 h5h4 d3h7 h4h7 b1h7 g8h7 b2d4
 4/12>h5h4 2027  0.05     2977 h5h4 d3h7 h4h7 b1h7 g8h7 b2d4 g4f2
 4/15 d6g3 2028  0.10     6852 d6g3 f2g3 d4e2 d3e2 h5c5 b2d4 c5d4
 5/15>d6g3 2428  0.12     8505 d6g3 f2g3 d4e2 d3e2 h5c5 b2d4 c5d4
 5/15 d6g3 4044  0.27    21707 d6g3 d3e4 g3f2 f1f2 h5h4 b2d4 d8d4
 6/18>d6g3 4444  0.44    33713 d6g3 d3e4 g3f2 f1f2 h5h4 b2d4 d8d4 e4b7
 6/21 h5h4 5471  1.28   102578 h5h4 d3h7 g8h8 d2e4 h4h7 b2d4 b7e4
 7/21>h5h4 5871  1.54   123474 h5h4 d3h7 g8h8 d2e4 b7e4 h7e4 d4e2
 7/21 h5h4 10374  2.38   214426 h5h4 d2f3 d4f3 e1f3 b7f3 d3h7 h4h7 b1h7 g8h7
b2c1 d6a3
 8/25>h5h4 10774  3.04   278212 h5h4 d2f3 d4f3 e1f3 b7f3 d3h7 h4h7 b1h7 g8h7
b2c1 d6a3 c1a3 g4f2 f1f2
 8/25 Th5h4  10774  6.00   574464 h5h4 d2f3 d4f3 e1f3 b7f3 d3h7 h4h7 b1h7 g8h7
b2c1 d6a3 c1a3 g4f2
nps=95680 h/p/q=15.00%/99.00%/0.00% q=78.0% bc=55% br=2.90
mp=1111/2755/-2331/-875
pawnx=7 recapx=2065 qcheckx=0 checkx=20645 qfutilx=110132 onereplyx=2891
mthrx=3781 futilx=0 bmx=441
+ 8.78/20.90 91% 96/105 bf=2.09 h/p/q=32.62%/96.33%/0.00% 501.88 62163144
592030/5/123860 313835/181607/237105/2190690/7623317/205822/0/30912
*** Problem   Solution(s): Nf2+ (bm)
[D] 4rrk1/pppb4/7p/3P2pq/3Qn3/P5P1/1PP4P/R3RNNK b - - bm Nf2+
*** Problem   Solution(s): Nf2+ (bm)
-- ** -- ** BR BR BK **
BP BP BP BB ** -- ** --
-- ** -- ** -- ** -- BP
** -- ** WP ** -- BP BQ
-- ** -- WQ BN ** -- **
WP -- ** -- ** -- WP --
-- WP WP ** -- ** -- WP
WR -- ** -- WR WN WN WK
mv 1 stage 0, black to move, computer plays black
hash=a69cd27ed93b9322
pawnhash=a0f693f6565ea761
Alpha=-1283 Beta=-482 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 8 e4f2 -591  0.01      303 e4f2 h1g2
 2/ 9 e4f2 -455  0.02     1132 e4f2 h1g2 e8a8
 3/11>e4f2 -54  0.03     1873 e4f2 d4f2 f8f2 e1e8 d7e8 g1f3
 3/11 e4f2 7404  0.04     3046 e4f2 d4f2 f8f2 d5d6
 4/11<e4f2 7003  0.06     5780 e4f2 d4f2 f8f2 d5d6 c7d6
 4/11 e4f2 7002  0.08     8245 e4f2 d4f2 f8f2 d5d6 c7d6
 5/16<e4f2 6601  0.17    18692 e4f2 d4f2 f8f2 b2b3 f2c2
 5/16 e4f2 6601  0.17    18774 e4f2 d4f2 f8f2 b2b3 f2c2
 6/16 e4f2 7000  0.45    45820 e4f2 d4f2 f8f2 e1c1 f2f1 c1f1
 7/18 e4f2 7377  1.16   127331 e4f2 d4f2 f8f2 e1b1 f2c2 b1e1 c2b2
 8/20 e4f2 7367  2.75   321399 e4f2 d4f2 f8f2 e1d1 f2c2 d1d2 c2b2 d2b2
 9/23 Te4f2  7728  6.00   702464 e4f2 d4f2 f8f2 a1b1 e8e1 b1e1 f2c2 e1e2 c2e2
nps=117019 h/p/q=33.00%/99.00%/0.00% q=73.0% bc=58% br=2.07
mp=1321/26843596/-1556/-1015
pawnx=1574 recapx=2248 qcheckx=0 checkx=25363 qfutilx=75100 onereplyx=5053
mthrx=3781 futilx=0 bmx=34
+ 8.78/20.92 91% 97/106 bf=2.09 h/p/q=32.62%/96.36%/0.00% 507.88 62865608
593072/5/123779 315409/183855/240886/2216053/7698417/210875/0/30946
*** Problem   Solution(s): Nb5 (bm)
[D] 5n2/pRrk2p1/P4p1p/4p3/3N4/5P2/6PP/6K1 w - - bm Nb5
*** Problem   Solution(s): Nb5 (bm)
-- ** -- ** -- BN -- **
BP WR BR BK ** -- BP --
WP ** -- ** -- BP -- BP
** -- ** -- BP -- ** --
-- ** -- WN -- ** -- **
** -- ** -- ** WP ** --
-- ** -- ** -- ** WP WP
** -- ** -- ** -- WK --
mv 1 stage 0, white to move, computer plays white
hash=66463f80ed39149a
pawnhash=d684316f35219f17
Alpha=-2100 Beta=-1299 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 5>b7c7 -1299  0.00      116 b7c7 d7c7 d4f5
 1/ 5 d4f5 -1202  0.00      158 d4f5
 2/ 6 d4e2 -1270  0.01      304 d4e2
 3/ 7 d4b5 -1009  0.01      852 d4b5 c7b7 a6b7
 4/ 7>d4b5 -608  0.01      993 d4b5 c7b7 a6b7 f8e6 b5a7
 4/ 9 d4b5 3782  0.02     1990 d4b5 f8e6 b5c7 e6c7 b7a7
 5/10 d4b5 3782  0.03     3141 d4b5 f8e6 b5c7 e6c7 b7a7
 6/11>d4b5 4182  0.04     4492 d4b5 f8e6 b5c7 e6c7 g1f2 d7c6
 6/11 d4b5 4184  0.07     7514 d4b5 f8e6 g1f1 h6h5 b5c7 e6c7 b7a7
 7/14 d4b5 3784  0.11    14373 d4b5 f8e6 g1f2 h6h5 b5c7
 8/14 d4b5 3947  0.22    31352 d4b5 f8e6 g1f2 d7d8 b5c7 e6c7 b7a7
 9/15 d4b5 3694  0.40    57796 d4b5 f8e6 g1f2 d7c6 b5c7 e6c7 b7a7 f6f5
10/16 d4b5 3960  0.62    94073 d4b5 f8e6 g1f2 d7c8 b5c7 e6c7 b7a7 h6h5
11/19 d4b5 3947  1.93   297167 d4b5 f8e6 b5c7 e6c7 b7a7 d7d6 a7c7
12/21>Td4b5  4347  6.00   908349 d4b5 f8e6 b5c7 e6c7 b7a7 d7c6 g2g3 c6b6 a7b7
b6c6
nps=151291 h/p/q=33.00%/98.00%/0.00% q=79.0% bc=44% br=2.03
mp=2053/1096/-1725/-1588
pawnx=3784 recapx=3090 qcheckx=0 checkx=18490 qfutilx=54184 onereplyx=253
mthrx=3781 futilx=0 bmx=139
+ 8.81/20.93 91% 98/107 bf=2.09 h/p/q=32.63%/96.37%/0.00% 513.89 63773956
596018/5/124101 319193/186945/244667/2234543/7752601/211128/0/31085
*** Problem   Solution(s): Qe5 (bm)
[D] r5k1/1q4pp/2p5/p1Q5/2P5/5R2/4RKPP/r7 w - - bm Qe5
*** Problem   Solution(s): Qe5 (bm)
BR ** -- ** -- ** BK **
** BQ ** -- ** -- BP BP
-- ** BP ** -- ** -- **
BP -- WQ -- ** -- ** --
-- ** WP ** -- ** -- **
** -- ** -- ** WR ** --
-- ** -- ** WR WK WP WP
BR -- ** -- ** -- ** --
mv 1 stage 0, white to move, computer plays white
hash=6e2d2198d675d879
pawnhash=a7b9ded3ef82aa5b
Alpha=-1953 Beta=-1152 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 5 g2g4 -1557  0.00      132 g2g4
 2/ 8 h2h3 -1559  0.01      424 h2h3
 3/ 9 e2e7 -1553  0.02     1812 e2e7 a1a2 f2g1
 4/11 c5d4 -1488  0.06     5440 c5d4 a1b1 c4c5
 5/11 c5e5 -1356  0.17    17335 c5e5 b7b6 f2g3 b6g1
 6/15>c5e5 -955  0.31    31292 c5e5 b7b6 f2g3 b6b8 h2h3
 6/16 c5e5 4259  0.64    66556 c5e5 b7a7 c4c5 a7b8 e5a1 b8g3 h2g3
 7/20 c5e5 4177  1.15   129056 c5e5 b7b8 e5a1 g7g5 mtmt
 8/21 c5e5 4149  3.63   427189 c5e5 b7a7 c4c5 g7g6 e5a1 a7c5 f2g3 c5d6 f3f4 d6d3
g3f2
 9/23 Tc5e5  4048  6.00   711680 c5e5 b7a7 c4c5 h7h5 e5a1 a7c5 f2g3 h5h4 g3h3
c5c4 a1a2
nps=118534 h/p/q=33.00%/99.00%/0.00% q=67.0% bc=59% br=2.61
mp=1583/26843596/-988/-26738600
pawnx=639 recapx=2107 qcheckx=0 checkx=40926 qfutilx=42009 onereplyx=6186
mthrx=3781 futilx=0 bmx=136
+ 8.81/20.94 91% 99/108 bf=2.09 h/p/q=32.63%/96.40%/0.00% 519.89 64485636
597089/5/124037 319832/189052/248448/2275469/7794610/217314/0/31221
*** Problem   Solution(s): c3 (bm)
[D] rn2k1nr/pbp2ppp/3q4/1p2N3/2p5/QP6/PB1PPPPP/R3KB1R b KQkq - bm c3
*** Problem   Solution(s): c3 (bm)
BR BN -- ** BK ** BN BR
BP BB BP -- ** BP BP BP
-- ** -- BQ -- ** -- **
** BP ** -- WN -- ** --
-- ** BP ** -- ** -- **
WQ WP ** -- ** -- ** --
WP WB -- WP WP WP WP WP
WR -- ** -- WK WB ** WR
mv 1 stage 0, black to move, computer plays black
hash=2b4ad450e32c0a39
pawnhash=695a33fc8a4c742a
Alpha=-1150 Beta=-349 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 4>d6a3 -349  0.00        6 d6a3
 1/ 5 d6a3 -349  0.00       96 d6a3
 2/ 8 b8d7 -458  0.01      485 b8d7
 3/ 9 c4c3 -467  0.03     2313 c4c3 a3d6 c7d6
 4/ 9>c4c3 -66  0.04     3046 c4c3 a3d6 c7d6 d2c3 d6e5
 4/10 c4c3 863  0.06     4991 c4c3 a3d6 c7d6 b2c3 d6e5 c3e5
 5/12 c4c3 863  0.13    11022 c4c3 a3d6 c7d6 b2c3 d6e5 c3e5
 6/15>c4c3 1263  0.23    19028 c4c3 a3d6 c7d6 b2c3 d6e5 c3e5 g8f6
 6/15 c4c3 1284  0.43    37644 c4c3 a3d6 c7d6 b2c3 d6e5 c3e5 e8f8
 7/15 c4c3 1021  0.90    79276 c4c3 a3d6 c7d6 b2c3 d6e5 c3e5 f7f6
 8/19 c4c3 916  1.80   162392 c4c3 a3d6 c7d6 b2c3 b5b4 c3b4 d6e5 a1c1
 9/19 c4c3 1053  3.61   337716 c4c3 a3d6 c7d6 b2c3 d6e5 c3e5 f7f6 e5b8 a8b8 a1c1
10/25<Tc4c3  652  6.02   560158 c4c3 a3d6 c7d6 b2c3 d6e5 c3e5 f7f6 e5d6
nps=93050 h/p/q=34.00%/94.00%/0.00% q=77.0% bc=48% br=2.21
mp=1822/1161/-1392/-2032
pawnx=2900 recapx=1537 qcheckx=0 checkx=8566 qfutilx=81830 onereplyx=1424
mthrx=3781 futilx=0 bmx=30
+ 8.83/20.98 91% 100/109 bf=2.10 h/p/q=32.64%/96.38%/0.00% 525.91 65045792
596750/5/123682 322732/190589/252229/2284035/7876440/218738/0/31251
*** Problem   Solution(s): Be3 (bm)
[D] 2kr4/bp3p2/p2p2b1/P7/2q5/1N4B1/1PPQ2P1/2KR4 b - - bm Be3
*** Problem   Solution(s): Be3 (bm)
-- ** BK BR -- ** -- **
BB BP ** -- ** BP ** --
BP ** -- BP -- ** BB **
WP -- ** -- ** -- ** --
-- ** BQ ** -- ** -- **
** WN ** -- ** -- WB --
-- WP WP WQ -- ** WP **
** -- WK WR ** -- ** --
mv 1 stage 0, black to move, computer plays black
hash=693ca87e67fede0d
pawnhash=4a5ad304249d18a8
Alpha=-587 Beta=213 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 5 g6h5 107  0.00       99 g6h5
 2/ 7 a7c5 79  0.01      278 a7c5
 3/ 7 d6d5 -214  0.01      765 d6d5 d1e1
 4/11>d6d5 186  0.02     1610 d6d5 d1e1 g6e4
 4/11 a7e3 8713  0.03     2055 a7e3 b3d4 e3d2 d1d2
 5/11<a7e3 8312  0.04     2984 a7e3 b3d4 e3d2 d1d2 g6c2 d4c2
 5/11 a7e3 9233  0.05     3806 a7e3 c2c3 e3d2 b3d2 g6c2
 6/14<a7e3 8832  0.14    14157 a7e3 c2c3 e3d2 b3d2 g6c2 d2c4 f7f6
 6/14 a7e3 8830  0.21    22597 a7e3 b3a1 e3d2 c1d2 g6c2 a1c2
 7/16<a7e3 8429  0.33    36878 a7e3 b3a1 e3d2 c1d2 g6c2 a1c2 f7f6 g3d6
 7/16 a7e3 8429  0.35    38617 a7e3 b3a1 e3d2 c1d2 g6c2 a1c2 f7f6 g3d6
 8/16 a7e3 8029  0.56    64687 a7e3 b3a1 e3d2 d1d2 c4f1 d2d1 f1g2 g3d6 g2g5 c1b1
d8d6
 9/18<a7e3 7628  0.85   102814 a7e3 b3a1 e3d2 d1d2 c4f1 d2d1 f1g2 g3d6 g2g5 c1b1
d8d6 d1d6
 9/18 a7e3 7628  0.92   109339 a7e3 b3a1 e3d2 d1d2 c4f1 d2d1 f1g2 g3d6 g2g5 c1b1
d8d6 d1d6
10/19>a7e3 8028  1.26   148495 a7e3 b3a1 e3d2 d1d2 c4f1 d2d1 f1g2 g3d6 g2g5 c1b1
d8d6 d1d6 g5a5
10/25 a7e3 10649  3.57   487717 a7e3 c1b1 e3d2 d1d2 c4b3 b1c1
11/25<a7e3 10248  5.05   664838 a7e3 c1b1 e3d2 d1d2 c4b3 d2f2 b3b5
11/27 Ta7e3  10243  6.03   793600 a7e3 c1b1 e3d2 d1d2 c4b3 g3e1 g6c2 d2c2 c8b8
mtmt
nps=131609 h/p/q=29.00%/99.00%/0.00% q=70.0% bc=51% br=2.28
mp=568/372/-1330/-925
pawnx=228 recapx=2432 qcheckx=0 checkx=38347 qfutilx=88978 onereplyx=4543
mthrx=3793 futilx=0 bmx=951
+ 8.85/21.04 91% 101/110 bf=2.10 h/p/q=32.61%/96.40%/0.00% 531.94 65839392
598540/5/123772 322960/193021/256022/2322382/7965418/223281/0/32202
*** Problem   Solution(s): Qf1+ (bm)
[D] 6k1/p5p1/5p2/2P2Q2/3pN2p/3PbK1P/7P/6q1 b - - bm Qf1+
*** Problem   Solution(s): Qf1+ (bm)
-- ** -- ** -- ** BK **
BP -- ** -- ** -- BP --
-- ** -- ** -- BP -- **
** -- WP -- ** WQ ** --
-- ** -- BP WN ** -- BP
** -- ** WP BB WK ** WP
-- ** -- ** -- ** -- WP
** -- ** -- ** -- BQ --
mv 1 stage 0, black to move, computer plays black
hash=d9660e42a361c67b
pawnhash=93ae98a1b105e71f
Alpha=2842 Beta=3643 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 4>g1h2 3643  0.00       23 g1h2
 1/ 4 g1d1 3960  0.00       82 g1d1 f3g2 d1d3
 2/ 8 g1d1 3960  0.01      593 g1d1 f3g2 d1e2 g2h1 e2d1 h1g2 d1d3
 3/13<g1d1 3559  0.02     1711 g1d1 f3g2 d1d3 g2h1
 3/13 g1d1 3559  0.02     1777 g1d1 f3g2 d1d3 g2h1
 4/16<g1d1 3158  0.06     6110 g1d1 f3g2 d1d3 g2h1 d3b5 e4d6
 4/16 g1d1 3158  0.06     6523 g1d1 f3g2 d1d3 g2h1 d3b5 e4d6
 5/17>g1d1 3558  0.18    19354 g1d1 f3g2 d1d3 g2h1 d3b5 f5d5 g8f8 d5e6
 5/17 g1f1 5924  0.26    29462 g1f1 e4f2 f1f2 f3g4 f2h2 f5e6 g8f8 e6e7 f8e7
 6/18 g1f1 6312  0.38    46769 g1f1 e4f2 f1f2 f3g4 f2f5 g4f5 e3g1 f5g6 g1h2
 7/22 g1f1 6553  0.69    94767 g1f1 e4f2 f1f2 f3g4 f2e2 g4h4 e3f2 f5f2 e2f2 h4g4
f2g2 g4f4 g2h3 f4e4 h3g2 e4f4 g2h2
 8/22>g1f1 6953  0.72   101989 g1f1 e4f2 f1f2 f3g4 f2e2 g4h4 e3f2 f5f2 e2f2 h4g4
f2g2 g4f5 g2h3 f5e4 h3e3 e4d5 e3d3
 8/24 g1f1 6953  1.26   188063 g1f1 e4f2 f1f2 f3g4 f2e2 g4h4 e3f2 f5f2 e2f2 h4g4
 9/24>g1f1 7353  1.34   205181 g1f1 e4f2 f1f2 f3g4 f2e2 g4h4 e3f2 f5f2 e2f2 h4g4
f2g2 g4f5 g2h3 f5e4 h3e3 e4d5 e3e5 d5c6 e5h2
 9/26 g1f1 7354  2.98   466189 g1f1 e4f2 f1f2 f3g4 f2e2 g4h4 e3f2 f5f2 e2f2 h4g4
f6f5
10/26>g1f1 7754  3.05   475934 g1f1 e4f2 f1f2 f3g4 f2e2 g4h4 e3f2 f5f2 e2f2 h4g4
f6f5 g4g5 f2e3 g5f5 e3h3 f5e4 h3h2 e4d4
10/28 Tg1f1  11870  6.01  1049600 g1f1 e4f2 f1f2 f3g4 f2e2 f5f3 f6f5 g4f5 e2f3
f5e6 f3h3 e6d5 h3f5 d5c6 e3f4 h2h3 f5d3
nps=174759 h/p/q=34.00%/98.00%/0.00% q=66.0% bc=57% br=2.24
mp=101/26843596/-633/-26738637
pawnx=9632 recapx=2345 qcheckx=0 checkx=93035 qfutilx=46551 onereplyx=6328
mthrx=3805 futilx=0 bmx=4490
+ 8.86/21.10 91% 102/111 bf=2.10 h/p/q=32.62%/96.41%/0.00% 537.95 66888992
602604/5/124341 332592/195366/259827/2415417/8011969/229609/0/36692
*** Problem   Solution(s): Rxe6 (bm)
[D] r4kr1/ppp5/4bq1b/7B/2PR1Q1p/2N3P1/PP3P1P/2K1R3 w - - bm Rxe6
*** Problem   Solution(s): Rxe6 (bm)
BR ** -- ** -- BK BR **
BP BP BP -- ** -- ** --
-- ** -- ** BB BQ -- BB
** -- ** -- ** -- ** WB
-- ** WP WR -- WQ -- BP
** -- WN -- ** -- WP --
WP WP -- ** -- WP -- WP
** -- WK -- WR -- ** --
mv 1 stage 0, white to move, computer plays white
hash=615723317cc50a0
pawnhash=cefd2ca69091614a
Alpha=3486 Beta=4287 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 5<mtmt 3486  0.00       98
 1/ 6 e1e6 -254  0.01      305 e1e6 h6f4 d4f4
 2/ 9 e1e6 -254  0.01      807 e1e6 h6f4 d4f4
 3/ 9>e1e6 146  0.02      932 e1e6 h6f4 d4f4
 3/ 9 e1e6 146  0.03     1587 e1e6 h6f4 d4f4
 4/ 9>e1e6 546  0.04     2100 e1e6 h6f4 d4f4
 4/10 e1e6 5618  0.06     3747 e1e6 h6f4 d4f4 f6f4 g3f4
 5/11<e1e6 5217  0.08     5765 e1e6 h6f4 d4f4 f6f4 g3f4 g8g3
 5/12 e1e6 5217  0.09     7018 e1e6 h6f4 d4f4 h4g3 f4f6
 6/13<e1e6 4816  0.17    13836 e1e6 h6f4 d4f4 h4g3 f4f6
 6/13 e1e6 4815  0.25    21993 e1e6 h6f4 d4f4 f6f4 g3f4 g8g1 c1d2 g1d1 c3d1 c7c6
 7/15 e1e6 4974  0.46    43686 e1e6 h6f4 d4f4 f6f4 g3f4 g8g1 c1d2 a8d8 d2e3 g1e1
h5e2 b7b5
 8/19 e1e6 5304  0.99    95687 e1e6 h6f4 d4f4 f6f4 g3f4 g8h8 e6f6 f8g8 h5f7 g8g7
c1d2
 9/21<e1e6 4903  2.24   226571 e1e6 h6f4 d4f4 f6f4 g3f4 g8g7 f4f5 g7g1 c1d2 b7b5
c4b5
 9/21 e1e6 4900  3.35   335100 e1e6 h6f4 d4f4 f6f4 g3f4 a8e8 h5e8
10/23 Te1e6  5107  6.00   624640 e1e6 h6f4 d4f4 f6f4 g3f4 g8g2 e6f6 f8g7 f6f7
g7h8 f7c7 a8b8
nps=104037 h/p/q=40.00%/99.00%/0.00% q=76.0% bc=51% br=1.97
mp=1518/1384/-1354/-1517
pawnx=3677 recapx=2118 qcheckx=0 checkx=19021 qfutilx=42476 onereplyx=632
mthrx=3805 futilx=0 bmx=105
+ 8.87/21.12 91% 103/112 bf=2.10 h/p/q=32.69%/96.44%/0.00% 543.95 67513632
602800/5/124117 336269/197484/263632/2434438/8054445/230241/0/36797
*** Problem   Solution(s): Qxf6 (bm)
[D] rnbqkb1r/1p3ppp/5N2/1p2p1B1/2P5/8/PP2PPPP/R2QKB1R b KQkq - bm Qxf6
*** Problem   Solution(s): Qxf6 (bm)
BR BN BB BQ BK BB -- BR
** BP ** -- ** BP BP BP
-- ** -- ** -- WN -- **
** BP ** -- BP -- WB --
-- ** WP ** -- ** -- **
** -- ** -- ** -- ** --
WP WP -- ** WP WP WP WP
WR -- ** WQ WK WB ** WR
mv 1 stage 0, black to move, computer plays black
hash=49328eab2af51f31
pawnhash=d127c7660442aa30
Alpha=67 Beta=868 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 7>g7f6 868  0.00        3 g7f6
 1/ 7 g7f6 868  0.00       19 g7f6
 2/ 7<g7f6 467  0.01       78 g7f6 c4b5
 2/ 7 g7f6 466  0.01      155 g7f6 d1d8 e8d8 g5f6
 3/ 8>g7f6 866  0.01      447 g7f6 d1d8 e8d8 g5f6
 3/ 8 d8f6 1305  0.02      781 d8f6 g5f6 f8b4 d1d2 b4d2 e1d2 g7f6 c4b5
 4/11 d8f6 1305  0.03     1689 d8f6 g5f6 f8b4 d1d2 b4d2 e1d2 g7f6 c4b5
 5/12 d8f6 1305  0.06     4312 d8f6 g5f6 f8b4 d1d2 b4d2 e1d2 g7f6 c4b5
 6/13 d8f6 1443  0.16    13167 d8f6 d1d2 f6b6 c4b5 b8d7
 7/17>d8f6 1843  0.30    26877 d8f6 d1d2 f6b6 c4b5 c8d7 a2a4
 7/17 d8f6 1942  0.41    37441 d8f6 d1d2 f6d6 c4b5 d6d2 g5d2 b8d7
 8/17 d8f6 1750  0.72    68434 d8f6 d1d2 f6d6 c4b5 d6d2 g5d2 b8d7 a2a4 f8c5
 9/17 d8f6 1877  1.55   149743 d8f6 d1d2 f6b6 c4b5 c8d7 a2a4 d7b5 d2d1
10/18 d8f6 1823  3.44   329892 d8f6 d1d2 f6d6 c4b5 d6d2 g5d2 c8d7 e2e3 f8c5
11/21 Td8f6  1791  6.01   571392 d8f6 d1d2 f6d6 c4b5 d6b4 b5b6 b4b6 e2e4
nps=94995 h/p/q=31.00%/97.00%/0.00% q=76.0% bc=49% br=1.97
mp=1276/1203/-1354/-1862
pawnx=2143 recapx=2323 qcheckx=0 checkx=9221 qfutilx=73347 onereplyx=960
mthrx=3811 futilx=0 bmx=0
+ 8.88/21.12 92% 104/113 bf=2.10 h/p/q=32.67%/96.44%/0.00% 549.97 68085024
602522/5/123798 338412/199807/267443/2443659/8127792/231201/0/36797
*** Problem   Solution(s): Bxh7+ (bm)
[D] r1b1rnk1/1p4pp/p1p2p2/3pN2n/3P1PPq/2NBPR1P/PPQ5/2R3K1 w - - bm Bxh7+
*** Problem   Solution(s): Bxh7+ (bm)
BR ** BB ** BR BN BK **
** BP ** -- ** -- BP BP
BP ** BP ** -- BP -- **
** -- ** BP WN -- ** BN
-- ** -- WP -- WP WP BQ
** -- WN WB WP WR ** WP
WP WP WQ ** -- ** -- **
** -- WR -- ** -- WK --
mv 1 stage 0, white to move, computer plays white
hash=889e6c1a3c25d9a8
pawnhash=540f360d536fb870
Alpha=126 Beta=927 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 8 g4h5 220  0.01      385 g4h5 f6e5 f4e5 c8h3
 2/ 8 c2g2 221  0.02      886 c2g2
 3/ 9 c2g2 474  0.04     2095 c2g2 c8e6 g4h5 f6e5 f4e5 h4h5
 4/13>c2g2 874  0.08     5263 c2g2 c8e6 g4h5 f6e5 f4e5 h4h5
 4/13 d3h7 1250  0.10     6964 d3h7 f8h7 e5g6 c8f5 g6h4 f5c2 c1c2
 5/15>d3h7 1650  0.13     9235 d3h7 f8h7 e5g6 c8f5 g6h4 f5c2 c1c2
 5/15 d3h7 2558  0.16    12346 d3h7 f8h7 e5g6 h4g3 f3g3 h5g3 c2f2
 6/16 d3h7 2697  0.26    20917 d3h7 f8h7 e5g6 h4g3 f3g3 h5g3 c2f2 g3e4
 7/19 d3h7 2678  0.53    44911 d3h7 f8h7 e5g6 h4g3 f3g3 h5g3 c2f2 g3e4 c3e4 d5e4
 8/20 d3h7 2922  1.21   103274 d3h7 f8h7 e5g6 h4g3 f3g3 h5g3 c2f2 g8f7 f4f5
 9/22 d3h7 2970  2.23   210408 d3h7 f8h7 e5g6 h4g3 f3g3 h5g3 c2f2 g3e4 c3e4 e8e4
f4f5
10/24 d3h7 2969  4.64   462013 d3h7 f8h7 e5g6 h4g3 f3g3 h5g3 g1g2 g3e4 c3e4 e8e4
c2f2
11/24 Td3h7  2929  6.01   599040 d3h7 f8h7 e5g6 h4g3 f3g3 h5g3 g1g2 g3e4 c3e4
e8e4 c2b3 e4e8
nps=99724 h/p/q=40.00%/97.00%/0.00% q=75.0% bc=51% br=1.73
mp=2760/1839/-1174/-1140
pawnx=998 recapx=1043 qcheckx=0 checkx=10127 qfutilx=166519 onereplyx=422
mthrx=3811 futilx=0 bmx=0
+ 8.90/21.14 92% 105/114 bf=2.09 h/p/q=32.74%/96.45%/0.00% 555.97 68684064
602492/5/123538 339410/200850/271254/2453786/8294311/231623/0/36797
*** Problem   Solution(s): Nd6 (bm)
[D] 4N2k/5rpp/1Q6/p3q3/8/P5P1/1P3P1P/5K2 w - - bm Nd6
*** Problem   Solution(s): Nd6 (bm)
-- ** -- ** WN ** -- BK
** -- ** -- ** BR BP BP
-- WQ -- ** -- ** -- **
BP -- ** -- BQ -- ** --
-- ** -- ** -- ** -- **
WP -- ** -- ** -- WP --
-- WP -- ** -- WP -- WP
** -- ** -- ** WK ** --
mv 1 stage 0, white to move, computer plays white
hash=182998a69328af82
pawnhash=84646f264bdcc87b
Alpha=-248 Beta=552 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 3 e8d6 -168  0.00       60 e8d6
 2/ 4 e8d6 220  0.00      156 e8d6 f7f8
 3/ 5 e8d6 240  0.01      568 e8d6 f7f3
 4/ 9 e8d6 325  0.02     2000 e8d6 f7f8 f2f4
 5/11>e8d6 725  0.04     4051 e8d6 f7f8 f1g1 e5e1 g1g2 e1d1
 5/11 e8d6 3688  0.06     6970 e8d6 h8g8 d6f7 g8f7
 6/13 e8d6 3852  0.11    14215 e8d6 h8g8 d6f7 g8f7 f1g2 e5f5
 7/16 e8d6 3695  0.21    28375 e8d6 h8g8 d6f7 g8f7 f1g1 e5d5 f2f4
 8/19 e8d6 3693  0.46    63974 e8d6 h8g8 d6f7 g8f7 f1g1 e5d5 g3g4
 9/21 e8d6 3795  1.05   149858 e8d6 h8g8 d6f7 g8f7 f2f4 e5d5 f1f2
10/23 e8d6 3890  2.88   418936 e8d6 h8g8 b6b8 f7f8 b8b3 g8h8 d6f7 f8f7 b3f7 h7h6
f1g2 h8h7
11/25 e8d6 3834  5.56   815327 e8d6 h8g8 b6b8 f7f8 b8b3 g8h8 d6f7 f8f7 b3f7 h7h6
f1g2 h8h7 b2b3
12/25 Te8d6  3646  6.01   886822 e8d6 h8g8 b6b8 f7f8 b8b3 g8h8 d6f7 f8f7 b3f7
h7h6 f7b3 e5e4 h2h3
nps=147582 h/p/q=32.00%/99.00%/0.00% q=65.0% bc=57% br=1.99
mp=833/26843596/-1105/-104416
pawnx=249 recapx=1314 qcheckx=0 checkx=56062 qfutilx=71552 onereplyx=3847
mthrx=3908 futilx=0 bmx=742
+ 8.93/21.17 92% 106/115 bf=2.09 h/p/q=32.73%/96.47%/0.00% 561.98 69570888
604964/5/123795 339659/202164/275162/2509848/8365863/235470/0/37539
*** Problem   Solution(s): Rd2 (bm)
[D] r2r2k1/2p2ppp/p7/1p2P1n1/P6q/5P2/1PB1QP1P/R5RK b - - bm Rd2
*** Problem   Solution(s): Rd2 (bm)
BR ** -- BR -- ** BK **
** -- BP -- ** BP BP BP
BP ** -- ** -- ** -- **
** BP ** -- WP -- BN --
WP ** -- ** -- ** -- BQ
** -- ** -- ** WP ** --
-- WP WB ** WQ WP -- WP
WR -- ** -- ** -- WR WK
mv 1 stage 0, black to move, computer plays black
hash=87017c9f72fab8e
pawnhash=6499fb420f28a3dc
Alpha=-144 Beta=656 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 5 c7c6 291  0.00      126 c7c6
 2/ 6 b5a4 353  0.01      751 b5a4 a1a4 h4h6
 3/11 g5h3 341  0.03     2185 g5h3 g1g2
 4/11 g5h3 420  0.07     5750 g5h3 g1f1 c7c6
 5/13 g5h3 453  0.18    16596 g5h3 g1g2 b5a4 a1a4 h3f4
 6/15 g5h3 446  0.47    44581 g5h3 g1g3 h3f4 e2e3
 7/21 h4f4 497  1.54   144470 h4f4 c2e4 g5e4 e2e4 f4e4 f3e4 b5a4 a1a4 d8d2
 8/21 h4f4 597  4.51   432072 h4f4 c2d1 d8d2 e2e3 f4e3 f2e3 g5h3
 9/21 Th4f4  775  6.03   583680 h4f4 a4b5 d8d2 e2e3 f4f3 e3f3 g5f3 c2e4 f3g1
e4a8
nps=96828 h/p/q=26.00%/97.00%/0.00% q=81.0% bc=52% br=2.23
mp=1989/1548/-1632/-1774
pawnx=5760 recapx=1722 qcheckx=0 checkx=11448 qfutilx=108981 onereplyx=1712
mthrx=4039 futilx=0 bmx=0
- 8.93/21.17 91% 106/116 bf=2.09 h/p/q=32.67%/96.47%/0.00% 568.01 70154568
604781/5/123509 345419/203886/279201/2521296/8474844/237182/0/37539
*** Problem   Solution(s): Ne4 (bm)
[D] 3r1rk1/q4ppp/p1Rnp3/8/1p6/1N3P2/PP3QPP/3R2K1 b - - bm Ne4
*** Problem   Solution(s): Ne4 (bm)
-- ** -- BR -- BR BK **
BQ -- ** -- ** BP BP BP
BP ** WR BN BP ** -- **
** -- ** -- ** -- ** --
-- BP -- ** -- ** -- **
** WN ** -- ** WP ** --
WP WP -- ** -- WQ WP WP
** -- ** WR ** -- WK --
mv 1 stage 0, black to move, computer plays black
hash=606b332b84d9548
pawnhash=9845a19dd858527d
Alpha=991 Beta=1792 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 6 a7f2 1642  0.00       95 a7f2 g1f2 d6e4 f2e2
 2/ 9 a7f2 1480  0.01      353 a7f2 g1f2 d6e4 f2e2 d8d1 e2d1
 3/ 9>a7f2 1880  0.02     1191 a7f2 g1f2 d6e4 f2e2 d8d1 e2d1 f8d8 d1e2
 3/ 9 d6e4 7071  0.03     1855 d6e4 f2d4
 4/11<d6e4 6670  0.04     3421 d6e4 f2d4 d8d4 b3d4
 4/11 d6e4 6670  0.05     3888 d6e4 f2d4 d8d4 c6e6
 5/12 d6e4 7068  0.08     7974 d6e4 f2d4 d8d4 d1d4 a7d4 b3d4
 6/12<d6e4 6667  0.14    14861 d6e4 f2d4 d8d4 d1d4 a7d4 b3d4 f8d8
 6/12 d6e4 6667  0.18    18574 d6e4 f2d4 d8d4 c6e6 mtmt
 7/12>d6e4 7067  0.27    29066 d6e4 f2d4 e6e5 c6a6 a7a6 f3e4
 7/13 d6e4 7067  0.37    41039 d6e4 f2d4 e6e5 b3c5 e5d4 c5e4
 8/15 d6e4 7465  0.73    81225 d6e4 f2d4 e6e5 c6c7 a7c7 d4d8 c7d8
 9/16 d6e4 7067  1.43   165837 d6e4 f2d4 e6e5 c6c7 a7b6 c7f7 d8d4 b3d4
10/18>d6e4 7467  2.15   251592 d6e4 f2d4 e6e5 c6c7 a7b6 c7c6 b6a7 c6c7 a7b6 c7c6
b6a7 c6c7 a7b6 c7c6 b6a7
10/21 d6e4 7469  3.59   422863 d6e4 f2d4 e6e5 c6c7 a7c7 d4d8 c7a7 b3c5
11/21 Td6e4  7101  6.01   704512 d6e4 f2d4 e6e5 c6c8 d8d6 f3e4 e5d4 b3d4
nps=117301 h/p/q=43.00%/99.00%/0.00% q=73.0% bc=48% br=2.11
mp=1070/1323/-1148/-981
pawnx=3385 recapx=2213 qcheckx=0 checkx=12493 qfutilx=72196 onereplyx=2078
mthrx=4139 futilx=0 bmx=22
+ 8.95/21.17 91% 107/117 bf=2.09 h/p/q=32.76%/96.50%/0.00% 574.02 70859080
605633/5/123444 348804/206099/283340/2533789/8547040/239260/0/37561
*** Problem   Solution(s): Rh4 (bm)
[D] r5k1/pb2rpp1/1p6/2p4q/5R2/2PB2Q1/P1P3PP/5R1K w - - bm Rh4
*** Problem   Solution(s): Rh4 (bm)
BR ** -- ** -- ** BK **
BP BB ** -- BR BP BP --
-- BP -- ** -- ** -- **
** -- BP -- ** -- ** BQ
-- ** -- ** -- WR -- **
** -- WP WB ** -- WQ --
WP ** WP ** -- ** WP WP
** -- ** -- ** WR ** WK
mv 1 stage 0, white to move, computer plays white
hash=c0ecc6cbab688bea
pawnhash=beebe23c6c2e6f53
Alpha=-833 Beta=-32 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 5>f4f7 -32  0.00       48 f4f7
 1/ 5 f4f6 1073  0.00      115 f4f6
 2/ 6 d3c4 1017  0.01      333 d3c4
 3/10<d3c4 616  0.02     1340 d3c4 b7g2 g3g2 h5h2 g2h2
 3/10 f4h4 -302  0.03     2604 f4h4 h5d5
 4/10>f4h4 98  0.04     3260 f4h4 h5d5 d3c4 d5d2
 4/10 f4h4 104  0.08     6631 f4h4 h5e5 g3e1
 5/10>f4h4 504  0.09     7717 f4h4 h5e5 g3e1 e5e1 f1e1 e7e1
 5/12 f4h4 1325  0.15    14495 f4h4 h5e5 d3h7 g8f8 h4f4
 6/14>f4h4 1725  0.21    20209 f4h4 h5e5 d3h7 g8f8 g3e5 e7e5 h4f4
 6/14 f4h4 6499  0.41    41389 f4h4 e7e3 h4h5 e3g3 h2g3
 7/16<f4h4 6098  0.63    66950 f4h4 e7e3 h4h5 e3g3 h2g3 b7f3 g2f3
 7/16 f4h4 6098  0.73    77000 f4h4 e7e3 h4h5 e3d3 c2d3 b7f3 g2f3
 8/19<f4h4 5697  1.52   160710 f4h4 e7e3 h4h5 e3d3 c2d3 b7f3 g2f3 g8f8
 8/19 f4h4 5697  1.59   169185 f4h4 e7e5 h4h5 e5h5 f1f7 g8f7
 9/19>f4h4 6097  1.95   210014 f4h4 e7e5 h4h5 e5h5 f1f7 g8f7 g3g7 f7g7 d3h7 h5h7
 9/19 f4h4 6098  4.16   467168 f4h4 e7e3 h4h5 e3g3 h2g3 g8f8 h5h8 f8e7 h8a8 a7a6
10/23<Tf4h4  5697  6.01   686080 f4h4 e7e3 h4h5 e3g3 h2g3 a8b8 d3c4
nps=114156 h/p/q=34.00%/99.00%/0.00% q=70.0% bc=57% br=2.30
mp=1260/26843596/-1695/-26738600
pawnx=36 recapx=1292 qcheckx=0 checkx=28458 qfutilx=84072 onereplyx=3762
mthrx=4142 futilx=0 bmx=61
+ 8.96/21.19 91% 108/118 bf=2.10 h/p/q=32.77%/96.52%/0.00% 580.03 71545160
606315/5/123348 348840/207391/287482/2562247/8631112/243022/0/37622
*** Problem   Solution(s): Qxd3 (bm)
[D] r2qr1k1/p1p2ppp/2p5/2b5/4nPQ1/3B4/PPP3PP/R1B2R1K b - - bm Qxd3
*** Problem   Solution(s): Qxd3 (bm)
BR ** -- BQ BR ** BK **
BP -- BP -- ** BP BP BP
-- ** BP ** -- ** -- **
** -- BB -- ** -- ** --
-- ** -- ** BN WP WQ **
** -- ** WB ** -- ** --
WP WP WP ** -- ** WP WP
WR -- WB -- ** WR ** WK
mv 1 stage 0, black to move, computer plays black
hash=afade734abeed44c
pawnhash=a760a3267e4e456d
Alpha=-861 Beta=-60 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 3>d8d3 -60  0.00        7 d8d3
 1/ 3 e4f2 3282  0.00       85 e4f2 f1f2 c5f2
 2/ 6 e4f2 3282  0.01      232 e4f2 f1f2 c5f2
 3/ 8<e4f2 2881  0.01      714 e4f2 f1f2 c5f2 d3h7 g8h7
 3/ 8 e4f2 2881  0.01      719 e4f2 f1f2 c5f2 d3h7 g8h7
 4/11>e4f2 3281  0.03     2175 e4f2 f1f2 c5f2 d3h7 g8h7 g4g7 h7g7 c1e3
 4/11 d8d3 3282  0.05     3513 d8d3 c2d3 e4f2 f1f2 e8e1 f2f1 e1f1
 5/11>d8d3 3682  0.07     4423 d8d3 c2d3 e4f2 h1g1 f2g4 c1e3 g4e3
 5/12 d8d3 4663  0.10     8211 d8d3 c2d3 e4f2 h1g1 f2g4 g1h1
 6/12>d8d3 5063  0.14     9636 d8d3 c2d3 e4f2 h1g1 f2g4 g1h1 g4e3 a2a3
 6/15 d8d3 5454  0.29    25654 d8d3 g4f3 d3c2 b2b4
 7/15>d8d3 5854  0.33    29194 d8d3 g4f3 d3c2 b2b4 c5b4 f3e4 e8e4
 7/16 d8d3 6757  0.59    58794 d8d3 c2d3 e4f2 h1g1 f2g4 d3d4 c5d4 g1h1 g4h2 h1h2
 8/18 d8d3 6733  1.47   158531 d8d3 g4f3 d3c2 h2h3 e4f2 h1h2 e8e4
 9/24 d8d3 6732  3.43   382099 d8d3 g4f3 d3c2 h2h3 e4f2 h1h2 e8e4 f1g1 f2h3
10/26 Td8d3  6693  6.01   677888 d8d3 g4f3 d3c2 h2h4 e4f2 h1h2 c5d4 f1g1
nps=112868 h/p/q=29.00%/98.00%/0.00% q=72.0% bc=53% br=2.32
mp=905/26843596/-1642/-26738600
pawnx=102 recapx=1156 qcheckx=0 checkx=18302 qfutilx=79438 onereplyx=3819
mthrx=4334 futilx=0 bmx=187
+ 8.97/21.23 91% 109/119 bf=2.10 h/p/q=32.74%/96.53%/0.00% 586.03 72223048
606916/5/123241 348942/208547/291816/2580549/8710550/246841/0/37809
*** Problem   Solution(s): Rhg1 g6 (bm)
[D] r4rk1/1bn2qnp/3p1B1Q/p2P1pP1/1pp5/5N1P/PPB2P2/2KR3R w - - bm Rhg1 g6
*** Problem   Solution(s): Rhg1 g6 (bm)
BR ** -- ** -- BR BK **
** BB BN -- ** BQ BN BP
-- ** -- BP -- WB -- WQ
BP -- ** WP ** BP WP --
-- BP BP ** -- ** -- **
** -- ** -- ** WN ** WP
WP WP WB ** -- WP -- **
** -- WK WR ** -- ** WR
mv 1 stage 0, white to move, computer plays white
hash=cf48d4927d5a9adc
pawnhash=fae5cf324efe67b6
Alpha=1540 Beta=2341 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 5 f6g7 1941  0.00      128 f6g7 f7g7 h6d6
 2/ 7 f6g7 1941  0.01      456 f6g7 f7g7 h6d6
 3/11<f6g7 1540  0.02     1523 f6g7 f7g7 h6d6 c7d5
 3/12 f6g7 1413  0.04     3181 f6g7 f7g7 h6d6 c7b5
 4/12 f6g7 1465  0.12     9518 f6g7 f7g7 h6d6 a8e8
 5/16<f6g7 1064  0.28    24483 f6g7 f7g7 h6d6 c7d5 d1d5 b7d5
 5/16 f6g7 1064  0.30    25653 f6g7 f7g7 h6d6 a8d8 d6f4
 6/19<f6g7 663  0.77    70018 f6g7 f7g7 h6d6 a8d8 d6f4 b7d5 c2f5
 6/19 f6g7 663  0.84    75673 f6g7 f7g7 h6d6 a8d8 d6f4 b7d5 c2f5
 7/21>f6g7 1063  1.59   148297 f6g7 f7g7 h6d6 a8d8 d6f4 b7d5 c2f5 d5f3
 7/21 g5g6 3626  1.83   171653 g5g6 f7g6 f6g7 f8f6 h6g6 f6g6
 8/24<g5g6 3225  2.58   244241 g5g6 f7g6 f6g7 f8f6 h6g6 f6g6 c2f5 g6g7 f5h7 g7h7
 8/24 g5g6 3219  3.72   355284 g5g6 f7g6 f6g7 f8f6 h1g1 g6g1 d1g1 f6h6 g7h6
 9/24>g5g6 3619  4.69   442636 g5g6 f7g6 f6g7 f8f6 h1g1 g6g1 d1g1 f6h6
 9/25 Tg5g6  3619  6.01   582656 g5g6 f7g6 f6g7 f8f6 h1g1 g6g1 d1g1 f6h6
nps=96899 h/p/q=42.00%/98.00%/0.00% q=79.0% bc=55% br=2.44
mp=2426/1486/-1085/-1802
pawnx=7048 recapx=1914 qcheckx=0 checkx=12153 qfutilx=86130 onereplyx=1944
mthrx=4334 futilx=0 bmx=0
+ 8.97/21.26 91% 110/120 bf=2.10 h/p/q=32.82%/96.54%/0.00% 592.05 72805704
606714/5/122973 355990/210461/296150/2592702/8796680/248785/0/37809
*** Problem   Solution(s): Bxf3+ (bm)
[D] 6k1/5p1p/2bP2pb/4p3/2P5/1p1pNPPP/1P1Q1BK1/1q6 b - - bm Bxf3+
*** Problem   Solution(s): Bxf3+ (bm)
-- ** -- ** -- ** BK **
** -- ** -- ** BP ** BP
-- ** BB WP -- ** BP BB
** -- ** -- BP -- ** --
-- ** WP ** -- ** -- **
** BP ** BP WN WP WP WP
-- WP -- WQ -- WB WK **
** BQ ** -- ** -- ** --
mv 1 stage 0, black to move, computer plays black
hash=1df95a57e94fe4fe
pawnhash=cb5ba511946a9f47
Alpha=-1469 Beta=-668 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 3>h6e3 -668  0.00       17 h6e3 f2e3
 1/ 5 c6d7 363  0.00       99 c6d7
 2/ 6 g8g7 288  0.01      432 g8g7
 3/ 8>h6e3 688  0.01      830 h6e3 f2e3 c6d7
 3/ 8 c6f3 11062  0.02     1304 c6f3 g2f3 b1h1 e3g2 h6d2
 4/11<c6f3 10661  0.03     2637 c6f3 g2f3 b1h1 e3g2 h1h3 mtmt
 4/11 h6f8 262  0.06     6465 h6f8 c4c5 f8h6
 5/14>h6f8 662  0.09     8848 h6f8 c4c5 f8h6 d2d3 b1d3
 5/14 c6f3 10577  0.10    10956 c6f3 g2f3 b1h1 e3g2 h6d2 f2e1
 6/15<c6f3 10176  0.16    18360 c6f3 g2f3 b1h1 e3g2 h6d2 f2e1 h1f1 f3e4 f1g2
e4d3
 6/15 c6f3 10577  0.17    18408 c6f3 g2f3 b1h1 e3g2 h6d2 f2e1 h1f1 f3e4 f1g2
e4d3
 7/18<c6f3 10176  0.32    38505 c6f3 g2f3 b1h1 e3g2 h6d2 f2e1 h1f1 f3e4 f1g2
e4d3 e5e4 d3d4 d2e1
 7/18 c6f3 10648  0.32    38713 c6f3 g2f3 b1h1 e3g2 h6d2 f2e1 h1f1 f3e4 f1g2
e4d3 e5e4 d3d4 d2e1
 8/21<c6f3 10247  0.67    87412 c6f3 g2f3 b1h1 e3g2 h6d2 f2e1 h1f1 f3e4 f1g2
e4d3 e5e4 d3d4 d2e1
 8/21 c6f3 7987  0.97   129466 c6f3 g2f3 b1h1 e3g2 h6d2 f2e1 h1f1 f3e4 f1g2 e4d3
e5e4 d3d4 d2e1
 9/24 c6f3 7587  3.01   403496 c6f3 g2f3 b1h1 e3g2 h6d2 d6d7 e5e4 f3e4 h1g2 e4e5
g2h1 mtmt
10/26 Tc6f3  7982  6.01   774144 c6f3 g2f3 b1h1 e3g2 h6d2 d6d7 d2g5 h3h4 e5e4
f3g4
nps=128702 h/p/q=25.00%/97.00%/0.00% q=71.0% bc=58% br=2.20
mp=3461/4070/-1267/-26738637
pawnx=9715 recapx=1679 qcheckx=0 checkx=57241 qfutilx=55113 onereplyx=3873
mthrx=4354 futilx=0 bmx=205
+ 8.98/21.30 91% 111/121 bf=2.10 h/p/q=32.75%/96.55%/0.00% 598.06 73579848
608098/5/123031 365705/212140/300504/2649943/8851793/252658/0/38014
*** Problem   Solution(s): Rxf1+ (bm)
[D] 1k6/ppp4p/1n2pq2/1N2Rb2/2P2Q2/8/P4KPP/3r1B2 b - - bm Rxf1+
*** Problem   Solution(s): Rxf1+ (bm)
-- BK -- ** -- ** -- **
BP BP BP -- ** -- ** BP
-- BN -- ** BP BQ -- **
** WN ** -- WR BB ** --
-- ** WP ** -- WQ -- **
** -- ** -- ** -- ** --
WP ** -- ** -- WK WP WP
** -- ** BR ** WB ** --
mv 1 stage 0, black to move, computer plays black
hash=a14762e92a365435
pawnhash=d02a02b4514f6243
Alpha=1739 Beta=2540 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 3 f6g7 2294  0.00       79 f6g7
 2/ 6>f6g7 2694  0.00      165 f6g7 e5f5
 2/ 7 d1f1 10883  0.01      436 d1f1 f2e3
 3/ 9<d1f1 10482  0.02     1574 d1f1 f2e3 f1f4 e3f4
 3/ 9 d1f1 10482  0.02     1586 d1f1 f2e3 f1f4 e3f4
 4/11<d1f1 10081  0.06     4998 d1f1 f2e3 f1f4 e3f4 f6e5 f4e5
 4/11 d1f1 10077  0.09     7917 d1f1 f2e3 f1f4 e3f4 f6e5 f4e5
 5/13<d1f1 9676  0.17    17569 d1f1 f2f1 f5d3 f1f2 f6e5 f4e5 b6c4
 5/13 d1f1 9674  0.26    26358 d1f1 f2f1 f5d3 e5e2 f6e5 f4e5 d3e2 f1e2 b6c4
 6/14 d1f1 10072  0.48    51672 d1f1 f2f1 f5d3 f1e1 f6f4 b5a3
 7/18<d1f1 9671  1.21   133477 d1f1 f2f1 f5d3 f1e1 f6f4 e5e2 d3e2 e1e2 f4c4
 7/18 d1f1 9670  1.73   193165 d1f1 f2f1 f5d3 f1e1 f6f4 e5e2 d3e2 e1e2 f4c4
 8/21 d1f1 10055  3.68   411263 d1f1 f2f1 f5d3 f1e1 f6f4 e5e6 d3g6 b5a3 f4c4
 9/22 Td1f1  9655  6.02   701440 d1f1 f2f1 f5d3 f1g1 f6f4 e5e1 e6e5
nps=116557 h/p/q=43.00%/99.00%/0.00% q=74.0% bc=64% br=2.47
mp=620/734/-1476/-1179
pawnx=87 recapx=929 qcheckx=0 checkx=39692 qfutilx=81055 onereplyx=1889
mthrx=4355 futilx=0 bmx=244
+ 8.98/21.30 91% 112/122 bf=2.10 h/p/q=32.84%/96.57%/0.00% 604.08 74281288
608863/5/122966 365792/213069/304859/2689635/8932848/254547/0/38258
*** Problem   Solution(s): Bxd5 Rc7 Re6 (bm)
[D] 6k1/1b2rp2/1p4p1/3P4/PQ4P1/2N2q2/5P2/3R2K1 b - - bm Bxd5 Rc7 Re6
*** Problem   Solution(s): Bxd5 Rc7 Re6 (bm)
-- ** -- ** -- ** BK **
** BB ** -- BR BP ** --
-- BP -- ** -- ** BP **
** -- ** WP ** -- ** --
WP WQ -- ** -- ** WP **
** -- WN -- ** BQ ** --
-- ** -- ** -- WP -- **
** -- ** WR ** -- WK --
mv 1 stage 0, black to move, computer plays black
hash=15772766f6b9dcc4
pawnhash=e68bb3acfa6fa036
Alpha=-2377 Beta=-1576 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 4 f3f6 -1963  0.00      126 f3f6
 2/ 6 f3f6 -2013  0.01      533 f3f6 d5d6
 3/ 8>f3f6 -1612  0.01      922 f3f6 d5d6 e7d7
 3/ 8 e7c7 109  0.03     2059 e7c7 d1c1 b7d5
 4/12>e7c7 509  0.05     4055 e7c7 d1c1 b7d5 b4d4
 4/12 b7d5 509  0.06     5238 b7d5 c3d5 f3d1 g1h2 d1d5
 5/13>b7d5 909  0.07     6412 b7d5 c3d5 f3d1 g1h2 d1d5 b4e7
 5/16 b7d5 1956  0.11    10237 b7d5 c3d5 f3d1 g1h2 e7e2 d5b6 e2f2
 6/20 b7d5 1889  0.24    27490 b7d5 c3d5 f3d1 g1h2 e7e2 d5f6 g8g7 b4b6 d1a4
 7/20 b7d5 1889  0.46    56005 b7d5 c3d5 f3d1 g1h2 e7e2 d5f6 g8g7 b4b6 d1a4
 8/25 e7c7 2287  1.46   184906 e7c7 b4b6 f3g4 g1f1 c7c3 b6d8 g8g7 d1b1 b7d5
 9/25>e7c7 2687  2.14   268824 e7c7 b4b6 f3g4 g1f1 c7c3 b6d8 g8g7 d1b1 b7d5 d8d5
 9/25 e7c7 2687  4.39   577224 e7c7 d1c1 b7d5 g1f1 f3h1 f1e2 h1c1 c3d5 c7c2 e2d3
c1d1 d3e4
10/27 Te7c7  2779  6.01   780288 e7c7 d1c1 b7d5 g1f1 f3h1 f1e2 h1c1 c3d5 c7c2
e2d3 c1d1 d3e4 c2f2
nps=129875 h/p/q=27.00%/99.00%/0.00% q=69.0% bc=58% br=2.08
mp=2160/1581/-1408/-26738637
pawnx=2817 recapx=800 qcheckx=0 checkx=45645 qfutilx=84238 onereplyx=5658
mthrx=4497 futilx=0 bmx=247
+ 8.98/21.35 91% 113/123 bf=2.10 h/p/q=32.79%/96.59%/0.00% 610.09 75061576
610257/5/123034 368609/213869/309356/2735280/9017086/260205/0/38505
*** Problem   Solution(s): g3 (bm)
[D] 6k1/3r4/2R5/P5P1/1P4p1/8/4rB2/6K1 b - - bm g3
*** Problem   Solution(s): g3 (bm)
-- ** -- ** -- ** BK **
** -- ** BR ** -- ** --
-- ** WR ** -- ** -- **
WP -- ** -- ** -- WP --
-- WP -- ** -- ** BP **
** -- ** -- ** -- ** --
-- ** -- ** BR WB -- **
** -- ** -- ** -- WK --
mv 1 stage 0, black to move, computer plays black
hash=52c1de347bffecdb
pawnhash=ad23cb0ea0397d05
Alpha=-2338 Beta=-1537 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 2>e2f2 -1537  0.00        5 e2f2
 1/ 2 d7d2 -394  0.00       44 d7d2
 2/ 7 d7d1 -474  0.00      196 d7d1 g1g2 d1d2
 3/ 8 d7d1 -534  0.01      584 d7d1 g1g2 g8g7
 4/ 8<d7d1 -934  0.02     2157 d7d1 g1g2 g8g7 g2g3 d1d2
 4/ 8 d7d1 -934  0.02     2262 d7d1 g1g2 g8g7 g2g3 d1d2
 5/12 e2e5 -1333  0.10     8312 e2e5 c6g6 g8f7 g6f6 f7g7 f2h4
 6/12>e2e5 -932  0.10     9936 e2e5 c6g6 g8f7 g6f6 f7g7 f2h4 e5a5 b4a5
 6/14 d7d1 -409  0.20    24691 d7d1 g1g2 d1d5 g5g6 d5f5 c6c8 g8g7
 7/17>d7d5 -8  0.76   104663 d7d5 c6c8 g8g7 a5a6 d5d1 g1g2 d1d2
 7/17 g4g3 -7  0.78   108622 g4g3 c6g6 g8h7 g6h6 h7g7 f2g3 d7d1
 8/21>g4g3 393  0.98   142240 g4g3 c6g6 g8h7 g6h6 h7g7 f2g3 d7d1
 8/21 g4g3 2031  1.24   190594 g4g3 c6g6 g8h7 g6h6 h7g7 h6f6 g3f2 f6f2 e2f2 g1f2
 9/23>g4g3 2431  1.84   293164 g4g3 c6g6 g8h7 g6h6 h7g7 h6f6 g3f2 f6f2 e2f2 g1f2
d7d1 f2e2
 9/23 g4g3 2432  2.30   379076 g4g3 c6g6 g8h7 g6h6 h7g7 h6f6 g3f2 f6f2 e2f2 g1f2
d7d1 f2e2
10/25>g4g3 2832  4.21   688557 g4g3 c6g6 g8h8 g6h6 h8g7 h6f6 g3f2 f6f2 e2f2 g1f2
d7d1 f2e2
10/25 g4g3 2833  5.43   897869 g4g3 c6g6 g8h8 g6h6 h8g7 h6f6 g3f2 f6f2 e2f2 g1f2
d7d1 f2e2
11/28 Tg4g3  3019  6.01  1015856 g4g3 c6g6 g8h7 g6f6 g3f2 f6f2 e2f2 g1f2 d7d5
f2e3 d5g5 a5a6 h7g7
nps=169056 h/p/q=39.00%/99.00%/0.00% q=73.0% bc=62% br=2.63
mp=2877/26843596/-932/-26738600
pawnx=29723 recapx=982 qcheckx=0 checkx=43483 qfutilx=75626 onereplyx=1507
mthrx=4600 futilx=0 bmx=2076
+ 9.00/21.40 91% 114/124 bf=2.11 h/p/q=32.84%/96.60%/0.00% 616.10 76077432
613528/5/123483 398332/214851/313956/2778763/9092712/261712/0/40581
*** Problem   Solution(s): Bxd4+ (bm)
[D] r1bqr1k1/pp3ppp/1bp5/3n4/3B4/2N2P1P/PPP1B1P1/R2Q1RK1 b - - bm Bxd4+
*** Problem   Solution(s): Bxd4+ (bm)
BR ** BB BQ BR ** BK **
BP BP ** -- ** BP BP BP
-- BB BP ** -- ** -- **
** -- ** BN ** -- ** --
-- ** -- WB -- ** -- **
** -- WN -- ** WP ** WP
WP WP WP ** WB ** WP **
WR -- ** WQ ** WR WK --
mv 1 stage 0, black to move, computer plays black
hash=fd342995acad1217
pawnhash=8bd08496e63fd620
Alpha=272 Beta=1073 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 9 c8h3 1069  0.00      224 c8h3 g2h3 b6d4 d1d4 d5c3
 2/ 9 b6d4 1057  0.01      773 b6d4 d1d4 c8h3 c3e4
 3/11>b6d4 1457  0.02     1691 b6d4 d1d4 c8h3 g2h3 d5c3
 3/11 b6d4 1457  0.03     2412 b6d4 d1d4 c8h3 g2h3 d5c3
 4/16>b6d4 1857  0.07     5730 b6d4 d1d4 c8h3 c3e4 d5f4
 4/16 b6d4 4534  0.10     8158 b6d4 d1d4 d5c3 d4c3 d8b6 g1h2 e8e2
 5/16 b6d4 4454  0.19    17760 b6d4 d1d4 d5c3 d4c3 e8e2 a1d1 c8d7
 6/16 b6d4 4502  0.49    46744 b6d4 d1d4 d5c3 d4c3 e8e2 c3c4 d8b6 g1h2 e2d2
 7/18 b6d4 4554  1.06   104211 b6d4 d1d4 d5c3 d4c3 e8e2 g1h1 d8g5 f1g1
 8/20 b6d4 4558  2.60   264751 b6d4 d1d4 d5c3 d4c3 e8e2 c3c4 d8b6 g1h2 b6b5 c4c3
 9/24 b6d4 4728  5.63   574903 b6d4 d1d4 d5c3 d4c3 e8e2 g1h1 d8g5 f1g1 c8f5
10/25 Tb6d4  5127  6.02   617472 b6d4 d1d4 d5c3 d4c3 e8e2 g1h1 d8g5 g2g4 c8e6
f1d1
nps=102621 h/p/q=31.00%/98.00%/0.00% q=76.0% bc=49% br=2.01
mp=745/1063/-1010/-1443
pawnx=15 recapx=2004 qcheckx=0 checkx=12296 qfutilx=117235 onereplyx=1563
mthrx=4610 futilx=0 bmx=0
+ 9.01/21.43 92% 115/125 bf=2.11 h/p/q=32.82%/96.62%/0.00% 622.11 76694904
613559/5/123281 398347/216855/318566/2791059/9209947/263275/0/40581
*** Problem   Solution(s): Rxc6+ (bm)
[D] r5r1/pQ5p/1qp2R2/2k1p3/4P3/2PP4/P1P3PP/6K1 w - - bm Rxc6+
*** Problem   Solution(s): Rxc6+ (bm)
BR ** -- ** -- ** BR **
BP WQ ** -- ** -- ** BP
-- BQ BP ** -- WR -- **
** -- BK -- BP -- ** --
-- ** -- ** WP ** -- **
** -- WP WP ** -- ** --
WP ** WP ** -- ** WP WP
** -- ** -- ** -- WK --
mv 1 stage 0, white to move, computer plays white
hash=ee1d6159cff658d
pawnhash=746803bb2dd1b7c0
Alpha=-464 Beta=336 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 5 b7h7 -64  0.00      114 b7h7
 2/ 7>b7h7 336  0.01      295 b7h7 c5b5 g1h1
 2/ 9 f6c6 5127  0.01      598 f6c6 c5b5 c6b6 a7b6 b7h7 a8a2
 3/ 9>f6c6 5527  0.01      690 f6c6 c5b5 c6b6 a7b6 b7h7 a8a2
 3/12 f6c6 5527  0.03     2335 f6c6 c5b5 c6b6 a7b6 b7h7 a8a2
 4/12 f6c6 5926  0.06     7042 f6c6 c5b5 c6b6 a7b6 c3c4 b5a4 b7c6 a4a3 c6b6
 5/15<f6c6 5525  0.14    18222 f6c6 c5b5 c6b6 a7b6 c3c4 b5a4 b7e7 g8g2 g1h1
 5/15 f6c6 5525  0.15    18241 f6c6 c5b5 c6b6 a7b6 c3c4 b5a4 b7e7 g8g2 g1h1
 6/17 f6c6 5138  0.47    58659 f6c6 c5b5 c6b6 a7b6 g1h1 b5a4 b7d7 a4a3 d7d6 a3a2
d6e5
 7/19>f6c6 5538  0.80   105605 f6c6 c5b5 c6b6 a7b6 b7d5 b5a6 d3d4 g8g2 g1g2 a8b8
d5c4 b6b5 c4c6 a6a5
 7/20 f6c6 5538  1.16   153157 f6c6 c5b5 c6b6 a7b6 b7d5 b5a6 d3d4 g8g2 g1g2 a8b8
d5c4 b6b5 c4c6 a6a5
 8/23 f6c6 5140  4.83   626734 f6c6 c5b5 c6b6 a7b6 a2a4 a8a4 b7d7 b5a5 d7a7 a5b5
c3c4 b5b4 a7b6 b4c3 b6b3 c3d2 d3d4
 9/25>f6c6 5540  5.47   717157 f6c6 c5b5 c6b6 a7b6 a2a4 a8a4 b7d7 b5a5 d7a7 a5b5
a7d7 b5a5 d7a7 a5b5 a7d7 b5a5 d7a7 a5b5 a7d7
 9/25 Tf6c6  5542  6.01   793601 f6c6 c5b5 c6b6 a7b6 a2a4 a8a4 b7d7 b5a5 d7a7
a5b5 a7d7 b5a5 d7a7 a5b5 a7d7 b5a5 d7a7 a5b5 a7d7
nps=132091 h/p/q=28.00%/97.00%/0.00% q=68.0% bc=52% br=2.48
mp=1973/1230/-1129/-1267
pawnx=573 recapx=1567 qcheckx=0 checkx=54242 qfutilx=80647 onereplyx=4448
mthrx=4800 futilx=0 bmx=1035
+ 9.01/21.46 92% 116/126 bf=2.11 h/p/q=32.79%/96.62%/0.00% 628.12 77488504
614988/5/123366 398920/218422/323366/2845301/9290594/267723/0/41616
*** Problem   Solution(s): Rxb7 (bm)
[D] 2k4r/1pr1n3/p1p1q2p/5pp1/3P1P2/P1P1P3/1R2Q1PP/1RB3K1 w - - bm Rxb7
*** Problem   Solution(s): Rxb7 (bm)
-- ** BK ** -- ** -- BR
** BP BR -- BN -- ** --
BP ** BP ** BQ ** -- BP
** -- ** -- ** BP BP --
-- ** -- WP -- WP -- **
WP -- WP -- WP -- ** --
-- WR -- ** WQ ** WP WP
** WR WB -- ** -- WK --
mv 1 stage 0, white to move, computer plays white
hash=59bb59c98002045a
pawnhash=62bba8df2163803f
Alpha=1071 Beta=1872 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 2>f4g5 1872  0.00        2 f4g5
 1/ 5 f4g5 1872  0.00       47 f4g5
 2/ 6 f4g5 1639  0.01      172 f4g5 h6g5 c1d2
 3/ 7 f4g5 1553  0.01      816 f4g5 h6g5 b2b6
 4/10 f4g5 1386  0.05     3689 f4g5 h6g5 e3e4 c8b8 e4f5 e6f5
 5/12>f4g5 1786  0.11     9381 f4g5 h6g5 c1d2 c8b8
 5/12 b2b7 4612  0.19    16584 b2b7 c7b7 e2a6 c8d8 b1b7 g5f4 e3f4
 6/17 b2b7 4561  0.37    32419 b2b7 h8g8 b7b8 c8d7 f4g5 g8g5 e2a6 c7c8 b8c8 e7c8
 7/19 b2b7 4936  1.38   123230 b2b7 c8d7 f4g5 h6g5 e2a6 e6d5
 8/20 b2b7 4959  2.39   214474 b2b7 c7b7 e2a6 c8d8 a6b7 g5f4 b7b8 e7c8
 9/20 b2b7 4688  4.32   383620 b2b7 c7b7 e2a6 c8d8 b1b7 g5f4 a6a8 e7c8 a8a5 d8e8
a5e5
10/22 Tb2b7  5086  6.01   556032 b2b7 c7b7 e2a6 c8d8 b1b7 g5f4 a6a8 e7c8 a8a5
d8e8 a5e5 e6e5
nps=92518 h/p/q=30.00%/98.00%/0.00% q=77.0% bc=53% br=2.36
mp=2159/2064/-1605/-1517
pawnx=2138 recapx=3501 qcheckx=0 checkx=14922 qfutilx=98906 onereplyx=1356
mthrx=4824 futilx=0 bmx=156
+ 9.02/21.46 92% 117/127 bf=2.11 h/p/q=32.76%/96.63%/0.00% 634.13 78044536
614524/5/123073 401058/221923/328190/2860223/9389500/269079/0/41772
*** Problem   Solution(s): Qg6 (bm)
[D] 6rk/1pp2Qrp/3p1B2/1pb1p2R/3n1q2/3P4/PPP3PP/R6K w - - bm Qg6
*** Problem   Solution(s): Qg6 (bm)
-- ** -- ** -- ** BR BK
** BP BP -- ** WQ BR BP
-- ** -- BP -- WB -- **
** BP BB -- BP -- ** WR
-- ** -- BN -- BQ -- **
** -- ** WP ** -- ** --
WP WP WP ** -- ** WP WP
WR -- ** -- ** -- ** WK
mv 1 stage 0, white to move, computer plays white
hash=f0fc0d5f69a56029
pawnhash=873db3cc960c630e
Alpha=-2145 Beta=-1344 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 7 f6g7 -1790  0.01      299 f6g7 g8g7 f7e8 g7g8
 2/11 f6g7 -1995  0.02     1261 f6g7 g8g7 f7f4 e5f4 c2c3
 3/12 f6g7 -1869  0.06     4733 f6g7 g8g7 f7e8 g7g8 e8e7 g8g7
 4/12 f6g7 -1713  0.14    13066 f6g7 g8g7 f7e8 g7g8 e8e7 h7h6 e7c7 d4c2
 5/15>f6g7 -1312  0.35    32907 f6g7 g8g7 f7e8 g7g8 e8e7 h7h6 e7c7 d4c2
 5/15 f7g6 -1312  0.37    34662 f7g6 f4f6 g6f6 d4c2
 6/15>f7g6 -911  0.43    40170 f7g6 f4f6 g6f6 d4c2 h5e5 h7h6
 6/18 f7g6 2051  0.83    82240 f7g6 f4f6 g6f6 d4c2 a1f1
 7/18>f7g6 2451  1.02    97319 f7g6 f4f6 g6f6 d4c2 a1f1 c2e3 h5h7
 7/20 f7g6 2451  1.57   159850 f7g6 f4f6 g6f6 d4c2 a1f1 c2e3 h5h7 h8h7 f6h4
 8/22 f7g6 2316  3.27   353729 f7g6 f4f6 g6f6 d4c2 a1f1 c5e3 g2g3
 9/23 Tf7g6  2311  6.03   666624 f7g6 f4f6 g6f6 d4c2 a1f1 g8a8 a2a3 a8g8
nps=110570 h/p/q=42.00%/98.00%/0.00% q=70.0% bc=53% br=2.09
mp=1322/1198/-1541/-1832
pawnx=88 recapx=1112 qcheckx=0 checkx=26586 qfutilx=112031 onereplyx=6093
mthrx=4869 futilx=0 bmx=3
+ 9.02/21.48 92% 118/128 bf=2.11 h/p/q=32.84%/96.64%/0.00% 640.16 78711160
614931/5/122955 401146/223035/333059/2886809/9501531/275172/0/41775
*** Problem   Solution(s): Bf3 (bm)
[D] 3r1r1k/1b2b1p1/1p5p/2p1Pp2/q1B2P2/4P2P/1BR1Q2K/6R1 b - - bm Bf3
*** Problem   Solution(s): Bf3 (bm)
-- ** -- BR -- BR -- BK
** BB ** -- BB -- BP --
-- BP -- ** -- ** -- BP
** -- BP -- WP BP ** --
BQ ** WB ** -- WP -- **
** -- ** -- WP -- ** WP
-- WB WR ** WQ ** -- WK
** -- ** -- ** -- WR --
mv 1 stage 0, black to move, computer plays black
hash=4592c3ade7995a72
pawnhash=1005cf93a45cfa30
Alpha=1570 Beta=2371 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 2 b6b5 2167  0.00       52 b6b5
 2/ 4 g7g5 1981  0.00      120 g7g5
 3/ 7 b7f3 1950  0.01      825 b7f3 e2f2
 4/ 8 b7f3 2095  0.02     2031 b7f3 c4b5 f3e2 b5a4
 5/10 b7e4 1960  0.08     7569 b7e4 c2c1 b6b5 c4b5
 6/12 b7f3 2142  0.23    22664 b7f3 c4b5 a4e4 e2f2
 7/12 b7f3 2039  0.50    50816 b7f3 c4b5 a4e4 e2c4 e4c4 b5c4 g7g5
 8/15 b7f3 2221  0.94    98832 b7f3 c4b5 a4e4 e2c4 e4e3 e5e6 f8g8
 9/16>b7f3 2621  1.31   139733 b7f3 c4b5 a4e4 e2c4 e4e3 e5e6 f8g8 b2g7 g8g7 g1g7
 9/17 b7f3 3210  1.98   215961 b7f3 c4b5 a4e4 e2c4 e4e3 b2c1 e3e4
10/23<b7f3 2809  3.03   339032 b7f3 c4b5 a4e4 e2c4 e4e3 b2c1 e3e4 c4e4 f5e4 g1g3
10/23 b7f3 2734  4.73   533841 b7f3 c4b5 a4e4 e2c4 e4e3 b2c1 e3e4 c4e4 f5e4 c1e3
11/25>Tb7f3  3134  6.02   674816 b7f3 c4b5 a4e4 e2c4 e4e3 b2c1 e3e4 c4e4 f5e4
c1e3 f8g8
nps=112170 h/p/q=47.00%/99.00%/0.00% q=74.0% bc=49% br=2.60
mp=2937/2022/-354/-26738600
pawnx=5129 recapx=893 qcheckx=0 checkx=9184 qfutilx=87007 onereplyx=777
mthrx=4879 futilx=0 bmx=0
+ 9.03/21.50 92% 119/129 bf=2.12 h/p/q=32.95%/96.66%/0.00% 646.18 79385976
615395/5/122855 406275/223928/337938/2895993/9588538/275949/0/41775
*** Problem   Solution(s): Qh6 Qh8 (bm)
[D] 6k1/1pp3q1/5r2/1PPp4/3P1pP1/3Qn2P/3B4/4R1K1 b - - bm Qh6 Qh8
*** Problem   Solution(s): Qh6 Qh8 (bm)
-- ** -- ** -- ** BK **
** BP BP -- ** -- BQ --
-- ** -- ** -- BR -- **
** WP WP BP ** -- ** --
-- ** -- WP -- BP WP **
** -- ** WQ BN -- ** WP
-- ** -- WB -- ** -- **
** -- ** -- WR -- WK --
mv 1 stage 0, black to move, computer plays black
hash=5ca9fe5c2f772df2
pawnhash=ea571d17eadc62a9
Alpha=-2556 Beta=-1755 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 6>e3g4 -1755  0.00      126 e3g4
 1/ 6 e3c4 -915  0.01      258 e3c4
 2/ 6<e3c4 -1315  0.01      406 e3c4 d2f4
 2/ 8 e3c4 -2586  0.01      702 e3c4 c5c6 b7c6 b5c6
 3/10 e3g4 -2520  0.03     2023 e3g4 h3g4 g7g4 g1h1
 4/13 e3g4 -2344  0.05     3912 e3g4 h3g4 g7g4 g1f1
 5/13>e3g4 -1943  0.11    10209 e3g4 h3g4 g7g4 g1f1 f4f3
 5/13 f6h6 -1582  0.20    19112 f6h6 e1e3 f4e3 d3e3
 6/14 f6h6 -1256  0.31    32041 f6h6 d2e3 h6h3 d3f5 f4e3 f5d5 g8h7
 7/18 f6h6 -1276  0.56    58533 f6h6 d2e3 h6h3 d3f5 f4e3 f5d5 g8h8 d5d8 h8h7
 8/20>f6h6 -875  1.89   203249 f6h6 e1e3 f4e3 d3e3 h6f6 g4g5
 8/21 g7h6 104  2.60   276810 g7h6 e1a1 h6h3 a1a8 g8f7 g4g5 f6h6
 9/26 g7h6 408  5.61   594467 g7h6 d2e3 h6h3 e1e2 h3g3 e2g2 g3e1 d3f1 e1e3 f1f2
e3c1 f2f1 c1f1 g1f1 g8f7
10/26 Tg7h6  408  6.01   646144 g7h6 d2e3 h6h3 e1e2 h3g3 e2g2 g3e1 d3f1 e1e3
f1f2 e3c1 f2f1 c1e3 f1f2 e3c1 f2f1 c1e3 f1f2 e3c1 f2f1 c1e3
nps=107511 h/p/q=25.00%/98.00%/0.00% q=77.0% bc=55% br=2.25
mp=2795/2113/-1320/-26738637
pawnx=18750 recapx=2063 qcheckx=0 checkx=31319 qfutilx=51750 onereplyx=3274
mthrx=4880 futilx=0 bmx=28
+ 9.04/21.54 92% 120/130 bf=2.12 h/p/q=32.88%/96.67%/0.00% 652.19 80032120
615632/5/122714 425025/225991/342818/2927312/9640288/279223/0/41803
*** Problem   Solution(s): Re8 (bm)
[D] 2rq1bk1/p4p1p/1p4p1/3b4/3B1Q2/8/P4PpP/3RR1K1 w - - bm Re8
*** Problem   Solution(s): Re8 (bm)
-- ** BR BQ -- BB BK **
BP -- ** -- ** BP ** BP
-- BP -- ** -- ** BP **
** -- ** BB ** -- ** --
-- ** -- WB -- WQ -- **
** -- ** -- ** -- ** --
WP ** -- ** -- WP BP WP
** -- ** WR WR -- WK --
mv 1 stage 0, white to move, computer plays white
hash=a9a642d5391fce19
pawnhash=eb02cfde9dc41f42
Alpha=-2936 Beta=-2135 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 3>d4b6 -2135  0.00        8 d4b6
 1/ 5 d4b2 -1481  0.00      105 d4b2
 2/ 5 d4f6 -1500  0.01      229 d4f6
 3/ 8<d4f6 -1900  0.01      583 d4f6 d5a2 f6d8
 3/ 8 f2f3 -2589  0.02     1195 f2f3 f7f5 g1g2 d5a2
 4/10>f2f3 -2188  0.04     2761 f2f3 c8c2 d4f2
 4/10 f2f3 -2188  0.04     3441 f2f3 c8c2 d4f2 d5a2
 5/10>f2f3 -1787  0.06     5288 f2f3 c8c2 d4f2 d5a2 d1d8
 5/10 d4f6 -1557  0.08     6922 d4f6 d8d7 f6b2
 6/11>e1e2 -1156  0.27    26009 e1e2 d8d7 f2f3 f8d6
 6/11 f4e5 -1138  0.34    32262 f4e5 f7f6 e5f6 d5a2 g1g2 d8f6 d4f6
 7/14 f4e5 -1537  0.74    73057 f4e5 f7f6 e5f6 d8f6 d4f6
 8/16>f4e5 -1136  1.00   100904 f4e5 f7f6 e5f6 d8f6 d4f6 d5a2 g1g2 a7a5
 8/16 d4f6 -648  1.69   177829 d4f6 d8d7 f4g5 c8c5 g5g2 h7h6
 9/17 e1e8 -469  3.59   380829 e1e8 d8c7 f4c7 c8c7 d4b6 a7b6 d1d5 c7c2 g1g2 c2a2
10/23>e1e8 -68  5.50   595698 e1e8 d8c7 f4c7 c8c7 d4b6 a7b6 d1d5 c7c2 g1g2
10/23 Te1e8  7245  6.02   652297 e1e8 d8c7 f4f6 c7e7 e8e7 f8e7 f6e7 d5a2 g1g2
nps=108409 h/p/q=27.00%/99.00%/0.00% q=76.0% bc=49% br=2.51
mp=818/2090/-1211/-26738600
pawnx=10 recapx=818 qcheckx=0 checkx=14443 qfutilx=113191 onereplyx=1650
mthrx=4954 futilx=0 bmx=56
+ 9.05/21.55 92% 121/131 bf=2.12 h/p/q=32.84%/96.69%/0.00% 658.20 80684416
615912/5/122583 425035/226809/347772/2941755/9753479/280873/0/41859
*** Problem   Solution(s): Re1 (bm)
[D] 4r1k1/5bpp/2p5/3pr3/8/1B3pPq/PPR2P2/2R2QK1 b - - bm Re1
*** Problem   Solution(s): Re1 (bm)
-- ** -- ** BR ** BK **
** -- ** -- ** BB BP BP
-- ** BP ** -- ** -- **
** -- ** BP BR -- ** --
-- ** -- ** -- ** -- **
** WB ** -- ** BP WP BQ
WP WP WR ** -- WP -- **
** -- WR -- ** WQ WK --
mv 1 stage 0, black to move, computer plays black
hash=89d134f8b1917af2
pawnhash=cba018dd47e42d78
Alpha=2015 Beta=2816 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 6 h3f1 2309  0.00      292 h3f1 g1f1 e5e2 c2c6 e2b2
 2/ 9 h3f1 2309  0.01      715 h3f1 g1f1 e5e2 c2c6 e2b2
 3/10 h3f1 2250  0.02     2073 h3f1 g1f1 e5e2 c2e2 e8e2 c1c6 e2b2
 4/12>h3f1 2650  0.06     6016 h3f1 g1f1 e5h5 a2a4
 4/12 e5e1 4270  0.07     6866 e5e1 c1e1 e8e1 c2e2 e1f1
 5/12>e5e1 4670  0.07     7202 e5e1 c1e1 e8e1 b3c4 e1f1
 5/13 Me5e1  99988  0.11    10494 e5e1 c1e1 e8e1 b3c4 h3g2
nps=98075 h/p/q=40.00%/97.00%/0.00% q=76.0% bc=55% br=1.83 mp=935/2693/-258/-347
pawnx=36 recapx=83 qcheckx=0 checkx=295 qfutilx=1187 onereplyx=124 mthrx=4954
futilx=0 bmx=0
+ 9.02/21.48 92% 122/132 bf=2.12 h/p/q=32.89%/96.69%/0.00% 658.31 80694912
611325/5/122579 425071/226892/352726/2942050/9754666/280997/0/41859
*** Problem   Solution(s): Bh4 (bm)
[D] r1b1k2r/1pp1q2p/p1n3p1/3QPp2/8/1BP3B1/P5PP/3R1RK1 w kq - bm Bh4
*** Problem   Solution(s): Bh4 (bm)
BR ** BB ** BK ** -- BR
** BP BP -- BQ -- ** BP
BP ** BN ** -- ** BP **
** -- ** WQ WP BP ** --
-- ** -- ** -- ** -- **
** WB WP -- ** -- WB --
WP ** -- ** -- ** WP WP
** -- ** WR ** WR WK --
mv 1 stage 0, white to move, computer plays white
hash=7229304c2ed3f593
pawnhash=a0b2cb1c944fe89d
Alpha=-279 Beta=521 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 2>f1f5 521  0.00        7 f1f5
 1/ 5 b3c2 933  0.00      123 b3c2
 2/ 7 g1h1 933  0.01      485 g1h1
 3/ 9<g1h1 532  0.02     1602 g1h1 c6e5 g3e5
 3/ 9 c3c4 99  0.04     3120 c3c4 h7h5
 4/12 h2h4 107  0.08     6965 h2h4 h7h6
 5/12>h2h3 507  0.12    11474 h2h3 c8d7 g1h2
 5/12 g3h4 917  0.19    18457 g3h4 g6g5 h4g3
 6/14 f1e1 673  0.53    51504 f1e1 e8f8 d5f3
 7/16>f1e1 1073  0.69    68475 f1e1 e8f8 g3h4 g6g5 h4f2
 7/16 g3h4 1137  0.96    96625 g3h4 e7d7 d5c5 b7b6 c5a3
 8/17>g3h4 1537  1.17   117091 g3h4 e7d7 d5c5 b7b6 c5a3 d7g7 h4f6
 8/19 g3h4 3766  2.33   242409 g3h4 g6g5 h4g5 e7d7 d5d7 c8d7 e5e6 d7c8 f1f5
 9/20>g3h4 4166  2.89   300429 g3h4 g6g5 h4g5 e7d7 d5d7 c8d7 e5e6 d7c8 f1f5 h7h5
 9/21 g3h4 4166  4.23   460943 g3h4 e7d7 d5c5 c6d4 c3d4 b7b6
10/25 Tg3h4  4565  6.01   649216 g3h4 c8e6 d5e6 e7e6 f1f5 b7b6
nps=108041 h/p/q=35.00%/98.00%/0.00% q=73.0% bc=55% br=2.24
mp=2037/619/-1548/-2053
pawnx=9461 recapx=1507 qcheckx=0 checkx=22219 qfutilx=86986 onereplyx=1482
mthrx=4960 futilx=0 bmx=0
+ 9.02/21.51 92% 123/133 bf=2.12 h/p/q=32.91%/96.70%/0.00% 664.32 81344128
611610/5/122447 434532/228399/357686/2964269/9841652/282479/0/41859
*** Problem   Solution(s): Rd1+ (bm)
[D] 3r2k1/p6p/2Q3p1/4q3/2P1p3/P3Pb2/1P3P1P/2K2BR1 b - - bm Rd1+
*** Problem   Solution(s): Rd1+ (bm)
-- ** -- BR -- ** BK **
BP -- ** -- ** -- ** BP
-- ** WQ ** -- ** BP **
** -- ** -- BQ -- ** --
-- ** WP ** BP ** -- **
WP -- ** -- WP BB ** --
-- WP -- ** -- WP -- WP
** -- WK -- ** WB WR --
mv 1 stage 0, black to move, computer plays black
hash=94183d3ba79bc0d1
pawnhash=d8025848af4d5536
Alpha=-2040 Beta=-1239 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 5 d8d1 -1544  0.00      210 d8d1 c1c2 e5h2
 2/ 8 e5h2 -1552  0.01      780 e5h2 c6e6 g8h8
 3/12>e5h2 -1151  0.04     3340 e5h2 c6e6 g8h8 g1g6
 3/12 d8d1 -748  0.05     4051 d8d1 c1c2 d1d2 c2b3 e5b2
 4/13>d8d1 -347  0.06     4877 d8d1 c1c2 d1d2 c2b3 e5b2
 4/13 Md8d1  99985  0.07     5808 d8d1 c1c2 d1d2 c2b3 e5b2 b3a4 b2c2 a4b5 d2f2
g1g6
nps=78486 h/p/q=41.00%/96.00%/0.00% q=79.0% bc=57% br=2.15 mp=528/841/-557/-41
pawnx=0 recapx=1 qcheckx=0 checkx=372 qfutilx=1174 onereplyx=38 mthrx=4960
futilx=0 bmx=0
+ 8.99/21.45 92% 124/134 bf=2.12 h/p/q=32.97%/96.69%/0.00% 664.39 81349936
607089/5/122442 434532/228400/362646/2964641/9842826/282517/0/41859
*** Problem   Solution(s): Nd4 (bm)
[D] 3r1r1k/N2qn1pp/1p2np2/2p5/2Q1P2N/3P4/PP4PP/3R1RK1 b - - bm Nd4
*** Problem   Solution(s): Nd4 (bm)
-- ** -- BR -- BR -- BK
WN -- ** BQ BN -- BP BP
-- BP -- ** BN BP -- **
** -- BP -- ** -- ** --
-- ** WQ ** WP ** -- WN
** -- ** WP ** -- ** --
WP WP -- ** -- ** WP WP
** -- ** WR ** WR WK --
mv 1 stage 0, black to move, computer plays black
hash=2137cfc846397321
pawnhash=99adcffa0d4c271d
Alpha=-1557 Beta=-756 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 3 e6d4 -930  0.00       56 e6d4
 2/ 6 d8b8 -959  0.01      257 d8b8
 3/ 7 g7g5 -1080  0.01     1058 g7g5 h4f3
 4/13 e6d4 -858  0.03     2726 e6d4 c4a6 d7e6
 5/13>e6d4 -457  0.08     6728 e6d4 c4a6 d8b8 g1h1
 5/13 e6d4 1863  0.12    10943 e6d4 c4a6 d8a8 a6b6 d7a7
 6/13 e6d4 1463  0.28    24182 e6d4 c4a6 d8a8 a6b6 d4e2 g1h1 d7a7
 7/15 e6d4 1237  0.56    56453 e6d4 c4a6 d8a8 a6b6 a8a7 d1a1
 8/18 e6d4 1576  1.26   134529 e6d4 c4a6 d8a8 a6b6 a8a7 a2a4 f8a8
 9/19 e6d4 1951  2.69   297293 e6d4 c4a6 d8a8 a6b6 d7a7 b6d6 a8b8
10/20 e6d4 2057  5.97   664630 e6d4 c4a6 d8a8 a6b6 d7a7 b6a7 a8a7 a2a3 d4e2 g1h1
a7a8
11/20<Te6d4  1656  6.01   668676 e6d4 c4a6 d8a8 a6b6 d7a7 b6a7 a8a7 a2a3 d4e2
g1h1 a7a8 h4f3
nps=111335 h/p/q=38.00%/98.00%/0.00% q=74.0% bc=55% br=2.12
mp=1117/1467/-705/-991
pawnx=736 recapx=1665 qcheckx=0 checkx=11911 qfutilx=122811 onereplyx=963
mthrx=4960 futilx=0 bmx=0
+ 9.00/21.44 92% 125/135 bf=2.12 h/p/q=33.01%/96.70%/0.00% 670.40 82018608
607545/5/122343 435268/230065/367606/2976552/9965637/283480/0/41859
*** Problem   Solution(s): Rc8+ (bm)
[D] 6kr/1q2r1p1/1p2N1Q1/5p2/1P1p4/6R1/7P/2R3K1 w - - bm Rc8+
*** Problem   Solution(s): Rc8+ (bm)
-- ** -- ** -- ** BK BR
** BQ ** -- BR -- BP --
-- BP -- ** WN ** WQ **
** -- ** -- ** BP ** --
-- WP -- BP -- ** -- **
** -- ** -- ** -- WR --
-- ** -- ** -- ** -- WP
** -- WR -- ** -- WK --
mv 1 stage 0, white to move, computer plays white
hash=5cd0e9e6a9485226
pawnhash=60891bd4c523070c
Alpha=2666 Beta=3467 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 5 g6f5 3067  0.00       97 g6f5
 2/ 9>Mc1c8  99988  0.01      312 c1c8 b7c8 g6g7 e7g7 g3g7
nps=62400 h/p/q=20.00%/92.00%/0.00% q=83.0% bc=77% br=0.75 mp=350/539/-1045/-392
pawnx=1 recapx=1 qcheckx=0 checkx=22 qfutilx=73 onereplyx=4 mthrx=4960 futilx=0
bmx=0
+ 8.95/21.35 92% 126/136 bf=2.11 h/p/q=32.91%/96.67%/0.00% 670.40 82018920
603080/5/122343 435269/230066/372566/2976574/9965710/283484/0/41859
*** Problem   Solution(s): Rd7 (bm)
[D] 3b1rk1/1bq3pp/5pn1/1p2rN2/2p1p3/2P1B2Q/1PB2PPP/R2R2K1 w - - bm Rd7
*** Problem   Solution(s): Rd7 (bm)
-- ** -- BB -- BR BK **
** BB BQ -- ** -- BP BP
-- ** -- ** -- BP BN **
** BP ** -- BR WN ** --
-- ** BP ** BP ** -- **
** -- WP -- WB -- ** WQ
-- WP WB ** -- WP WP WP
WR -- ** WR ** -- WK --
mv 1 stage 0, white to move, computer plays white
hash=f05493567f44a8e0
pawnhash=bfa5ec54f2e9e709
Alpha=-1109 Beta=-308 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 2>d1d8 -308  0.00       11 d1d8
 1/ 3 a1a7 21  0.00       80 a1a7
 2/ 5 g1h1 -35  0.01      351 g1h1
 3/ 9<g1h1 -435  0.02     1287 g1h1 b7c8 d1d8
 3/ 9 a1a7 -765  0.04     2576 a1a7 f8e8
 4/11>a1a7 -364  0.04     2950 a1a7 f8e8 d1d8 e8d8
 4/11 d1d7 90  0.09     6711 d1d7 c7d7 f5h6 g7h6 h3d7
 5/11 a1a7 -205  0.16    13912 a1a7 c7c8 f5g7
 6/16 d1d7 -333  0.76    69869 d1d7 g6f4 f5h6 g7h6 e3f4
 7/17>d1d7 67  0.92    83006 d1d7 g6f4 f5h6 g7h6 e3f4 c7d7 h3d7 d8e7
 7/17 d1d7 1916  1.50   140984 d1d7 c7d7 f5h6 g7h6 h3d7 e5e7 d7b5
 8/20 d1d7 1806  2.31   225785 d1d7 c7d7 f5h6 g7h6 h3d7 b7d5 e3h6 d5e6
 9/20>d1d7 2206  2.87   270747 d1d7 c7d7 f5h6 g7h6 h3d7 b7d5 e3h6 g6f4 h6f4 d8e7
 9/21 d1d7 2705  5.76   485279 d1d7 c7d7 f5h6 g7h6 h3d7 e5e7 d7b5 h6h5 b5h5
10/21 Td1d7  2582  6.00   503808 d1d7 c7d7 f5h6 g7h6 h3d7 e5e7 d7b5 g6e5 e3h6
f8f7
nps=83940 h/p/q=37.00%/99.00%/0.00% q=77.0% bc=54% br=2.53 mp=858/1101/-673/-986
pawnx=705 recapx=718 qcheckx=0 checkx=9971 qfutilx=114462 onereplyx=741
mthrx=4960 futilx=0 bmx=0
+ 8.96/21.34 92% 127/137 bf=2.11 h/p/q=32.94%/96.69%/0.00% 676.41 82522728
602356/5/122002 435974/230784/377526/2986545/10080172/284225/0/41859
*** Problem   Solution(s): h5 (bm)
[D] r1bq3r/ppppR1p1/5n1k/3P4/6pP/3Q4/PP1N1PP1/5K1R w - - bm h5
*** Problem   Solution(s): h5 (bm)
BR ** BB BQ -- ** -- BR
BP BP BP BP WR -- BP --
-- ** -- ** -- BN -- BK
** -- ** WP ** -- ** --
-- ** -- ** -- ** BP WP
** -- ** WQ ** -- ** --
WP WP -- WN -- WP WP **
** -- ** -- ** WK ** WR
mv 1 stage 0, white to move, computer plays white
hash=f4de7241cb071558
pawnhash=648fec987585d06
Alpha=-2802 Beta=-2001 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 4 d5d6 -2491  0.00      100 d5d6 c7d6 d3d6
 2/ 7 d3e3 -2762  0.01      510 d3e3 h6h7 e3d3 h7g8
 3/ 9 e7e5 -2642  0.03     1537 e7e5 d7d6
 4/12 e7f7 -2915  0.09     5993 e7f7 g7g5 h4g5 h6g5
 5/15 d3a3 -2893  0.35    24154 d3a3 d7d6 a3e3 h6h7
 6/17 d5d6 -2907  1.04    74870 d5d6 h8e8 e7f7 c7d6 d3d6
 7/19 d5d6 -2673  2.57   198445 d5d6 c7c6 d3e3 h6h7 e3d3 h7g8 f1g1
 8/22 Td5d6  -2699  6.01   456704 d5d6 h8g8 d3e3 h6h7 d6c7 d8c7 e3d3 h7h8 f1g1
nps=76041 h/p/q=24.00%/97.00%/0.00% q=73.0% bc=59% br=2.78
mp=2433/1023/-1189/-1619
pawnx=5622 recapx=1268 qcheckx=0 checkx=19033 qfutilx=67759 onereplyx=2046
mthrx=4963 futilx=0 bmx=0
- 8.95/21.35 92% 127/138 bf=2.12 h/p/q=32.88%/96.69%/0.00% 682.41 82979432
601300/5/121597 441596/232052/382489/3005578/10147931/286271/0/41859
*** Problem   Solution(s): Nf6+ (bm)
[D] rnb3kr/ppp2ppp/1b6/3q4/3pN3/Q4N2/PPP2KPP/R1B1R3 w - - bm Nf6+
*** Problem   Solution(s): Nf6+ (bm)
BR BN BB ** -- ** BK BR
BP BP BP -- ** BP BP BP
-- BB -- ** -- ** -- **
** -- ** BQ ** -- ** --
-- ** -- BP WN ** -- **
WQ -- ** -- ** WN ** --
WP WP WP ** -- WK WP WP
WR -- WB -- WR -- ** --
mv 1 stage 0, white to move, computer plays white
hash=f3d81f3595822a85
pawnhash=492c01ee8eea2479
Alpha=-2863 Beta=-2062 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 2>f3d4 -2062  0.00        7 f3d4
 1/ 6 f2g1 -1715  0.01      160 f2g1
 2/10 c1g5 -1745  0.01      676 c1g5
 3/11>Me4f6  99971  0.04     1931 e4f6 g7f6 a3f8 g8f8 c1h6 f8g8 e1e8
nps=53639 h/p/q=17.00%/94.00%/0.00% q=78.0% bc=50% br=1.50 mp=0/0/-840/-1632
pawnx=3 recapx=1 qcheckx=0 checkx=39 qfutilx=454 onereplyx=11 mthrx=4963
futilx=0 bmx=0
+ 8.91/21.27 92% 128/139 bf=2.11 h/p/q=32.76%/96.67%/0.00% 682.45 82981360
596988/5/121594 441599/232053/387452/3005617/10148385/286282/0/41859
*** Problem   Solution(s): Bc7 Rc7 (bm)
[D] r2b1rk1/pq4p1/4ppQP/3pB1p1/3P4/2R5/PP3PP1/5RK1 w - - bm Bc7 Rc7
*** Problem   Solution(s): Bc7 Rc7 (bm)
BR ** -- BB -- BR BK **
BP BQ ** -- ** -- BP --
-- ** -- ** BP BP WQ WP
** -- ** BP WB -- BP --
-- ** -- WP -- ** -- **
** -- WR -- ** -- ** --
WP WP -- ** -- WP WP **
** -- ** -- ** WR WK --
mv 1 stage 0, white to move, computer plays white
hash=d1ff0d47678ced83
pawnhash=58ee06d22480f548
Alpha=212 Beta=1013 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 6>h6g7 1013  0.00        5 h6g7
 1/ 6 h6h7 1406  0.01      250 h6h7 g8h8
 2/ 9 h6h7 1235  0.02      819 h6h7 g8h8 e5d6 b7b2 d6f8 b2c3 g6g7
 3/14 e5d6 1207  0.07     3993 e5d6 g8h8
 4/14>e5d6 1607  0.08     4451 e5d6 g8h8 d6f8 b7b2
 4/14 c3c7 3106  0.18    11870 c3c7 b7b5 g6g7
 5/14>c3c7 3506  0.20    12519 c3c7 b7c7 e5c7 g8h8 mtmt
 5/14 c3c7 7239  0.29    20589 c3c7 b7c7 e5c7 f8f7 h6h7 g8h8
 6/14>c3c7 7639  0.31    21551 c3c7 b7c7 e5c7 f8f7 h6h7 g8h8 g6g7 f7g7
 6/16 c3c7 7641  0.57    43532 c3c7 b7c7 e5c7 f8f7 c7d8 a8d8 h6h7
 7/18 c3c7 8034  1.22    98379 c3c7 b7c7 e5c7 f8f7 h6h7 g8h8 g6f7 f6f5
 8/20<c3c7 7633  2.97   247795 c3c7 b7c7 e5c7 f8f7 h6h7 g8h8 g6f7 d8e7
 8/20 c3c7 7633  3.07   253709 c3c7 b7c7 e5c7 f8f7 h6h7 g8h8 g6f7 d8e7
 9/23 Tc3c7  8032  6.06   525312 c3c7 b7c7 e5c7 f8f7 h6h7 g8h8 g6f7 d8c7 f7e6
c7h2 g1h1
nps=86628 h/p/q=41.00%/98.00%/0.00% q=73.0% bc=54% br=2.26
mp=2268/1005/-1131/-1546
pawnx=3531 recapx=987 qcheckx=0 checkx=16379 qfutilx=70188 onereplyx=2628
mthrx=4966 futilx=0 bmx=0
+ 8.91/21.29 92% 129/140 bf=2.11 h/p/q=32.82%/96.68%/0.00% 688.51 83506672
596476/5/121286 445130/233040/392418/3021996/10218573/288910/0/41859
*** Problem   Solution(s): Qxf4 (bm)
[D] 4r1k1/p1qr1p2/2pb1Bp1/1p5p/3P1n1R/1B3P2/PP3PK1/2Q4R w - - bm Qxf4
*** Problem   Solution(s): Qxf4 (bm)
-- ** -- ** BR ** BK **
BP -- BQ BR ** BP ** --
-- ** BP BB -- WB BP **
** BP ** -- ** -- ** BP
-- ** -- WP -- BN -- WR
** WB ** -- ** WP ** --
WP WP -- ** -- WP WK **
** -- WQ -- ** -- ** WR
mv 1 stage 0, white to move, computer plays white
hash=a71290d85739431a
pawnhash=11f0a41ac00549a8
Alpha=-1297 Beta=-496 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 2 g2g1 -897  0.00       10 g2g1
 2/ 3 g2g3 -1195  0.00       28 g2g3
 3/ 6<g2g3 -1595  0.01      178 g2g3 d6e5 d4e5
 3/ 8 g2f1 -2635  0.02     1019 g2f1 g8h7
 4/10>g2f1 -2234  0.03     1413 g2f1 g8h7 h4f4 d6f4
 4/10 g2f1 -1378  0.05     2450 g2f1 c6c5 h4f4
 5/12<g2f1 -1778  0.08     4165 g2f1 c6c5 h4f4 d6f4 b3f7 d7f7
 5/12 g2f1 -2375  0.16     8992 g2f1 f4d3 c1d2 d3e1
 6/15 g2f1 -2360  0.52    30594 g2f1 g8h7 c1d2 c7b8
 7/17 g2f1 -2407  1.40    82756 g2f1 e8e2 f1g1 g8h7
 8/19>g2f1 -2006  2.71   168690 g2f1 e8e2 c1c3 b5b4 c3c1 e2e8 c1d2 c7b8 b3f7
 8/19 g2f1 -2006  3.43   216994 g2f1 e8e2 c1b1 d6e7 f6e5 e2e5
 9/21>g2f1 -1605  5.83   374243 g2f1 e8e2 c1b1 d6b4 f6e5
 9/21 Tg2f1  -385  6.01   382976 g2f1 e8e2 c1b1 d6b4 f6e5 c7a5 b3f7 d7f7 e5f4
nps=63670 h/p/q=29.00%/98.00%/0.00% q=80.0% bc=55% br=4.24
mp=1237/1010/-1378/-837
pawnx=263 recapx=684 qcheckx=0 checkx=9396 qfutilx=102001 onereplyx=776
mthrx=5054 futilx=0 bmx=0
- 8.91/21.28 91% 129/141 bf=2.13 h/p/q=32.79%/96.69%/0.00% 694.53 83889648
594962/5/120787 445393/233724/397472/3031392/10320574/289686/0/41859
*** Problem   Solution(s): Re8 f6+ (bm)
[D] r2q3n/ppp2pk1/3p4/5Pr1/2NP1Qp1/2P2pP1/PP3K2/4R2R w - - bm Re8 f6+
*** Problem   Solution(s): Re8 f6+ (bm)
BR ** -- BQ -- ** -- BN
BP BP BP -- ** BP BK --
-- ** -- BP -- ** -- **
** -- ** -- ** WP BR --
-- ** WN WP -- WQ BP **
** -- WP -- ** BP WP --
WP WP -- ** -- WK -- **
** -- ** -- WR -- ** WR
mv 1 stage 0, white to move, computer plays white
hash=b5655e75fb51e909
pawnhash=4cd611cd8e3d0174
Alpha=-1297 Beta=-496 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 4 d4d5 -831  0.00       71 d4d5
 2/ 6 a2a3 -901  0.01      400 a2a3
 3/10>h1h4 -500  0.04     2332 h1h4 g7f6 h4g4 g5f5
 3/10 c4e3 -294  0.05     2795 c4e3 d8f6 e3g4 f6f5 f2f3
 4/14>c4e3 106  0.12     8073 c4e3 d8f6 e3g4 f6f5 f2f3
 4/14 e1e8 2571  0.13     8754 e1e8 d8e8 f4g5 h8g6 f5g6 f7g6 g5g4
 5/14>e1e8 2971  0.17    10657 e1e8 d8e8 f4g5 h8g6 f5g6 f7g6 g5g4
 5/16 e1e8 2972  0.33    23167 e1e8 d8e8 f4g5 h8g6 f5f6 g7g8
 6/16>e1e8 3372  0.35    24548 e1e8 d8e8 f4g5 h8g6 f5f6 g7g8 h1h8 g8h8 g5h6
 6/18 e1e8 3372  0.74    56101 e1e8 d8e8 f4g5 h8g6
 7/18>e1e8 3772  0.81    60366 e1e8 d8e8 f4g5 h8g6 f5f6 g7f8 g5h6
 7/20 e1e8 4244  2.30   179635 e1e8 f7f6 e8d8 a8d8 c4e3
 8/20>e1e8 4644  2.51   193392 e1e8 f7f6 e8d8 a8d8 c4e3 g7f8 h1h8
 8/22 e1e8 5301  4.76   377567 e1e8 h8g6 e8d8 g6f4 d8a8 g7f6 g3f4
 9/25<Te1e8  4900  6.02   479232 e1e8 h8g6 e8d8 g6f4 d8a8 f4d5 a8a7 d5e3
nps=79554 h/p/q=26.00%/98.00%/0.00% q=74.0% bc=60% br=2.50
mp=1187/26843607/-902/-104416
pawnx=3316 recapx=965 qcheckx=0 checkx=17731 qfutilx=137224 onereplyx=1476
mthrx=5138 futilx=0 bmx=24
+ 8.91/21.31 91% 130/142 bf=2.13 h/p/q=32.75%/96.70%/0.00% 700.55 84368880
594147/5/120432 448709/234689/402610/3049123/10457798/291162/0/41883
*** Problem   Solution(s): Rxh6+ (bm)
[D] 5b2/pp2r1pk/2pp1pRp/4rP1N/2P1P3/1P4QP/P3q1P1/5R1K w - - bm Rxh6+
*** Problem   Solution(s): Rxh6+ (bm)
-- ** -- ** -- BB -- **
BP BP ** -- BR -- BP BK
-- ** BP BP -- BP WR BP
** -- ** -- BR WP ** WN
-- ** WP ** WP ** -- **
** WP ** -- ** -- WQ WP
WP ** -- ** BQ ** WP **
** -- ** -- ** WR ** WK
mv 1 stage 0, white to move, computer plays white
hash=cf9a021006859f00
pawnhash=4ef392fa5a8cb7a
Alpha=-145 Beta=655 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 3<h5f6 -145  0.00       61 h5f6 g7f6
 1/ 5 f1f3 -1403  0.01      155 f1f3 e5e4 g3d6 e2a2
 2/ 8>f1f3 -1002  0.01      462 f1f3 e2d1 h1h2 e5e4
 2/ 9 g6h6 -1001  0.02      694 g6h6 g7h6 h5f6 h7h8 g3g8
 3/ 9>g6h6 -600  0.02      767 g6h6 h7g8 h5f6
 3/ 9 Mg6h6  99989  0.03     1056 g6h6 h7g8 h5f6 g8f7 f1e1 g7h6
nps=35200 h/p/q=42.00%/89.00%/0.00% q=80.0% bc=59% br=1.17 mp=718/0/0/-686
pawnx=0 recapx=0 qcheckx=0 checkx=57 qfutilx=839 onereplyx=13 mthrx=5138
futilx=0 bmx=0
+ 8.87/21.22 91% 131/143 bf=2.13 h/p/q=32.81%/96.64%/0.00% 700.58 84369936
590000/5/120428 448709/234689/407748/3049180/10458637/291175/0/41883
*** Problem   Solution(s): d3 (bm)
[D] r2q1rk1/pp3ppp/2p2b2/8/B2pPPb1/7P/PPP1N1P1/R2Q1RK1 b - - bm d3
*** Problem   Solution(s): d3 (bm)
BR ** -- BQ -- BR BK **
BP BP ** -- ** BP BP BP
-- ** BP ** -- BB -- **
** -- ** -- ** -- ** --
WB ** -- BP WP WP BB **
** -- ** -- ** -- ** WP
WP WP WP ** WN ** WP **
WR -- ** WQ ** WR WK --
mv 1 stage 0, black to move, computer plays black
hash=a5cb6a5bba0f1b78
pawnhash=5514138c97444aab
Alpha=-368 Beta=432 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 6 g4e6 -4  0.00      103 g4e6
 2/ 6 g4h5 -31  0.01      306 g4h5
 3/ 8 g4e2 -61  0.02      863 g4e2 d1e2 d8e7
 4/10 g4e2 124  0.04     2517 g4e2 d1e2 d4d3 e2d3 d8b6 g1h2 b6b2
 5/14>g4e2 524  0.14     8018 g4e2 d1e2 d4d3 e2d3 d8b6 g1h2 b6b2
 5/14 d4d3 3058  0.32    20395 d4d3 h3g4 d3e2 d1e2 d8d4 e2f2 d4a4
 6/14<d4d3 2657  0.49    33149 d4d3 h3g4 d3e2 d1e2 d8d4 e2f2 d4a4 e4e5
 6/14 d4d3 2656  0.57    38977 d4d3 c2d3 g4e2 d1e2 d8d4 g1h2 d4a4 e4e5
 7/17 d4d3 2685  1.07    74295 d4d3 c2d3 g4e2 d1e2 d8d4 g1h2 d4a4 f4f5
 8/18 d4d3 2724  2.27   160145 d4d3 c2d3 g4e2 d1e2 d8d4 g1h1 d4a4 h1h2
 9/20 d4d3 2691  5.33   337796 d4d3 c2d3 g4e2 d1e2 d8d4 g1h1 d4a4 h1h2 c6c5 e4e5
10/20 Td4d3  2625  6.07   387072 d4d3 c2d3 g4e2 d1e2 d8d4 g1h2 d4a4 e4e5 f6e7
f4f5
nps=63821 h/p/q=39.00%/97.00%/0.00% q=77.0% bc=48% br=2.46
mp=1250/1812/-854/-1281
pawnx=1883 recapx=1347 qcheckx=0 checkx=4194 qfutilx=60699 onereplyx=26
mthrx=5138 futilx=0 bmx=0
+ 8.88/21.22 91% 132/144 bf=2.13 h/p/q=32.85%/96.65%/0.00% 706.65 84757008
588590/5/119943 450592/236036/412886/3053374/10519336/291201/0/41883
*** Problem   Solution(s): Re8 (bm)
[D] r1bq4/1p4kp/3p1n2/p4pB1/2pQ4/8/1P4PP/4RRK1 w - - bm Re8
*** Problem   Solution(s): Re8 (bm)
BR ** BB BQ -- ** -- **
** BP ** -- ** -- BK BP
-- ** -- BP -- BN -- **
BP -- ** -- ** BP WB --
-- ** BP WQ -- ** -- **
** -- ** -- ** -- ** --
-- WP -- ** -- ** WP WP
** -- ** -- WR WR WK --
mv 1 stage 0, white to move, computer plays white
hash=ca6c8894a1910145
pawnhash=a926593161335b26
Alpha=436 Beta=1237 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 7 d4c4 837  0.01      118 d4c4
 2/ 8<d4c4 436  0.02      583 d4c4 f6e4
 2/ 8 d4c4 60  0.03     1078 d4c4 c8d7
 3/10 d4c4 86  0.08     3888 d4c4 d8b6 f1f2 f6e4
 4/12 d4c4 159  0.21    11564 d4c4 d8b6 f1f2 b6d8
 5/14 d4c4 298  0.61    36974 d4c4 d6d5 g5f6 d8f6 c4c7 g7h8
 6/17 d4c4 563  1.82   115313 d4c4 d8b6 f1f2 f6e4 g5e3 b6c6
 7/19 f1f3 962  4.21   267526 f1f3 g7f7 d4c4 f7g7 b2b3
 8/20>f1f3 1362  4.84   306049 f1f3 g7f7 d4c4 f7g7 b2b3 d8b6 g5e3 b6e3 f3e3 g7g6
g1h1
 8/20 Tf1f3  2238  6.02   385024 f1f3 g7f7 d4c4 d6d5 g5f6 d8f6 c4d5 f7g7 f3g3
g7h6 d5d2 f5f4 g1h1
nps=63979 h/p/q=25.00%/99.00%/0.00% q=74.0% bc=62% br=2.34
mp=1522/2414/-1046/-1174
pawnx=636 recapx=1393 qcheckx=0 checkx=19507 qfutilx=66050 onereplyx=835
mthrx=5138 futilx=0 bmx=3
- 8.87/21.21 91% 132/145 bf=2.13 h/p/q=32.80%/96.66%/0.00% 712.66 85142032
587186/5/119470 451228/237429/418024/3072881/10585386/292036/0/41886
*** Problem   Solution(s): Bc8 Bd3 Bh3 (bm)
[D] 8/8/2Kp4/3P1B2/2P2k2/5p2/8/8 w - - bm Bc8 Bd3 Bh3
*** Problem   Solution(s): Bc8 Bd3 Bh3 (bm)
-- ** -- ** -- ** -- **
** -- ** -- ** -- ** --
-- ** WK BP -- ** -- **
** -- ** WP ** WB ** --
-- ** WP ** -- BK -- **
** -- ** -- ** BP ** --
-- ** -- ** -- ** -- **
** -- ** -- ** -- ** --
mv 1 stage 0, white to move, computer plays white
hash=f9e8030db311517e
pawnhash=f9c712718ae851db
Alpha=4730 Beta=5531 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 2<c6d6 4730  0.00       20 c6d6
 1/ 2 c6d6 4730  0.00       22 c6d6
 2/ 3<c6d6 4329  0.01       52 c6d6 f4f5
 2/ 5 c6d6 4329  0.01       89 c6d6 f4f5
 3/ 5>f5d3 4729  0.01      205 f5d3 f4e3 c6d6
 3/ 5 f5e6 4729  0.01      290 f5e6 f4e5
 4/ 7>f5e6 5207  0.01      602 f5e6 f4e5
 4/ 7 f5c8 5207  0.02      684 f5c8 f4e5
 5/ 8<f5c8 4806  0.02     1141 f5c8 f4e5
 5/ 8 f5d3 4193  0.04     2366 f5d3 f4e5 d3f1 f3f2
 6/ 9 f5h3 4361  0.06     5113 f5h3 f4e5 c4c5 d6c5 c6c5 f3f2
 7/10 f5h3 4697  0.08     7497 f5h3 f4e5 c4c5 d6c5 c6c5 f3f2 h3g2
 8/13 f5h3 4622  0.12    12132 f5h3 f4e5 c4c5 d6c5 c6c5 e5e4 d5d6 e4e3 mtmt
 9/18 f5h3 5021  0.36    44700 f5h3 f4g3 h3f1 g3f2 f1d3 f2g2 c6d6
10/20 f5h3 5021  0.56    71342 f5h3 f4g3 h3f1 g3f2 f1h3 f2g3 h3f1 g3f2 f1h3 f2g3
h3f1 g3f2 f1h3 f2g3
11/22 f5h3 4621  1.31   162540 f5h3 f4g3 h3f5 f3f2 f5d3 g3g2 c6d6 g2g3 c4c5
f2f1Q
12/22 f5h3 4621  4.05   497477 f5h3 f4g3 h3f5 g3f4 f5h3 f4g3 h3f5 g3f4 f5h3 f4g3
h3f5 g3f4
13/26 Tf5h3  4621  6.01   753683 f5h3 f4g3 h3f5 g3f4 f5h3 f4g3 h3f5 g3f4 f5h3
f4g3 h3f5 g3f4
nps=125342 h/p/q=35.00%/99.00%/0.00% q=74.0% bc=49% br=1.88
mp=3057/1753/-836/-1123
pawnx=14404 recapx=781 qcheckx=0 checkx=31243 qfutilx=31160 onereplyx=304
mthrx=5138 futilx=0 bmx=910
+ 8.90/21.24 91% 133/146 bf=2.13 h/p/q=32.82%/96.68%/0.00% 718.68 85895712
588327/5/119519 465632/238210/423162/3104124/10616546/292340/0/42796
*** Problem   Solution(s): Nxg4 (bm)
[D] r2r2k1/ppqbppbp/2n2np1/2pp4/6P1/1P1PPNNP/PBP2PB1/R2QK2R b KQ - bm Nxg4
*** Problem   Solution(s): Nxg4 (bm)
BR ** -- BR -- ** BK **
BP BP BQ BB BP BP BB BP
-- ** BN ** -- BN BP **
** -- BP BP ** -- ** --
-- ** -- ** -- ** WP **
** WP ** WP WP WN WN WP
WP WB WP ** -- WP WB **
WR -- ** WQ WK -- ** WR
mv 1 stage 0, black to move, computer plays black
hash=7f55928df619eef9
pawnhash=ef2a695c896b645e
Alpha=-360 Beta=440 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 3>f6g4 440  0.00        4 f6g4
 1/ 3 f6g4 1171  0.01       56 f6g4 h3g4 g7b2
 2/10<f6g4 770  0.01      164 f6g4 h3g4 g7b2
 2/10 e7e5 274  0.01      368 e7e5
 3/10 c7a5 167  0.04     1488 c7a5 e1f1 e7e6
 4/12 h7h5 38  0.15     5710 h7h5 g4g5
 5/18>h7h5 438  0.55    19172 h7h5 g4h5 f6h5 g3h5 g7b2 a1b1
 5/18 f6g4 1132  0.74    28185 f6g4 h3g4 g7b2 a1b1 b2e5
 6/18>f6g4 1532  0.85    33011 f6g4 h3g4 g7b2 a1b1 b2e5 f3e5
 6/20 f6g4 1542  1.10    45664 f6g4 h3g4 g7b2 a1b1 b2c3 f3d2 c3d2 e1d2 c7a5 d2c1
a5a2 g2d5
 7/20 f6g4 1542  1.82    81670 f6g4 h3g4 g7b2 a1b1 b2c3 f3d2 c3d2 e1d2 c7a5 d2c1
a5a2 g2d5
 8/20>f6g4 1942  2.56   116450 f6g4 h3g4 g7b2 a1b1 b2c3 f3d2 c3d2 e1d2 c7a5 d2c1
a5a2 g2d5
 8/20 f6g4 2028  3.89   183673 f6g4 h3g4 g7b2 a1b1 c7a5 e1f1 a5a2 f3g5 d7g4
 9/24 Tf6g4  2264  6.03   283653 f6g4 h3g4 g7b2 a1b1 b2c3 f3d2 c3d2 e1d2 c7a5
d2c1 a5a2 c1d2
nps=47079 h/p/q=50.00%/97.00%/0.00% q=80.0% bc=53% br=2.34
mp=769/2164/-1457/-1225
pawnx=242 recapx=654 qcheckx=0 checkx=2642 qfutilx=55423 onereplyx=52 mthrx=5138
futilx=0 bmx=0
+ 8.90/21.26 91% 134/147 bf=2.13 h/p/q=32.93%/96.68%/0.00% 724.70 86179368
586254/5/118917 465874/238864/428300/3106766/10671969/292392/0/42796
*** Problem   Solution(s): Rxg7 (bm)
[D] 2r1k3/6pr/p1nBP3/1p3p1p/2q5/2P5/P1R4P/K2Q2R1 w - - bm Rxg7
*** Problem   Solution(s): Rxg7 (bm)
-- ** BR ** BK ** -- **
** -- ** -- ** -- BP BR
BP ** BN WB WP ** -- **
** BP ** -- ** BP ** BP
-- ** BQ ** -- ** -- **
** -- WP -- ** -- ** --
WP ** WR ** -- ** -- WP
WK -- ** WQ ** -- WR --
mv 1 stage 0, white to move, computer plays white
hash=e9f5b5e22f28d4e
pawnhash=6aec79034d196445
Alpha=-1197 Beta=-396 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 3>g1g7 -396  0.00       13 g1g7
 1/ 3 d1e2 262  0.00       81 d1e2
 2/ 5 g1e1 261  0.01      214 g1e1
 3/ 8<g1e1 -139  0.02      546 g1e1 c4c3 c2c3
 3/ 8 c2e2 -1168  0.03     1193 c2e2 c4c3 e2b2
 4/10>c2e2 -767  0.05     2183 c2e2 c4c3 e2b2 c6d4 g1g3
 4/10 g1g7 1565  0.08     3604 g1g7 h7h8 d1e1
 5/10>g1g7 1965  0.11     5464 g1g7 h7g7 d1h5 g7f7 h5f7
 5/12 g1g7 6387  0.19    10006 g1g7 c4e6 g7h7 c6d8
 6/15 g1g7 6786  0.37    21886 g1g7 c4e6 g7h7 e6g6 d1h5
 7/17 g1g7 7185  0.94    58200 g1g7 c4e6 g7h7 e8d8 d6c7 d8e8 d1h5 e8f8 c7a5
 8/21>g1g7 7585  2.36   143053 g1g7 c4e6 g7h7 e8d8 d6c7 d8e8 d1h5 e8f8 c7a5 c6a5
h5f5 e6f5
 8/22 Tg1g7  9331  6.03   364561 g1g7 c4e6 g7h7 b5b4 d1h5 e8d8 h5h4 d8e8 d6b4
nps=60458 h/p/q=18.00%/99.00%/0.00% q=76.0% bc=63% br=2.90
mp=2750/1141/-1704565114/-1375
pawnx=2210 recapx=846 qcheckx=0 checkx=26551 qfutilx=27859 onereplyx=2493
mthrx=5138 futilx=0 bmx=78
+ 8.89/21.26 91% 135/148 bf=2.13 h/p/q=32.83%/96.70%/0.00% 730.73 86543928
584756/5/118435 468084/239710/433438/3133317/10699828/294885/0/42874
*** Problem   Solution(s): Bxg2 (bm)
[D] 6k1/6p1/2p4p/4Pp2/4b1qP/2Br4/1P2RQPK/8 b - - bm Bxg2
*** Problem   Solution(s): Bxg2 (bm)
-- ** -- ** -- ** BK **
** -- ** -- ** -- BP --
-- ** BP ** -- ** -- BP
** -- ** -- WP BP ** --
-- ** -- ** BB ** BQ WP
** -- WB BR ** -- ** --
-- WP -- ** WR WQ WP WK
** -- ** -- ** -- ** --
mv 1 stage 0, black to move, computer plays black
hash=a19c3fa1b38409e9
pawnhash=7caa348e87579613
Alpha=-534 Beta=266 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 5 c6c5 -63  0.00       85 c6c5
 2/ 7 h6h5 -136  0.01      401 h6h5
 3/ 9 g7g5 103  0.03     1586 g7g5 g2g3 g5h4 g3h4
 4/11>g7g5 503  0.07     3943 g7g5 c3d2 g8h7
 4/11 e4g2 1915  0.12     6965 e4g2 e2e3 g2e4 e3d3 e4d3
 5/11 e4g2 2280  0.18    11335 e4g2 e2e3 d3e3 f2e3 f5f4
 6/12<e4g2 1879  0.28    19558 e4g2 e2e3 d3e3 f2e3 f5f4 h2g1 f4e3
 6/13 e4g2 1692  0.42    30358 e4g2 e2e3 d3e3 f2e3 f5f4 e3f2
 7/21>e4g2 2092  0.56    40250 e4g2 e2e3 d3e3 f2e3 f5f4 e3f2 g4h4 f2h4 g7g5
 7/21 e4g2 2092  0.76    56262 e4g2 e2e3 d3e3 f2e3 f5f4 e3f2 g4h4 f2h4 g7g5
 8/22>e4g2 2492  1.11    80476 e4g2 e2e3 d3e3 f2e3 f5f4 e3f4 g4f4 h2g2 g7g5
 8/22 e4g2 2566  1.80   131123 e4g2 e2e3 d3e3 f2e3 f5f4 e3e1 g4h3 h2g1 h3h1 g1f2
h1h4 f2e2 h4e1 c3e1
 9/23 e4g2 2166  4.46   293469 e4g2 e2e3 d3e3 f2e3 g2f3 e3f3 g4f3 h2g1 mtmt
10/25 Te4g2  2062  6.00   398336 e4g2 e2e3 d3e3 f2e3 f5f4 e3e1 g7g5 h4g5 h6g5
mtmt
nps=66389 h/p/q=33.00%/99.00%/0.00% q=67.0% bc=53% br=2.19
mp=1350/26843596/-1288/-26738600
pawnx=3073 recapx=1849 qcheckx=0 checkx=21446 qfutilx=46394 onereplyx=1892
mthrx=5142 futilx=0 bmx=61
+ 8.90/21.29 91% 136/149 bf=2.13 h/p/q=32.83%/96.71%/0.00% 736.73 86942264
583505/5/118011 471157/241559/438580/3154763/10746222/296777/0/42935
*** Problem   Solution(s): Ba3 Be5 Bf8 e3 (bm)
[D] r3r1k1/5p2/pQ1b2pB/1p6/4p3/6P1/Pq2BP1P/2R3K1 b - - bm Ba3 Be5 Bf8 e3
*** Problem   Solution(s): Ba3 Be5 Bf8 e3 (bm)
BR ** -- ** BR ** BK **
** -- ** -- ** BP ** --
BP WQ -- BB -- ** BP WB
** BP ** -- ** -- ** --
-- ** -- ** BP ** -- **
** -- ** -- ** -- WP --
WP BQ -- ** WB WP -- WP
** -- WR -- ** -- WK --
mv 1 stage 0, black to move, computer plays black
hash=7002f02a46d087e0
pawnhash=102070c852ca7822
Alpha=6214 Beta=7015 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 3 b2e2 6615  0.00       49 b2e2 b6d6 e2a2
 2/ 6 b2e2 6615  0.01      186 b2e2 b6d6 e2a2
 3/ 7 b2e2 6615  0.03      816 b2e2 b6d6 e2a2
 4/11 d6f8 7013  0.10     3701 d6f8 b6e3 b2a2
 5/12<d6f8 6612  0.22     9432 d6f8 b6e3 b2a2 h6f8 e8f8 e3e4
 5/12 d6f8 6611  0.36    15838 d6f8 e2c4 b2a2 c4a2 f8h6
 6/14<d6f8 6210  0.78    35365 d6f8 e2c4 b2a2 c4a2 f8h6 a2f7
 6/15 d6f8 6172  1.34    61493 d6f8 e2c4 f8g7 b6g6
 7/18 d6a3 6286  2.92   130922 d6a3 b6e3 b2a2 c1c7 a8d8
 8/18<Td6a3  5885  6.01   279552 d6a3 b6e3 b2a2 c1c7 a8d8 h2h3 a2a1
nps=46514 h/p/q=29.00%/98.00%/0.00% q=77.0% bc=62% br=2.57
mp=1602/2458/-1315/-1356
pawnx=2675 recapx=381 qcheckx=0 checkx=6500 qfutilx=64802 onereplyx=460
mthrx=5142 futilx=0 bmx=0
+ 8.89/21.27 91% 137/150 bf=2.14 h/p/q=32.81%/96.72%/0.00% 742.74 87221816
581479/5/117432 473832/241940/443722/3161263/10811024/297237/0/42935
*** Problem   Solution(s): Nc3 (bm)
[D] 8/3b2kp/4p1p1/pr1n4/N1N4P/1P4P1/1K3P2/3R4 w - - bm Nc3
*** Problem   Solution(s): Nc3 (bm)
-- ** -- ** -- ** -- **
** -- ** BB ** -- BK BP
-- ** -- ** BP ** BP **
BP BR ** BN ** -- ** --
WN ** WN ** -- ** -- WP
** WP ** -- ** -- WP --
-- WK -- ** -- WP -- **
** -- ** WR ** -- ** --
mv 1 stage 0, white to move, computer plays white
hash=d3f339667700f1d8
pawnhash=b5c51622d76f6f4f
Alpha=-606 Beta=194 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 3 f2f4 96  0.00       41 f2f4
 2/ 5 f2f3 63  0.01      101 f2f3
 3/ 7 a4c3 -157  0.02      594 a4c3 b5c5
 4/ 9 a4c3 145  0.04     1558 a4c3 b5c5 f2f4
 5/11 a4c3 -98  0.08     3741 a4c3 b5c5 c3e4 c5b5
 6/12>a4c3 302  0.18     7441 a4c3 b5c5 c3e4 c5b5 f2f4
 6/12 a4c3 303  0.28    12571 a4c3 b5c5 d1a1 d5c3 b2c3 g7f6
 7/12 a4c3 204  0.48    25091 a4c3 b5c5 c3e4 c5b5 f2f4
 8/13 a4c3 564  0.92    49617 a4c3 b5c5 c3e4 c5c8 c4a5 d7b5
 9/16 a4c3 744  2.11   118302 a4c3 b5c5 c3e4 c5c7 c4a5 d7b5 d1c1
10/25 a4c3 790  4.62   276762 a4c3 b5c5 c3e4 c5c8 c4a5 d7b5 d1c1
11/25 Ta4c3  812  6.01   361472 a4c3 b5c5 c3e4 c5c7 c4a5 c7c8 d1c1 c8a8
nps=60165 h/p/q=35.00%/99.00%/0.00% q=71.0% bc=51% br=2.08
mp=946/1105/-1445/-1178
pawnx=723 recapx=1177 qcheckx=0 checkx=7830 qfutilx=34508 onereplyx=108
mthrx=5142 futilx=0 bmx=48
+ 8.91/21.29 91% 138/151 bf=2.14 h/p/q=32.82%/96.74%/0.00% 748.75 87583288
580022/5/116973 474555/243117/448864/3169093/10845532/297345/0/42983
*** Problem   Solution(s): Ne4 (bm)
[D] 1br2rk1/1pqb1ppp/p3pn2/8/1P6/P1N1PN1P/1B3PP1/1QRR2K1 w - - bm Ne4
*** Problem   Solution(s): Ne4 (bm)
-- BB BR ** -- BR BK **
** BP BQ BB ** BP BP BP
BP ** -- ** BP BN -- **
** -- ** -- ** -- ** --
-- WP -- ** -- ** -- **
WP -- WN -- WP WN ** WP
-- WB -- ** -- WP WP **
** WQ WR WR ** -- WK --
mv 1 stage 0, white to move, computer plays white
hash=5d7a5f79167f56fc
pawnhash=1dd8f3b0fd282925
Alpha=-134 Beta=666 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 4 f3g5 434  0.01       73 f3g5
 2/ 6 c3e4 409  0.01      234 c3e4
 3/ 8>c3e4 809  0.02      482 c3e4 f6e4 c1c7
 3/ 9 c3e4 2222  0.05     1456 c3e4 d7c6 e4f6 g7f6 b2f6
 4/12 c3e4 2228  0.10     3458 c3e4 c7d8 e4f6 g7f6 c1c8 d8c8 b2f6
 5/14>c3e4 2628  0.19     7199 c3e4 c7d8 e4f6 g7f6 c1c8 d8c8 b2f6
 5/14 c3e4 3236  0.37    12567 c3e4 d7c6 b2f6 g7f6 e4f6 g8g7 f6h7
 6/15 c3e4 3198  0.67    25654 c3e4 d7c6 b2f6 g7f6 e4f6 g8g7 f6h7 f8h8
 7/17<c3e4 2797  1.13    47314 c3e4 d7c6 b2f6 g7f6 e4f6 g8g7 f6h7 f8g8
 7/17 c3e4 2796  1.67    74460 c3e4 d7c6 b2f6 c6e4 b1e4 c7c1 d1c1 c8c1
 8/18<c3e4 2395  2.89   135373 c3e4 d7c6 b2f6 c6e4 b1e4 c7c1 d1c1 c8c1
 8/18 c3e4 1759  4.40   272262 c3e4 d7c6 e4f6 g7f6 b2f6 b8a7 f3e5 h7h5
 9/20 Tc3e4  2156  6.00   440320 c3e4 d7c6 e4f6 g7f6 b2f6 h7h6 f3e5 c6g2 c1c7
b8c7
nps=73362 h/p/q=41.00%/98.00%/0.00% q=77.0% bc=54% br=2.41
mp=1572/776/-1048/-1313
pawnx=169 recapx=1661 qcheckx=0 checkx=6261 qfutilx=83901 onereplyx=1070
mthrx=5146 futilx=0 bmx=0
+ 8.91/21.28 91% 139/152 bf=2.14 h/p/q=32.88%/96.74%/0.00% 754.75 88023608
579103/5/116626 474724/244778/454010/3175354/10929433/298415/0/42983
*** Problem   Solution(s): Nxd4 (bm)
[D] 2r3k1/q4ppp/p3p3/pnNp4/2rP4/2P2P2/4R1PP/2R1Q1K1 b - - bm Nxd4
*** Problem   Solution(s): Nxd4 (bm)
-- ** BR ** -- ** BK **
BQ -- ** -- ** BP BP BP
BP ** -- ** BP ** -- **
BP BN WN BP ** -- ** --
-- ** BR WP -- ** -- **
** -- WP -- ** WP ** --
-- ** -- ** WR ** WP WP
** -- WR -- WQ -- WK --
mv 1 stage 0, black to move, computer plays black
hash=33d0fa04e160b4d8
pawnhash=2353c8b217086685
Alpha=2181 Beta=2982 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 4>c8c5 2982  0.00       33 c8c5 d4c5 a7c5
 1/ 4 c8b8 3586  0.00      103 c8b8
 2/ 4 a7b6 3581  0.01      200 a7b6
 3/ 6<a7b6 3180  0.01      686 a7b6 c5e6 f7e6
 3/ 7 a5a4 2854  0.02     1395 a5a4 f3f4
 4/11 g7g5 2654  0.05     4277 g7g5 g2g3
 5/15>c8c5 3054  0.13    11921 c8c5 d4c5 a7c5 e2e3 a5a4 g2g4
 5/15 b5d4 4855  0.18    16447 b5d4 c3d4 c8c5 c1d1
 6/15 b5d4 5217  0.25    24433 b5d4 c3d4 c8c5 c1a1 c4d4 a1a5 c5a5 e1a5
 7/16 b5d4 5216  0.49    47962 b5d4 c3d4 c8c5 c1c4 a5a4 d4c5 d5c4
 8/16 b5d4 4915  0.87    89365 b5d4 c3d4 c8c5 c1d1 c5c8 e1h4
 9/20 b5d4 5187  1.82   194912 b5d4 c3d4 c8c5 c1c4 c5c4 e1a5 a7d4 g1h1 c4c1 e2e1
c1e1 a5e1 d4f4
10/23 b5d4 5334  4.06   444282 b5d4 c3d4 c8c5 c1c4 c5c4 e1a5 a7d4 g1f1 h7h6 a5a3
d4f4
11/25 Tb5d4  5186  6.01   666648 b5d4 c3d4 c8c5 c1d1 c4d4 d1d4 c5c4 e2f2 a7d4
e1a5 c4c1
nps=110831 h/p/q=38.00%/98.00%/0.00% q=75.0% bc=49% br=2.44
mp=1038/26843596/-1370/-1112
pawnx=399 recapx=2081 qcheckx=0 checkx=12406 qfutilx=129330 onereplyx=1376
mthrx=5151 futilx=0 bmx=99
+ 8.92/21.31 91% 140/153 bf=2.14 h/p/q=32.91%/96.75%/0.00% 760.77 88690256
579675/5/116580 475123/246859/459161/3187760/11058763/299791/0/43082
*** Problem   Solution(s): Qxf7+ (bm)
[D] r1b2rk1/2p2ppp/p7/1p6/3P3q/1BP3bP/PP3QP1/RNB1R1K1 w - - bm Qxf7+
*** Problem   Solution(s): Qxf7+ (bm)
BR ** BB ** -- BR BK **
** -- BP -- ** BP BP BP
BP ** -- ** -- ** -- **
** BP ** -- ** -- ** --
-- ** -- WP -- ** -- BQ
** WB WP -- ** -- BB WP
WP WP -- ** -- WQ WP **
WR WN WB -- WR -- WK --
mv 1 stage 0, white to move, computer plays white
hash=4ff08c9d39c51278
pawnhash=ba7e7d04ce570311
Alpha=3650 Beta=4451 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 3 f2f3 3659  0.00       79 f2f3
 2/ 7>f2f3 4059  0.01      162 f2f3 g3e1
 2/ 7 Mf2f7  99993  0.01      444 f2f7 f8f7 e1e8
nps=44400 h/p/q=54.00%/95.00%/0.00% q=88.0% bc=41% br=1.17 mp=0/589/0/-214
pawnx=0 recapx=0 qcheckx=0 checkx=15 qfutilx=191 onereplyx=3 mthrx=5151 futilx=0
bmx=0
+ 8.88/21.21 91% 141/154 bf=2.13 h/p/q=33.05%/96.74%/0.00% 760.78 88690704
575914/5/116579 475123/246859/464312/3187775/11058954/299794/0/43082
*** Problem   Solution(s): d6 (bm)
[D] 5bk1/1rQ4p/5pp1/2pP4/3n1PP1/7P/1q3BB1/4R1K1 w - - bm d6
*** Problem   Solution(s): d6 (bm)
-- ** -- ** -- BB BK **
** BR WQ -- ** -- ** BP
-- ** -- ** -- BP BP **
** -- BP WP ** -- ** --
-- ** -- BN -- WP WP **
** -- ** -- ** -- ** WP
-- BQ -- ** -- WB WB **
** -- ** -- WR -- WK --
mv 1 stage 0, white to move, computer plays white
hash=5ca11f4df74366aa
pawnhash=d0a00df1b7b87f40
Alpha=173 Beta=974 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 3 f2d4 235  0.00       99 f2d4 c5d4
 2/ 5 c7d8 173  0.01      415 c7d8
 3/ 8 c7c8 211  0.02     1420 c7c8 b2b3
 4/12 c7c8 313  0.06     5868 c7c8 b7b8 c8a6
 5/12 c7c8 289  0.16    15817 c7c8 b2b4 d5d6 b7a7
 6/16 c7c8 249  0.41    43191 c7c8 b7b5 c8c7 d4e2 g1h2
 7/16 c7c8 296  0.99   105964 c7c8 b7b6 c8c7 b6b7 c7c8 b7b6 c8c7 b6b7 c7c8 b7b6
c8c7 b6b7
 8/19>c7c8 696  2.52   275473 c7c8 b7b6 c8c7 b6b7 c7c8 b7b6 c8c7 b6b7 c7c8 b7b6
c8c7 b6b7
 8/19 d5d6 697  3.32   359539 d5d6 b7c7 d6c7 d4e2 e1e2 b2a1 g1h2 a1a6 f2c5
 9/21>Td5d6  1097  6.00   648192 d5d6 b7c7 d6c7 d4e2 e1e2 b2a1 g1h2 a1a6 f2c5
a6e2 c7c8Q
nps=107996 h/p/q=34.00%/99.00%/0.00% q=78.0% bc=56% br=2.35
mp=3189/1826/-1270/-1274
pawnx=5085 recapx=1534 qcheckx=0 checkx=18898 qfutilx=75781 onereplyx=1234
mthrx=5151 futilx=0 bmx=8
+ 8.88/21.21 91% 142/155 bf=2.14 h/p/q=33.05%/96.75%/0.00% 766.78 89338896
576380/5/116512 480208/248393/469463/3206673/11134735/301028/0/43090
*** Problem   Solution(s): Qxh6+ (bm)
[D] r1b1qN1k/1pp3p1/p2p3n/4p1B1/8/1BP4Q/PP3KPP/8 w - - bm Qxh6+
*** Problem   Solution(s): Qxh6+ (bm)
BR ** BB ** BQ WN -- BK
** BP BP -- ** -- BP --
BP ** -- BP -- ** -- BN
** -- ** -- BP -- WB --
-- ** -- ** -- ** -- **
** WB WP -- ** -- ** WQ
WP WP -- ** -- WK WP WP
** -- ** -- ** -- ** --
mv 1 stage 0, white to move, computer plays white
hash=59cc4b6a3f06d903
pawnhash=71af1da36d0a53a
Alpha=-4452 Beta=-3651 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 4>Mh3h6  99993  0.00       17 h3h6 g7h6 g5f6
nps=17000 h/p/q=0.00%/100.00%/0.00% q=64.0% bc=56% br=0.00 mp=0/24/0/-615
pawnx=0 recapx=0 qcheckx=0 checkx=3 qfutilx=2 onereplyx=1 mthrx=5151 futilx=0
bmx=0
+ 8.83/21.10 91% 143/156 bf=2.14 h/p/q=32.84%/96.78%/0.00% 766.78 89338912
572685/5/116512 480208/248393/474614/3206676/11134737/301029/0/43090
*** Problem   Solution(s): Ne7+ (bm)
[D] 5rk1/p4ppp/2p1b3/3Nq3/4P1n1/1p1B2QP/1PPr2P1/1K2R2R w - - bm Ne7+
*** Problem   Solution(s): Ne7+ (bm)
-- ** -- ** -- BR BK **
BP -- ** -- ** BP BP BP
-- ** BP ** BB ** -- **
** -- ** WN BQ -- ** --
-- ** -- ** WP ** BN **
** BP ** WB ** -- WQ WP
-- WP WP BR -- ** WP **
** WK ** -- WR -- ** WR
mv 1 stage 0, white to move, computer plays white
hash=302e41ad63002575
pawnhash=fc137e5ac2e36ffd
Alpha=-1981 Beta=-1180 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 9 d5f4 -1699  0.01      465 d5f4 b3c2 d3c2
 2/11 d5e7 -1724  0.03     2023 d5e7 g8h8 g3h4 b3c2 d3c2
 3/12 d5e7 -1628  0.06     5028 d5e7 g8h8 g3h4 b3c2 d3c2 g7g5
 4/15 d5e7 -1679  0.23    18605 d5e7 g8h8 g3f3 b3c2 d3c2 g4h2 f3a3
 5/19>d5e7 -1278  0.56    50968 d5e7 g8h8 g3f3 b3c2 d3c2 e5c5 f3c3
 5/19 h3g4 -1101  0.91    83521 h3g4 b3c2 d3c2 d2d5 g3f2 d5d8
 6/20>h3g4 -700  1.70   164588 h3g4 b3c2 d3c2 d2d5 g3h4 d5d2
 6/20 d5e7 957  2.17   209196 d5e7 g8h8 h3g4 b3c2 d3c2 e6a2 b1a2 e5g3 h1h7 h8h7
e1h1 g3h4 h1h4
 7/22>d5e7 1357  2.55   248375 d5e7 g8h8 h3g4 b3c2 d3c2 e6a2 b1a2 d2c2 g3e5 c2g2
mtmt
 7/22 h3g4 2561  4.39   442746 h3g4 e5g5 g3e3 g5e3 d5e7 g8h8 e1e3 e6g4 e7c6 d2g2
c6a7
 8/22<Th3g4  2160  6.01   606208 h3g4 e5g5 g3e3 g5e3 d5e7 g8h8 e1e3 e6g4
nps=100850 h/p/q=41.00%/98.00%/0.00% q=77.0% bc=58% br=2.28
mp=2140/2186/-2040/-1611
pawnx=3030 recapx=2633 qcheckx=0 checkx=16498 qfutilx=80886 onereplyx=3032
mthrx=5151 futilx=0 bmx=102
- 8.82/21.11 91% 143/157 bf=2.14 h/p/q=32.89%/96.78%/0.00% 772.79 89945120
572899/5/116390 483238/251026/479765/3223174/11215623/304061/0/43192
*** Problem   Solution(s): Rxg7+ (bm)
[D] 5rk1/n1p1R1bp/p2p4/1qpP1QB1/7P/2P3P1/PP3P2/6K1 w - - bm Rxg7+
*** Problem   Solution(s): Rxg7+ (bm)
-- ** -- ** -- BR BK **
BN -- BP -- WR -- BB BP
BP ** -- BP -- ** -- **
** BQ BP WP ** WQ WB --
-- ** -- ** -- ** -- WP
** -- WP -- ** -- WP --
WP WP -- ** -- WP -- **
** -- ** -- ** -- WK --
mv 1 stage 0, white to move, computer plays white
hash=5c8981f2c7072e18
pawnhash=1b608dc32d5be398
Alpha=-642 Beta=158 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 6>e7c7 158  0.00       76 e7c7
 1/ 6 f5e6 536  0.00      155 f5e6 g8h8 e7c7
 2/ 6 f5e6 536  0.01      466 f5e6 g8h8 e7c7
 3/ 8>f5e6 936  0.01      965 f5e6 g8h8 e7c7 b5b2
 3/ 8 Me7g7  99984  0.02     1289 e7g7 g8g7 g5h6 g7g8 f5f8
nps=75824 h/p/q=37.00%/91.00%/0.00% q=79.0% bc=66% br=1.53 mp=313/109/0/0
pawnx=1 recapx=0 qcheckx=0 checkx=77 qfutilx=261 onereplyx=5 mthrx=5151 futilx=0
bmx=0
+ 8.78/21.03 91% 144/158 bf=2.13 h/p/q=32.92%/96.75%/0.00% 772.81 89946408
569281/5/116389 483239/251026/484916/3223251/11215884/304066/0/43192
*** Problem   Solution(s): Ne6+ (bm)
[D] r1b2r2/5P1p/ppn3pk/2p1p1Nq/1bP1PQ2/3P4/PB4BP/1R3RK1 w - - bm Ne6+
*** Problem   Solution(s): Ne6+ (bm)
BR ** BB ** -- BR -- **
** -- ** -- ** WP ** BP
BP BP BN ** -- ** BP BK
** -- BP -- BP -- WN BQ
-- BB WP ** WP WQ -- **
** -- ** WP ** -- ** --
WP WB -- ** -- ** WB WP
** WR ** -- ** WR WK --
mv 1 stage 0, white to move, computer plays white
hash=bb529bfa40906cb5
pawnhash=5a1dd2153f371b0f
Alpha=606 Beta=1407 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 5 f4f6 1254  0.00      114 f4f6 h5g5 f6c6
 2/12>f4f6 1654  0.01      381 f4f6 h5g5 f6c6
 2/12 g5e6 7815  0.01      619 g5e6 g6g5 f4f6 h5g6 e6f8
 3/12>g5e6 8215  0.01      710 g5e6 g6g5 f4f6 h5g6 e6f8 g6f6
 3/12 g5e6 8215  0.02     1369 g5e6 g6g5 f4f6 h5g6 e6f8 g6f6
 4/12>g5e6 8615  0.02     1468 g5e6 g6g5 f4f6 h5g6 e6f8 g6f6 f1f6 h6g7
 4/12 g5e6 8615  0.04     3002 g5e6 g6g5 f4f6 h5g6 e6f8 g6f6 f1f6 h6g7
 5/12>g5e6 9015  0.04     3212 g5e6 g6g5 f4f6 h5g6 e6f8 g6f6 f1f6 h6g7 f6c6
 5/13 g5e6 9015  0.07     5964 g5e6 g6g5 f4f6 h5g6 e6f8 g6f6 f1f6 h6g7 f6c6
 6/13>g5e6 9415  0.08     6941 g5e6 g6g5 f4f6 h5g6 e6f8 g6f6 f1f6 h6g7 f6c6 g7f8
 6/16 g5e6 9415  0.20    18662 g5e6 g6g5 f4f6 h5g6 e6f8 g6f6 f1f6 h6g7 f6c6 g7f8
 7/16>g5e6 9815  0.21    20167 g5e6 g6g5 f4f6 h5g6 e6f8 g6f6 f1f6 h6g7 f6c6 g7f8
b2e5
 7/19 g5e6 12089  0.64    62747 g5e6 g6g5 f4f6 h5g6 e6f8 g6f6 f1f6 h6g7 f6c6
g7f8 b2e5
 8/23<g5e6 11688  1.65   172426 g5e6 g6g5 f4f6 h5g6 e6f8 g6f6 f1f6 h6g7 f8h7
c8b7 b2e5 c6e5
 8/23 g5e6 10599  2.23   235290 g5e6 g6g5 f4f6 h5g6 e6f8 g6f6 f1f6 h6g7 f8h7
 9/26 g5e6 10996  4.85   521857 g5e6 g6g5 f4f6 h5g6 e6f8 g6f6 f1f6 h6g7 f8h7
c8g4 f6c6
10/26<Tg5e6  10595  6.00   646144 g5e6 g6g5 f4f6 h5g6 e6f8 g6f6 f1f6 h6g7 f8h7
c8g4 b1c1
nps=107673 h/p/q=38.00%/99.00%/0.00% q=74.0% bc=51% br=2.27
mp=2422/1003/-1095/-1398
pawnx=131 recapx=1675 qcheckx=0 checkx=19156 qfutilx=115681 onereplyx=2069
mthrx=5163 futilx=0 bmx=0
+ 8.79/21.06 91% 145/159 bf=2.13 h/p/q=32.95%/96.76%/0.00% 778.81 90592552
569764/5/116322 483370/252701/490079/3242407/11331565/306135/0/43192
*** Problem   Solution(s): Qxd7+ (bm)
[D] qn1kr2r/1pRbb3/pP5p/P2pP1pP/3N1pQ1/3B4/3B1PP1/R5K1 w - - bm Qxd7+
*** Problem   Solution(s): Qxd7+ (bm)
BQ BN -- BK BR ** -- BR
** BP WR BB BB -- ** --
BP WP -- ** -- ** -- BP
WP -- ** BP WP -- BP WP
-- ** -- WN -- BP WQ **
** -- ** WB ** -- ** --
-- ** -- WB -- WP WP **
WR -- ** -- ** -- WK --
mv 1 stage 0, white to move, computer plays white
hash=fcead64236a851ae
pawnhash=35a7f4c370231ff3
Alpha=1486 Beta=2287 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 4>Mg4d7  99993  0.00       23 g4d7 b8d7 d4e6
nps=7667 h/p/q=0.00%/68.00%/0.00% q=69.0% bc=51% br=0.00 mp=0/521/0/-730
pawnx=0 recapx=0 qcheckx=0 checkx=4 qfutilx=14 onereplyx=1 mthrx=5163 futilx=0
bmx=0
+ 8.74/20.95 91% 146/160 bf=2.13 h/p/q=32.74%/96.58%/0.00% 778.81 90592576
566204/5/116321 483370/252701/495242/3242411/11331579/306136/0/43192
*** Problem   Solution(s): Qxd8+ (bm)
[D] 3r3k/3r1P1p/pp1Nn3/2pp4/7Q/6R1/Pq4PP/5RK1 w - - bm Qxd8+
*** Problem   Solution(s): Qxd8+ (bm)
-- ** -- BR -- ** -- BK
** -- ** BR ** WP ** BP
BP BP -- WN BN ** -- **
** -- BP BP ** -- ** --
-- ** -- ** -- ** -- WQ
** -- ** -- ** -- WR --
WP BQ -- ** -- ** WP WP
** -- ** -- ** WR WK --
mv 1 stage 0, white to move, computer plays white
hash=86c3658b49b39990
pawnhash=eac0f3a6cf2af1cb
Alpha=-1614 Beta=-813 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 4>h4d8 -813  0.00      144 h4d8 e6d8
 1/ 5 f1f2 -60  0.01      474 f1f2
 2/ 9>f1f2 340  0.02     1477 f1f2 d7d6
 2/10 g3g8 341  0.02     1722 g3g8 d8g8 f7g8Q h8g8 h4g4
 3/10>g3g8 741  0.03     1783 g3g8 d8g8 f7g8Q h8g8 h4g4
 3/10 Mh4d8  99974  0.04     2918 h4d8 d7d8 f7f8R d8f8 f1f8 e6f8 d6f7
nps=76789 h/p/q=39.00%/97.00%/0.00% q=82.0% bc=64% br=1.23 mp=2008/1980/0/0
pawnx=0 recapx=39 qcheckx=0 checkx=135 qfutilx=509 onereplyx=26 mthrx=5163
futilx=0 bmx=0
+ 8.71/20.88 91% 147/161 bf=2.13 h/p/q=32.78%/96.58%/0.00% 778.85 90595496
562705/5/116320 483370/252740/500405/3242546/11332088/306162/0/43192
*** Problem   Solution(s): Bd5 (bm)
[D] r3kbnr/p4ppp/2p1p3/8/Q1B3b1/2N1B3/PP3PqP/R3K2R w KQkq - bm Bd5
*** Problem   Solution(s): Bd5 (bm)
BR ** -- ** BK BB BN BR
BP -- ** -- ** BP BP BP
-- ** BP ** BP ** -- **
** -- ** -- ** -- ** --
WQ ** WB ** -- ** BB **
** -- WN -- WB -- ** --
WP WP -- ** -- WP BQ WP
WR -- ** -- WK -- ** WR
mv 1 stage 0, white to move, computer plays white
hash=4a4ecf0b7312b10b
pawnhash=2b038f7f61e004e7
Alpha=-3117 Beta=-2316 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 3>h1f1 -2316  0.00       91 h1f1 g2h2 e3a7
 1/ 3 e1d2 -2165  0.00      148 e1d2
 2/ 7 e1d2 -2446  0.01      403 e1d2 a7a5
 3/ 9 e1d2 -2342  0.03     1397 e1d2 f8d6 e3a7 d6h2
 4/12 e1d2 -2547  0.08     5032 e1d2 a8d8 c4d3 g4f5
 5/13>e1d2 -2146  0.17    12173 e1d2 a8d8 c4d3 g4f5 e3d4 f5d3 d2d3
 5/13 c4d5 2391  0.19    13794 c4d5 e6d5 a4c6 e8d8 c6a8 d8e7 c3d5
 6/16 c4d5 2790  0.37    27841 c4d5 e6d5 a4c6 e8d8 c6a8 d8d7 c3d5 g2h1
 7/19 c4d5 2913  0.81    64862 c4d5 e6d5 a4c6 e8d8 c6a8 g4c8 a8d5 g2d5 c3d5 a7a5
 8/22 c4d5 2720  2.34   210799 c4d5 e6d5 a4c6 e8d8 c6a8 d8d7 e1d2 g8e7 e3a7
 9/24 c4d5 2840  5.67   537958 c4d5 e6d5 a4c6 e8d8 c6a8 d8d7 e1d2 f8d6 c3d5 d7e6
10/24 Tc4d5  3112  6.00   571392 c4d5 e6d5 a4c6 e8d8 c6a8 d8d7 e1d2 g8e7 a8a7
d7e6
nps=95184 h/p/q=27.00%/99.00%/0.00% q=76.0% bc=60% br=2.07
mp=758/200/-1204/-1906
pawnx=11 recapx=772 qcheckx=0 checkx=32553 qfutilx=62016 onereplyx=2448
mthrx=5163 futilx=0 bmx=0
+ 8.72/20.90 91% 148/162 bf=2.13 h/p/q=32.75%/96.60%/0.00% 784.85 91166888
562759/5/116158 483381/253512/505568/3275099/11394104/308610/0/43192
*** Problem   Solution(s): Qg2+ (bm)
[D] 5rk1/2p4p/2p4r/3P4/4p1b1/1Q2NqPp/PP3P1K/R4R2 b - - bm Qg2+
*** Problem   Solution(s): Qg2+ (bm)
-- ** -- ** -- BR BK **
** -- BP -- ** -- ** BP
-- ** BP ** -- ** -- BR
** -- ** WP ** -- ** --
-- ** -- ** BP ** BB **
** WQ ** -- WN BQ WP BP
WP WP -- ** -- WP -- WK
WR -- ** -- ** WR ** --
mv 1 stage 0, black to move, computer plays black
hash=af0f6a4219f5052f
pawnhash=85ddbd7f9eb6baa8
Alpha=-269 Beta=531 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 5>c6d5 531  0.00       32 c6d5 b3d5
 1/ 7 g8f7 547  0.01      291 g8f7
 2/ 7>g8f7 947  0.01      403 g8f7 e3g4
 2/ 7 g4c8 962  0.01      752 g4c8
 3/ 9 c6d5 1351  0.03     2371 c6d5 b3d5 g4e6
 4/12<c6d5 950  0.05     4549 c6d5 b3d5 g4e6 d5b5 h6h5
 4/12 c6d5 -63  0.10     8848 c6d5 b3d5 g4e6 d5g5 h6g6 g5e7
 5/14 c6d5 16  0.16    15982 c6d5 b3d5 g4e6 d5g5 h6g6 g5c5
 6/14>c6d5 416  0.20    19726 c6d5 b3d5 g4e6 d5g5 h6g6 g5c5 e6a2 a1a2
 6/18 c6d5 416  0.39    40407 c6d5 b3d5 g4e6 d5g5 h6g6 g5c5 e6a2 a1a2
 7/18 c6d5 16  1.15   123336 c6d5 b3d5 f8f7 d5g5 h6g6 g5c5 mtmt
 8/22 c6d5 -36  3.01   330341 c6d5 b3d5 f8f7 d5g5 h6g6 g5c5 g6b6 c5e5
 9/22 Tc6d5  363  6.00   636928 c6d5 b3d5 g4e6 d5d1 f3d1 e3d1 f8f7 mtmt
nps=106102 h/p/q=23.00%/99.00%/0.00% q=76.0% bc=58% br=2.15
mp=2406/2694/-1381/-1330
pawnx=6821 recapx=1966 qcheckx=0 checkx=21339 qfutilx=123549 onereplyx=1734
mthrx=5163 futilx=0 bmx=0
- 8.72/20.91 90% 148/163 bf=2.13 h/p/q=32.69%/96.61%/0.00% 790.86 91803816
563214/5/116082 490202/255478/510731/3296438/11517653/310344/0/43192
*** Problem   Solution(s): Rxc4+ (bm)
[D] 8/6pp/4p3/1p1n4/1NbkN1P1/P4P1P/1PR3K1/r7 w - - bm Rxc4+
*** Problem   Solution(s): Rxc4+ (bm)
-- ** -- ** -- ** -- **
** -- ** -- ** -- BP BP
-- ** -- ** BP ** -- **
** BP ** BN ** -- ** --
-- WN BB BK WN ** WP **
WP -- ** -- ** WP ** WP
-- WP WR ** -- ** WK **
BR -- ** -- ** -- ** --
mv 1 stage 0, white to move, computer plays white
hash=e2b503a6bd41eb07
pawnhash=d72ef5a3ad2b5bf7
Alpha=1627 Beta=2428 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 2>b4d5 2428  0.00        2 b4d5
 1/ 4 b4d5 2428  0.00       36 b4d5
 2/ 7>b4c6 2828  0.01      467 b4c6 d4e3 g4g5
 2/ 7 c2d2 2829  0.01      584 c2d2 d4e5 b4d5
 3/ 9>c2d2 3229  0.02     1197 c2d2 d4e5 b4d5 e6d5 d2d5 c4d5
 3/10 c2c4 5687  0.03     2166 c2c4 b5c4 b4c2 d4e5 c2a1
 4/10 c2c4 6079  0.05     4736 c2c4 d4e3 b4c2 e3d3 c2a1
 5/13<c2c4 5678  0.13    14565 c2c4 d4e3 b4c2 e3e2 c2a1 d5f4 g2g3 e2e3
 5/14 b4c6 2060  0.25    28648 b4c6 d4d3 c2d2 d3e3 c6d4 d5f4 g2h2 a1c1
 6/16>b4c6 2460  0.49    53990 b4c6 d4e3 c6e5 c4f1 g2g3 b5b4 a3b4
 6/16 c2c4 5683  0.74    87580 c2c4 d4c4 e4d2 c4c5 d2b3 c5d6 b3a1 d5e3 g2g3 e3f1
 7/16 c2c4 5682  0.96   116940 c2c4 d4c4 e4d2 c4d4 d2b3 d4e5 b3a1 d5f4 g2h2 f4h3
h2h3
 8/18 c2c4 5675  1.54   191652 c2c4 d4c4 e4d2 c4c5 d2b3 c5b6 b3a1 d5b4 a3b4 g7g5
g2g3 h7h5
 9/20 c2c4 5675  2.63   341648 c2c4 d4c4 e4d2 c4c5 d2b3 c5c4 b3a5 c4c5 a5b3 c5c4
b3a5 c4c5 a5b3 c5c4 b3a5 c4c5 a5b3
10/24 c2c4 5671  4.83   657901 c2c4 d4c4 e4d2 c4d4 d2b3 d4e5 b4d3 e5d6 b3a1 e6e5
h3h4 d5e3 g2g3 e3c2
11/24 Tc2c4  5662  6.02   835589 c2c4 d4c4 e4d2 c4c5 d2b3 c5d6 b3a1 d5b4 a3b4
d6e5 g2g3 h7h6
nps=138825 h/p/q=36.00%/98.00%/0.00% q=67.0% bc=50% br=2.30
mp=136/305/-2018/-1542
pawnx=1783 recapx=2435 qcheckx=0 checkx=36954 qfutilx=62144 onereplyx=752
mthrx=5172 futilx=0 bmx=407
+ 8.73/20.93 90% 149/164 bf=2.13 h/p/q=32.71%/96.62%/0.00% 796.88 92639408
564874/5/116253 491985/257913/515903/3333392/11579797/311096/0/43599
*** Problem   Solution(s): Re2 (bm)
[D] 1r5k/p1p3pp/8/8/4p3/P1P1R3/1P1Q1qr1/2KR4 w - - bm Re2
*** Problem   Solution(s): Re2 (bm)
-- BR -- ** -- ** -- BK
BP -- BP -- ** -- BP BP
-- ** -- ** -- ** -- **
** -- ** -- ** -- ** --
-- ** -- ** BP ** -- **
WP -- WP -- WR -- ** --
-- WP -- WQ -- BQ BR **
** -- WK WR ** -- ** --
mv 1 stage 0, white to move, computer plays white
hash=321d3acec490b91
pawnhash=b46d2fdc36e6b552
Alpha=-2454 Beta=-1653 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 7<e3e4 -2454  0.00       37 e3e4
 1/ 7 d2f2 -3630  0.00       78 d2f2
 2/ 7>d2f2 -3229  0.01      257 d2f2 g2f2 b2b4
 2/ 7 d2d8 -1996  0.01      469 d2d8 f2f8 d8f8 b8f8 e3e4
 3/ 9 e3e4 -2247  0.02     1232 e3e4 h7h5
 4/10 d2d8 -2416  0.04     3104 d2d8 f2f8 d8f8 b8f8 e3e4 f8f2
 5/11>d2d8 -2015  0.04     3342 d2d8 f2f8 d8f8 b8f8 e3e4 f8f2 c1b1 f2b2
 5/11 e3e2 -1822  0.08     7161 e3e2 e4e3 e2f2 e3d2 d1d2 g2f2 d2f2
 6/12>e3e2 -1421  0.10    10181 e3e2 e4e3 e2f2 e3d2 d1d2 g2f2 d2f2 b8b2
 6/12 e3e2 1846  0.17    18645 e3e2 b8f8 e2f2 g2f2 d2e3
 7/12>e3e2 2246  0.24    26991 e3e2 b8f8 e2f2 g2f2 d2e3 f2b2 c1b2
 7/13 e3e2 3736  0.50    59106 e3e2 f2f7 e2g2 h7h5 d2e3
 8/18 e3e2 3704  1.01   124283 e3e2 f2h4 e2g2 h7h5 d2e3 h4f2 g2f2
 9/18 e3e2 3802  2.17   261192 e3e2 f2f6 e2g2 f6h4 d2f2 h4h6 c1b1 h6d2
10/23 e3e2 3947  4.99   612859 e3e2 e4e3 d2d8 f2f8 d8f8 b8f8 e2g2 g7g6 c1c2 e3e2
g2e2
11/23 Te3e2  3895  6.01   742404 e3e2 e4e3 d2d8 f2f8 d8f8 b8f8 e2g2 f8e8 c1b1
e8b8 g2e2
nps=123466 h/p/q=36.00%/99.00%/0.00% q=72.0% bc=50% br=1.88
mp=2111/26843596/-948/-104416
pawnx=6316 recapx=2642 qcheckx=0 checkx=17762 qfutilx=80111 onereplyx=2980
mthrx=5191 futilx=0 bmx=174
+ 8.75/20.94 90% 150/165 bf=2.13 h/p/q=32.73%/96.64%/0.00% 802.89 93381808
565950/5/116307 498301/260555/521094/3351154/11659908/314076/0/43773
*** Problem   Solution(s): d4 (bm)
[D] r3r1k1/5pp1/p1p4p/2Pp4/8/q1NQP1BP/5PP1/4K2R b K - bm d4
*** Problem   Solution(s): d4 (bm)
BR ** -- ** BR ** BK **
** -- ** -- ** BP BP --
BP ** BP ** -- ** -- BP
** -- WP BP ** -- ** --
-- ** -- ** -- ** -- **
BQ -- WN WQ WP -- WB WP
-- ** -- ** -- WP WP **
** -- ** -- WK -- ** WR
mv 1 stage 0, black to move, computer plays black
hash=bd138e744a6a34b
pawnhash=e5131610e3b2eca4
Alpha=1119 Beta=1920 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 3 a3c1 1598  0.00       60 a3c1 c3d1 c1c5
 2/ 5 a3c1 1598  0.01      254 a3c1 c3d1 c1c5
 3/ 8 a3c1 1613  0.01      957 a3c1 c3d1 c1c5 h3h4
 4/10>a3c1 2013  0.03     2445 a3c1 c3d1 c1c5 f2f3
 4/10 d5d4 3524  0.04     3079 d5d4 d3d4 a3a1 d4d1 a1c3
 5/11>d5d4 3924  0.08     6770 d5d4 d3d4 a3a1 d4d1 a1c3 e1f1 c3c5
 5/12 d5d4 3991  0.14    12718 d5d4 e1g1 d4c3 d3f5
 6/13 d5d4 3994  0.28    23868 d5d4 g3d6 d4c3 e1g1
 7/18 d5d4 4305  0.67    69896 d5d4 e1d2 a3b2 d2e1 d4c3 e1f1
 8/20 d5d4 4522  1.47   163108 d5d4 g3d6 a3b4 e1d2 b4b2 d3c2 d4c3 d2d3
 9/20 d5d4 4553  2.69   310255 d5d4 g3d6 d4c3 e1g1 g7g6 f1b1 a6a5
10/20 Td5d4  4731  6.02   695309 d5d4 g3d6 d4c3 e1g1 a3b2 d3d4 f7f6
nps=115577 h/p/q=38.00%/98.00%/0.00% q=71.0% bc=59% br=2.25
mp=1375/2335/-1412/-1169
pawnx=5444 recapx=1377 qcheckx=0 checkx=26428 qfutilx=88791 onereplyx=1868
mthrx=5196 futilx=0 bmx=0
+ 8.75/20.93 90% 151/166 bf=2.13 h/p/q=32.76%/96.64%/0.00% 808.90 94077120
566730/5/116302 503745/261932/526290/3377582/11748699/315944/0/43773
*** Problem   Solution(s): Rxg2+ (bm)
[D] 7Q/ppp2q2/3p2k1/P2Ppr1N/1PP5/7R/5rP1/6K1 b - - bm Rxg2+
*** Problem   Solution(s): Rxg2+ (bm)
-- ** -- ** -- ** -- WQ
BP BP BP -- ** BQ ** --
-- ** -- BP -- ** BK **
WP -- ** WP BP BR ** WN
-- WP WP ** -- ** -- **
** -- ** -- ** -- ** WR
-- ** -- ** -- BR WP **
** -- ** -- ** -- WK --
mv 1 stage 0, black to move, computer plays black
hash=c37314db3d3e9350
pawnhash=da70b1196535f68
Alpha=2704 Beta=3505 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 4 e5e4 3262  0.00       75 e5e4
 2/10 c7c6 3148  0.01      741 c7c6 d5c6 b7c6
 3/13 f2f1 2961  0.07     5992 f2f1 g1h2 f5f2 h5g3
 4/13>f2f1 3361  0.13    10771 f2f1 g1h2 f1f2 h5g3 f2g2 h2g2
 4/13 f2g2 3362  0.15    12373 f2g2 g1g2 f5f2 g2h1 f2f1 h1g2 f7f2
 5/14>f2g2 3762  0.17    13748 f2g2 g1h1 f5f2 h5g3 f2f1
 5/15 Mf2g2  99959  0.23    19448 f2g2 g1g2 f5f2 g2g3 f7f3 g3h4 f3e4 h4g3 f2g2
nps=83468 h/p/q=32.00%/97.00%/0.00% q=77.0% bc=66% br=2.98 mp=1004/1379/-460/-35
pawnx=300 recapx=95 qcheckx=0 checkx=1675 qfutilx=3181 onereplyx=203 mthrx=5196
futilx=0 bmx=0
+ 8.73/20.90 91% 152/167 bf=2.13 h/p/q=32.75%/96.65%/0.00% 809.14 94096568
563452/5/116292 504045/262027/531486/3379257/11751880/316147/0/43773
*** Problem   Solution(s): Qd2+ (bm)
[D] r3k2r/pb1q1p2/8/2p1pP2/4p1p1/B1P1Q1P1/P1P3K1/R4R2 b kq - bm Qd2+
*** Problem   Solution(s): Qd2+ (bm)
BR ** -- ** BK ** -- BR
BP BB ** BQ ** BP ** --
-- ** -- ** -- ** -- **
** -- BP -- BP WP ** --
-- ** -- ** BP ** BP **
WB -- WP -- WQ -- WP --
WP ** WP ** -- ** WK **
WR -- ** -- ** WR ** --
mv 1 stage 0, black to move, computer plays black
hash=1aaa26fdc2852702
pawnhash=4eb643b29a0cd9a6
Alpha=2204 Beta=3005 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 2 c5c4 2544  0.00       48 c5c4
 2/ 6<c5c4 2143  0.00      172 c5c4 e3e4
 2/ 6 d7d2 1935  0.01      434 d7d2 e3d2 e4e3 g2g1 e3d2 a3c5
 3/ 9>d7d2 2335  0.01      507 d7d2 e3d2 e4e3 g2g1 e3d2 a3c5
 3/ 9 d7d2 3130  0.02      927 d7d2 e3d2 e4e3 d2d5 b7d5 g2g1
 4/ 9>d7d2 3530  0.02     1127 d7d2 e3d2 e4e3 d2d5 b7d5 f1f3 g4f3
 4/11 d7d2 12855  0.03     1873 d7d2 e3d2 e4e3 d2d5 b7d5 f1f3 g4f3 g2f1
 5/14>d7d2 16366  0.06     4760 d7d2 e3d2 e4e3 f1f3 b7f3
 5/14 d7d2 16366  0.08     7261 d7d2 e3e2 e4e3 f1f3 d2e2 g2g1 g4f3 a3c5
 6/15<d7d2 15965  0.12    10973 d7d2 e3e2 e4e3 f1f3 d2e2 g2g1 g4f3 a3b2 e2c2
 6/15 d7d2 16366  0.12    11515 d7d2 e3e2 e4e3 f1f3 d2e2 g2g1 g4f3 a3b2 e2c2
 7/19<d7d2 15965  0.24    24235 d7d2 e3e2 e4e3 f1f3 d2e2 g2g1 g4f3 a3b2 e2c2
a1e1 c2b2
 7/19 d7d2 12887  0.34    33817 d7d2 e3e2 e4e3 f1f3 d2e2 g2g1 g4f3 a3b2 e2c2
a1e1 c2b2
 8/19<d7d2 12486  0.80    88667 d7d2 f1f2 d2e3 a3c1 e3c1 a1c1 e8g8 mtmt
 8/19 d7d2 12486  0.84    92899 d7d2 f1f2 d2e3 a3c1 e3c1 a1c1 e8g8 mtmt
 9/23>d7d2 12886  1.34   146736 d7d2 f1f2 d2e3 a3c1 e3c1 a1c1 e8g8 g2g1 e4e3
f2e2
 9/23 d7d2 12889  2.33   256739 d7d2 f1f2 d2e3 a3c5 e3h6 f2d2 h6d2 g2g1 d2h2
g1f1 h2g3
10/26>d7d2 13289  3.60   391594 d7d2 f1f2 d2e3 a3c5 e3h6 f2d2 h6d2 g2g1 d2h2
g1f1 h2g3 c5a7 a8a7
10/27 Td7d2  14328  6.03   650264 d7d2 f1f2 d2e3 a3b4 e3h6 g2f1 h6h1 f1e2 h1a1
b4c5 a1c3 c5a7 a8a7
nps=107892 h/p/q=22.00%/98.00%/0.00% q=73.0% bc=50% br=2.68
mp=1763/3686/-2349/-950
pawnx=15230 recapx=354 qcheckx=0 checkx=36776 qfutilx=33910 onereplyx=5256
mthrx=5220 futilx=0 bmx=84
+ 8.74/20.93 91% 153/168 bf=2.14 h/p/q=32.69%/96.65%/0.00% 815.16 94746832
563969/5/116230 519275/262381/536706/3416033/11785790/321403/0/43857
*** Problem   Solution(s): Bh6 (bm)
[D] 5rk1/1pp3bp/3p2p1/2PPp3/1P2P3/2Q1B3/4q1PP/R5K1 b - - bm Bh6
*** Problem   Solution(s): Bh6 (bm)
-- ** -- ** -- BR BK **
** BP BP -- ** -- BB BP
-- ** -- BP -- ** BP **
** -- WP WP BP -- ** --
-- WP -- ** WP ** -- **
** -- WQ -- WB -- ** --
-- ** -- ** BQ ** WP WP
WR -- ** -- ** -- WK --
mv 1 stage 0, black to move, computer plays black
hash=bb1c360bd20621ab
pawnhash=999b40a7d5947469
Alpha=-494 Beta=306 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 5 g8h8 124  0.00      243 g8h8 c5d6 c7d6
 2/ 8 f8f7 68  0.01     1181 f8f7 c5d6 c7d6
 3/ 9 d6c5 -8  0.04     3388 d6c5 e3c5 f8f7
 4/10>d6c5 392  0.08     8120 d6c5 e3c5 f8e8 c3f3
 4/10 g7h6 393  0.09     8374 g7h6 e3h6 e2f2 g1h1 f2f1 a1f1 f8f1
 5/12>g7h6 793  0.12    11263 g7h6 c5d6 h6e3 g1h1 mtmt
 5/13 g7h6 4520  0.25    26750 g7h6 g1h1 h6e3 a1a7
 6/18 g7h6 4769  0.40    42939 g7h6 e3f4 e5f4 a1e1 h6g7
 7/18 g7h6 5167  0.68    73941 g7h6 g1h1 h6e3 c3e1 e2e1 a1e1 d6c5 b4c5 e3c5
 8/21 g7h6 5566  1.56   177656 g7h6 e3d4 e5d4 c3e1 e2e1 a1e1 d6c5 e1e3 h6e3
 9/25 g7h6 5950  4.21   496572 g7h6 h2h3 h6e3 g1h2 d6c5 a1e1
10/28<Tg7h6  5549  6.01   720962 g7h6 h2h3 h6e3 g1h2 d6c5 c3e5 e3f4 e5f4 f8f4
a1a8 g8f7
nps=120020 h/p/q=30.00%/98.00%/0.00% q=74.0% bc=54% br=2.10
mp=3234/2433/-1343/-26738600
pawnx=4964 recapx=2961 qcheckx=0 checkx=26710 qfutilx=48140 onereplyx=6093
mthrx=5228 futilx=0 bmx=13
+ 8.75/20.98 91% 154/169 bf=2.14 h/p/q=32.67%/96.66%/0.00% 821.17 95467792
564898/5/116258 524239/265342/541934/3442743/11833930/327496/0/43870
*** Problem   Solution(s): Qxc4 (bm)
[D] 5r1k/6Rp/1p2p3/p2pBp2/1qnP4/4P3/Q4PPP/6K1 w - - bm Qxc4
*** Problem   Solution(s): Qxc4 (bm)
-- ** -- ** -- BR -- BK
** -- ** -- ** -- WR BP
-- BP -- ** BP ** -- **
BP -- ** BP WB BP ** --
-- BQ BN WP -- ** -- **
** -- ** -- WP -- ** --
WQ ** -- ** -- WP WP WP
** -- ** -- ** -- WK --
mv 1 stage 0, white to move, computer plays white
hash=8e72f650d72c24d3
pawnhash=24ef93e2426d8634
Alpha=-2401 Beta=-1600 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 5 g7f7 -1943  0.00      159 g7f7 h8g8
 2/ 7 g7f7 -1678  0.01     1034 g7f7 c4e5 f7f8 b4f8 d4e5
 3/ 9 g7f7 -1735  0.03     2598 g7f7 c4e5 f7f8 b4f8 d4e5 h7h6
 4/11>g7f7 -1334  0.06     5777 g7f7 c4e5 f7f8 b4f8 d4e5 h7h5
 4/13 a2c4 2795  0.12    12140 a2c4 b4b1 c4f1 b1c2
 5/14>a2c4 3195  0.13    13584 a2c4 b4b1 c4f1 b1c2 g7h7 h8h7 f1e2
 5/14 a2c4 3195  0.16    17015 a2c4 b4b1 c4f1 b1c2 g7h7 h8h7 f1e2
 6/17>a2c4 3595  0.20    21265 a2c4 b4b1 c4f1 b1c2 g7h7 h8h7 f1e2 c2e2
 6/17 a2c4 3595  0.27    29558 a2c4 b4b1 c4f1 b1c2 g7h7 h8h7 f1e2 c2e2
 7/23>a2c4 3995  0.52    62706 a2c4 b4b1 c4f1 b1c2 g7h7 h8h7 f1e2
 7/23 a2c4 3995  0.71    87446 a2c4 b4b1 c4f1 b1c2 g7h7 h8h7 f1e2
 8/23>a2c4 4395  1.49   190228 a2c4 b4b1 c4f1 b1c2 g7h7 h8h7 f1e2
 8/23 a2c4 4395  1.80   231498 a2c4 b4b1 c4f1 b1c2 g7h7 h8h7 f1e2
 9/25>a2c4 4795  3.89   519166 a2c4 b4b1 c4f1 b1c2 g7h7 h8h7 f1e2
 9/25 a2c4 4795  4.48   605864 a2c4 b4b1 c4f1 b1c2 g7h7 h8h7 f1e2
10/26<Ta2c4  0  6.01   847888 a2c4 b4e1 c4f1 e1f1 g1f1 b6b5 g7f7 h8g8 f7g7 g8h8
g7f7 h8g8 f7g7 g8h8 g7f7 h8g8 f7g7 g8h8
nps=141174 h/p/q=33.00%/98.00%/0.00% q=67.0% bc=53% br=2.35
mp=1590/1554/-1389/-1170
pawnx=1154 recapx=2564 qcheckx=0 checkx=36713 qfutilx=82924 onereplyx=7298
mthrx=5263 futilx=0 bmx=256
+ 8.75/21.01 91% 155/170 bf=2.14 h/p/q=32.68%/96.67%/0.00% 827.18 96315680
566563/5/116439 525393/267906/547197/3479456/11916854/334794/0/44126
*** Problem   Solution(s): Bh6+ (bm)
[D] 2rq4/1b2b1kp/p3p1p1/1p1nNp2/7P/1B2B1Q1/PP3PP1/3R2K1 w - - bm Bh6+
*** Problem   Solution(s): Bh6+ (bm)
-- ** BR BQ -- ** -- **
** BB ** -- BB -- BK BP
BP ** -- ** BP ** BP **
** BP ** BN WN BP ** --
-- ** -- ** -- ** -- WP
** WB ** -- WB -- WQ --
WP WP -- ** -- WP WP **
** -- ** WR ** -- WK --
mv 1 stage 0, white to move, computer plays white
hash=53329a6a8dd32ec6
pawnhash=1924c16d144769a8
Alpha=-1637 Beta=-836 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 5 g1h2 -905  0.00      117 g1h2
 2/ 7 e3h6 -837  0.01      675 e3h6 g7g8 g1h2
 3/13 e3h6 -909  0.02     1766 e3h6 g7g8 d1d4
 4/16>e3h6 -508  0.04     2758 e3h6 g7g8 d1d4 d8d6
 4/16 e3h6 -507  0.07     5236 e3h6 g7g8 e5g6 h7g6 g3g6
 5/18>e3h6 -106  0.10     8153 e3h6 g7g8 e5g6 h7g6 g3g6
 5/18 e3h6 0  0.35    28366 e3h6 g7f6 h6g5 f6g7 g5h6 g7f6 h6g5 f6g7 g5h6 g7f6
h6g5 f6g7 g5h6
 6/22 e3h6 398  1.28   120459 e3h6 g7f6 h4h5 d8d6 h6g5 f6g7
 7/25>e3h6 798  4.87   464141 e3h6 g7f6 h4h5 d8e8 h5g6 h7g6 h6g5 f6g7
 7/25 Te3h6  2195  6.02   579584 e3h6 g7h6 e5f7 h6g7 f7d8 c8d8 g3e5
nps=96292 h/p/q=28.00%/99.00%/0.00% q=80.0% bc=65% br=3.35
mp=1161/1150/-950/-1140
pawnx=4081 recapx=1803 qcheckx=0 checkx=27741 qfutilx=82279 onereplyx=1820
mthrx=5356 futilx=0 bmx=0
+ 8.74/21.03 91% 156/171 bf=2.15 h/p/q=32.65%/96.68%/0.00% 833.20 96895264
566639/5/116293 529474/269709/552553/3507197/11999133/336614/0/44126
*** Problem   Solution(s): Qe1+ (bm)
[D] 5r1k/p5pp/8/1P1pq3/P1p2nR1/Q7/5BPP/6K1 b - - bm Qe1+
*** Problem   Solution(s): Qe1+ (bm)
-- ** -- ** -- BR -- BK
BP -- ** -- ** -- BP BP
-- ** -- ** -- ** -- **
** WP ** BP BQ -- ** --
WP ** BP ** -- BN WR **
WQ -- ** -- ** -- ** --
-- ** -- ** -- WB WP WP
** -- ** -- ** -- WK --
mv 1 stage 0, black to move, computer plays black
hash=117ec7e903479d07
pawnhash=4a3cf3a685dd16f7
Alpha=2748 Beta=3549 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 4 f4e2 3493  0.00       95 f4e2 g1f1
 2/ 7>Me5e1  99984  0.01      269 e5e1 f2e1 f4e2 g1h1 f8f1
nps=53800 h/p/q=26.00%/94.00%/0.00% q=83.0% bc=50% br=0.75 mp=758/1194/-252/0
pawnx=6 recapx=0 qcheckx=0 checkx=17 qfutilx=30 onereplyx=3 mthrx=5356 futilx=0
bmx=0
+ 8.70/20.95 91% 157/172 bf=2.14 h/p/q=32.61%/96.67%/0.00% 833.20 96895536
563346/5/116293 529480/269709/557909/3507214/11999163/336617/0/44126
*** Problem   Solution(s): Qh6+ (bm)
[D] 2r1b3/1pp1qrk1/p1n1P1p1/7R/2B1p3/4Q1P1/PP3PP1/3R2K1 w - - bm Qh6+
*** Problem   Solution(s): Qh6+ (bm)
-- ** BR ** BB ** -- **
** BP BP -- BQ BR BK --
BP ** BN ** WP ** BP **
** -- ** -- ** -- ** WR
-- ** WB ** BP ** -- **
** -- ** -- WQ -- WP --
WP WP -- ** -- WP WP **
** -- ** WR ** -- WK --
mv 1 stage 0, white to move, computer plays white
hash=53fa1d5ad366af7f
pawnhash=63cc61a9157b1112
Alpha=75 Beta=876 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 5>e6f7 876  0.00       66 e6f7 g6h5 f7e8Q c8e8
 1/ 7 e3h6 3457  0.01      194 e3h6 g7g8 e6f7 e8f7
 2/ 7>e3h6 3857  0.01      248 e3h6 g7f6 e6f7
 2/11 e3h6 3860  0.01      872 e3h6 g7f6 h6f4 f6g7 f4h6 g7f6 h6f4 f6g7 f4h6 g7f6
h6f4 f6g7 f4h6
 3/12>Me3h6  99984  0.02     1347 e3h6 g7f6 h5f5 f6f5 h6f4
nps=61227 h/p/q=49.00%/95.00%/0.00% q=89.0% bc=50% br=1.07 mp=1825/0/0/-983
pawnx=22 recapx=0 qcheckx=0 checkx=60 qfutilx=232 onereplyx=8 mthrx=5356
futilx=0 bmx=0
+ 8.67/20.90 91% 158/173 bf=2.13 h/p/q=32.71%/96.66%/0.00% 833.22 96896880
560098/5/116292 529502/269709/563265/3507274/11999395/336625/0/44126
*** Problem   Solution(s): Nxg2 (bm)
[D] 2r2rk1/6p1/p3pq1p/1p1b1p2/3P1n2/PP3N2/3N1PPP/1Q2RR1K b - - bm Nxg2
*** Problem   Solution(s): Nxg2 (bm)
-- ** BR ** -- BR BK **
** -- ** -- ** -- BP --
BP ** -- ** BP BQ -- BP
** BP ** BB ** BP ** --
-- ** -- WP -- BN -- **
WP WP ** -- ** WN ** --
-- ** -- WN -- WP WP WP
** WQ ** -- WR WR ** WK
mv 1 stage 0, black to move, computer plays black
hash=b5edb52158ba6124
pawnhash=634c9d7f045936a0
Alpha=10 Beta=811 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 5 a6a5 411  0.00       64 a6a5
 2/ 5 h6h5 409  0.01      329 h6h5
 3/ 8 f6g6 475  0.02     1349 f6g6 f1g1
 4/10>d5f3 875  0.05     3881 d5f3 d2f3 f6e7 b1b2
 4/10 f4g2 2243  0.07     5448 f4g2 e1c1 g2f4
 5/14 f4g2 2285  0.11     9300 f4g2 e1c1 g2h4 c1c8 f8c8
 6/14 f4g2 2418  0.20    18076 f4g2 e1d1 d5f3 d2f3 g2f4
 7/18<f4g2 2017  0.38    37468 f4g2 e1d1 g2h4 b1d3 d5f3 d2f3 h4f3 d3f3 c8c2
 7/18 f4g2 1231  0.58    58949 f4g2 e1e5 g2h4 b1d3 h4f3 d2f3
 8/19>f4g2 1631  0.72    71744 f4g2 e1e5 g2h4 b1d3 h4f3 d2f3 f6e7 b3b4
 8/19 f4g2 2490  1.26   126136 f4g2 e1d1 g2h4 b1d3 h4f3 d2f3 g8h7
 9/21 f4g2 2380  2.38   244962 f4g2 e1d1 g2f4 f1e1 f6d4 e1f1 d5f3 d2f3
10/24 f4g2 2547  5.47   563522 f4g2 e1e5 g2h4 b1d3 f8d8 f1d1 d5f3 d2f3 h4f3 d3f3
d8d4 d1e1
11/24 Tf4g2  2596  6.01   613399 f4g2 e1e5 g2h4 b1d3 f8d8 f1d1 f6e5 d4e5 d5f3
d2f3 d8d3 d1d3 h4g6
nps=102080 h/p/q=37.00%/99.00%/0.00% q=76.0% bc=50% br=2.14
mp=1701/1839/-1508/-1385
pawnx=339 recapx=3914 qcheckx=0 checkx=7646 qfutilx=132109 onereplyx=1128
mthrx=5370 futilx=0 bmx=0
+ 8.68/20.91 91% 159/174 bf=2.13 h/p/q=32.73%/96.67%/0.00% 839.23 97510280
560404/5/116190 529841/273623/568635/3514920/12131504/337753/0/44126
*** Problem   Solution(s): Nh5 (bm)
[D] r5k1/pppb3p/2np1n2/8/3PqNpP/3Q2P1/PPP5/R4RK1 w - - bm Nh5
*** Problem   Solution(s): Nh5 (bm)
BR ** -- ** -- ** BK **
BP BP BP BB ** -- ** BP
-- ** BN BP -- BN -- **
** -- ** -- ** -- ** --
-- ** -- WP BQ WN BP WP
** -- ** WQ ** -- WP --
WP WP WP ** -- ** -- **
WR -- ** -- ** WR WK --
mv 1 stage 0, white to move, computer plays white
hash=53c90ff4338a8598
pawnhash=4def998d3bd780eb
Alpha=-1923 Beta=-1122 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 9 d3b3 -1579  0.00      161 d3b3 g8g7
 2/ 9 d3b3 -1591  0.01      491 d3b3 g8h8
 3/ 9 d3b3 -1568  0.02     1455 d3b3 g8h8 c2c3
 4/12>d3b3 -1167  0.09     7164 d3b3 g8h8 d4d5 e4d4 g1h2
 4/12 f4h5 2455  0.11     8178 f4h5 a8f8 h5f6
 5/12 f4h5 2744  0.16    13487 f4h5 g8h8 h5f6 e4d3 c2d3
 6/13 f4h5 2979  0.30    27410 f4h5 g8h8 h5f6 e4e7 a1e1
 7/14 f4h5 3044  0.62    59976 f4h5 g8h8 h5f6 e4d3 c2d3 d7c8 d4d5
 8/17 f4h5 2844  1.34   138142 f4h5 e4d3 h5f6 g8g7 c2d3 a8d8 f6d5
 9/21 f4h5 2739  3.98   433557 f4h5 e4d4 d3d4 c6d4 h5f6 g8f7 f6g4 f7g7 g4e3 d4e2
g1g2 a8e8
10/24 Tf4h5  2575  6.00   664585 f4h5 e4d4 d3d4 c6d4 h5f6 g8f7 f6g4 f7g7 g4e3
d7b5 c2c4 a8e8
nps=110709 h/p/q=31.00%/99.00%/0.00% q=74.0% bc=54% br=2.24
mp=1504/1370/-1406/-1093
pawnx=1159 recapx=1139 qcheckx=0 checkx=19864 qfutilx=55852 onereplyx=773
mthrx=5370 futilx=0 bmx=364
+ 8.69/20.93 91% 160/175 bf=2.13 h/p/q=32.72%/96.69%/0.00% 845.24 98174864
560999/5/116151 531000/274762/574005/3534784/12187356/338526/0/44490
*** Problem   Solution(s): Rxh2+ (bm)
[D] r1bq3r/ppp2pk1/3p1pp1/8/2BbPQ2/2NP2P1/PPP4P/R4R1K b - - bm Rxh2+
*** Problem   Solution(s): Rxh2+ (bm)
BR ** BB BQ -- ** -- BR
BP BP BP -- ** BP BK --
-- ** -- BP -- BP BP **
** -- ** -- ** -- ** --
-- ** WB BB WP WQ -- **
** -- WN WP ** -- WP --
WP WP WP ** -- ** -- WP
WR -- ** -- ** WR ** WK
mv 1 stage 0, black to move, computer plays black
hash=e6b6aab38ecbe713
pawnhash=1a06775cb91bea3d
Alpha=-479 Beta=321 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 5>c8e6 321  0.00       54 c8e6 c4e6 f7e6
 1/ 5 c8d7 485  0.00      104 c8d7
 2/10 c8h3 425  0.01      335 c8h3
 3/11 g6g5 365  0.03     2090 g6g5 f4d2
 4/14 g6g5 161  0.09     7969 g6g5 f4f3 c8d7
 5/17>g6g5 561  0.13    11281 g6g5 f4f3 c8d7 e4e5
 5/17 h8h2 2381  0.23    20958 h8h2 h1h2 g6g5 f4f2 d8h8 h2g2 d4f2 g2f2
 6/19 h8h2 2643  0.50    48520 h8h2 h1h2 g6g5 f4f5 c8f5 e4f5 d8h8 h2g2 d4c3 b2c3
 7/19 h8h2 2642  1.02   102346 h8h2 h1h2 g6g5 f4f5 c8f5 e4f5 d4c3 h2g2 c3b2
 8/25 h8h2 2540  2.49   254813 h8h2 h1h2 g6g5 f4f2 d8h8 h2g1 d4f2 f1f2 c8h3 a1e1
 9/25 h8h2 2597  5.57   564623 h8h2 h1h2 g6g5 f4f5 c8f5 e4f5 d4c3 b2c3 d8h8 h2g2
g5g4 a8e8
10/25 Th8h2  2819  6.00   609289 h8h2 h1h2 g6g5 f4f5 c8f5 e4f5 d4c3 b2c3 d6d5
c4b3 d8h8 h2g2 a8d8
nps=101514 h/p/q=32.00%/97.00%/0.00% q=74.0% bc=52% br=2.21
mp=1348/1165/-877/-1112
pawnx=159 recapx=1528 qcheckx=0 checkx=19943 qfutilx=55006 onereplyx=2273
mthrx=5370 futilx=0 bmx=0
+ 8.70/20.95 91% 161/176 bf=2.13 h/p/q=32.72%/96.69%/0.00% 851.24 98784152
561274/5/116048 531159/276290/579375/3554727/12242362/340799/0/44490
*** Problem   Solution(s): Qa3+ (bm)
[D] r1b3r1/4qk2/1nn1p1p1/3pPp1P/p4P2/1p3BQN/PKPBN3/3R3R b - - bm Qa3+
*** Problem   Solution(s): Qa3+ (bm)
BR ** BB ** -- ** BR **
** -- ** -- BQ BK ** --
-- BN BN ** BP ** BP **
** -- ** BP WP BP ** WP
BP ** -- ** -- WP -- **
** BP ** -- ** WB WQ WN
WP WK WP WB WN ** -- **
** -- ** WR ** -- ** WR
mv 1 stage 0, black to move, computer plays black
hash=5d539d2730e62959
pawnhash=6459f25d533e387b
Alpha=-2108 Beta=-1307 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 7 b3a2 -1708  0.00       82 b3a2 b2a2
 2/ 9>b3c2 -1307  0.02     1035 b3c2 h3g5 f7g7 b2c2
 2/ 9 e7a3 346  0.03     1653 e7a3 b2c3 b3a2
 3/12>e7a3 746  0.03     1768 e7a3 b2b1 a3a2 b1c1 b3c2 h5g6 g8g6 f3d5
 3/12 Me7a3  99988  0.04     2146 e7a3 b2b1 a3a2 b1c1 b3c2 h5g6 g8g6 f3d5
nps=59611 h/p/q=42.00%/93.00%/0.00% q=86.0% bc=44% br=4.61 mp=0/1709/-900/0
pawnx=59 recapx=19 qcheckx=0 checkx=80 qfutilx=610 onereplyx=5 mthrx=5370
futilx=0 bmx=0
+ 8.67/20.90 91% 162/177 bf=2.15 h/p/q=32.77%/96.67%/0.00% 851.27 98786296
558115/5/116045 531218/276309/584745/3554807/12242972/340804/0/44490
*** Problem   Solution(s): Nxe6 (bm)
[D] 3r2k1/p1rn1p1p/1p2pp2/6q1/3PQNP1/5P2/P1P4R/R5K1 w - - bm Nxe6
*** Problem   Solution(s): Nxe6 (bm)
-- ** -- BR -- ** BK **
BP -- BR BN ** BP ** BP
-- BP -- ** BP BP -- **
** -- ** -- ** -- BQ --
-- ** -- WP WQ WN WP **
** -- ** -- ** WP ** --
WP ** WP ** -- ** -- WR
WR -- ** -- ** -- WK --
mv 1 stage 0, white to move, computer plays white
hash=9101104c00355c70
pawnhash=274009d5bf94edf
Alpha=132 Beta=933 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 6 h2h7 533  0.00      109 h2h7
 2/ 9 h2h7 468  0.01      679 h2h7 f6f5
 3/11 e4h7 226  0.04     3316 e4h7 g8f8 h7e4 f6f5
 4/12 e4h7 110  0.14    13602 e4h7 g8f8 f4e2 g5e3 h2f2 f8e7
 5/15 e4h7 -287  0.41    42106 e4h7 g8f8 f4e2 f6f5 h7h4
 6/16 e4h7 -410  1.00   107268 e4h7 g8f8 h7e4 f6f5 f4h3 g5g4 e4g4 f5g4 f3g4
 7/19>e4h7 -9  1.26   131728 e4h7 g8f8 h7e4 f6f5 f4e6 f7e6 e4e6 d7f6 h2h8
 7/19 e4h7 119  1.69   172183 e4h7 g8f8 h7e4 f6f5 e4e3 d8c8
 8/23>e4h7 519  5.23   564246 e4h7 g8f8 h7e4 f6f5 e4e3 d8c8 f4e6
 8/23 f4e6 1652  6.00   646578 f4e6 f6f5 e6g5 f5e4 h2h7 c7c2 h7f7 e4f3 f7f3
 9/23 Tf4e6  1731  6.01   647168 f4e6 f6f5 e6g5 f5e4 h2h7 c7c2 f3e4 f7f6
nps=107754 h/p/q=29.00%/98.00%/0.00% q=74.0% bc=57% br=2.59
mp=1379/1445/-1035/-562
pawnx=884 recapx=1203 qcheckx=0 checkx=22700 qfutilx=79932 onereplyx=1660
mthrx=5370 futilx=0 bmx=0
+ 8.67/20.92 91% 163/178 bf=2.15 h/p/q=32.75%/96.67%/0.00% 857.28 99433464
558615/5/115987 532102/277512/590115/3577507/12322904/342464/0/44490
*** Problem   Solution(s): Qg1+ (bm)
[D] r1b2r1k/pp4pp/3p4/3B4/8/1QN3Pn/PP3q1P/R3R2K b - - bm Qg1+
*** Problem   Solution(s): Qg1+ (bm)
BR ** BB ** -- BR -- BK
BP BP ** -- ** -- BP BP
-- ** -- BP -- ** -- **
** -- ** WB ** -- ** --
-- ** -- ** -- ** -- **
** WQ WN -- ** -- WP BN
WP WP -- ** -- BQ -- WP
WR -- ** -- WR -- ** WK
mv 1 stage 0, black to move, computer plays black
hash=4e6509594fb85cad
pawnhash=a5b54748bcce20e0
Alpha=695 Beta=1496 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 5 a8b8 1402  0.01      189 a8b8
 2/ 8>Mf2g1  99984  0.01      391 f2g1 e1g1 h3f2 h1g2 c8h3
nps=43444 h/p/q=21.00%/91.00%/0.00% q=83.0% bc=58% br=0.25 mp=326/442/0/-138
pawnx=0 recapx=0 qcheckx=0 checkx=21 qfutilx=100 onereplyx=7 mthrx=5370 futilx=0
bmx=0
+ 8.63/20.84 91% 164/179 bf=2.14 h/p/q=32.68%/96.64%/0.00% 857.29 99433856
555496/5/115987 532102/277512/595485/3577528/12323004/342471/0/44490
*** Problem   Solution(s): Nxd5 (bm)
[D] r1q2rk1/p3bppb/3p1n1p/2nPp3/1p2P1P1/6NP/PP2QPB1/R1BNK2R b KQ - bm Nxd5
*** Problem   Solution(s): Nxd5 (bm)
BR ** BQ ** -- BR BK **
BP -- ** -- BB BP BP BB
-- ** -- BP -- BN -- BP
** -- BN WP BP -- ** --
-- BP -- ** WP ** WP **
** -- ** -- ** -- WN WP
WP WP -- ** WQ WP WB **
WR -- WB WN WK -- ** WR
mv 1 stage 0, black to move, computer plays black
hash=c340aca4df3e4e0b
pawnhash=c4020217e38f6d46
Alpha=-111 Beta=689 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 6>f6e4 689  0.00       45 f6e4
 1/ 6 c8d8 1117  0.00      124 c8d8
 2/ 6 c8d7 981  0.01      259 c8d7
 3/ 9<c8d7 580  0.02     1060 c8d7 c1d2
 3/ 9 c8d7 537  0.03     1973 c8d7 b2b3
 4/12 c8d7 636  0.07     4719 c8d7 g4g5 h6g5 c1g5
 5/13 c8d8 762  0.21    13698 c8d8 g4g5 f6d7
 6/19 c8c7 681  0.76    58528 c8c7 g4g5 h6g5 c1d2 a8b8 d2g5
 7/19 c8a6 602  2.36   194238 c8a6 e2a6 c5a6 c1d2 a8b8 mtmt
 8/23 c8d8 672  4.76   402999 c8d8 f2f3 a7a6 a2a4
 9/23 Tc8d8  527  6.01   498703 c8d8 f2f3 f6d5 c1h6 e7h4 e1f2 d5f4
nps=82979 h/p/q=27.00%/97.00%/0.00% q=80.0% bc=52% br=2.72
mp=1288/2582/-1911/-721
pawnx=5631 recapx=3584 qcheckx=0 checkx=5928 qfutilx=146270 onereplyx=147
mthrx=5370 futilx=0 bmx=0
- 8.63/20.86 91% 164/180 bf=2.14 h/p/q=32.65%/96.64%/0.00% 863.30 99932560
555181/5/115757 537733/281096/600855/3583456/12469274/342618/0/44490
*** Problem   Solution(s): Ng4 (bm)
[D] r3k2r/2p2p2/p2p1n2/1p2p3/4P2p/1PPPPp1q/1P5P/R1N2QRK b kq - bm Ng4
*** Problem   Solution(s): Ng4 (bm)
BR ** -- ** BK ** -- BR
** -- BP -- ** BP ** --
BP ** -- BP -- BN -- **
** BP ** -- BP -- ** --
-- ** -- ** WP ** -- BP
** WP WP WP WP BP ** BQ
-- WP -- ** -- ** -- WP
WR -- WN -- ** WQ WR WK
mv 1 stage 0, black to move, computer plays black
hash=f613b0f69f5c8bd1
pawnhash=c4ecb686abebb785
Alpha=1682 Beta=2483 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 4 h3f1 2083  0.00      112 h3f1 g1f1
 2/ 7 h3f1 1685  0.01      389 h3f1 g1f1 e8e7
 3/ 7 h3f1 1307  0.01      958 h3f1 g1f1 f6h5
 4/ 8>h3f1 1707  0.02     1730 h3f1 g1f1 f6h5 f1f3 h5g3 h2g3
 4/11 f6g4 4085  0.03     2451 f6g4 c1e2 h3h2
 5/11>f6g4 4485  0.04     2729 f6g4 g1g4 h3f1 g4g1 f1g1 h1g1 mtmt
 5/11 f6g4 8825  0.07     6120 f6g4 g1g2 f3g2 h1g1 g2f1N
 6/14<f6g4 8424  0.19    17945 f6g4 g1g2 f3g2 h1g1 g2f1N a1a6 a8a6
 6/15 f6g4 8424  0.22    20853 f6g4 g1g4 h3f1 g4g1 f1h3 a1a6 a8a6
 7/15>f6g4 8824  0.22    21378 f6g4 g1g4 h3f1 g4g1 f1h3 a1a6 a8a6 g1g4 h3g4
 7/17 h3f1 8824  0.36    35689 h3f1 g1f1 f6h5 mtmt
 8/19<h3f1 8423  0.62    65282 h3f1 g1f1 f6h5 f1f3 e8g8 a1a6 a8a6 c1e2 h5f4
 8/19 f6g4 7110  1.34   143036 f6g4 g1g2 f3g2 f1g2 h8g8 c1a2
 9/20>f6g4 7510  1.48   156993 f6g4 g1g2 f3g2 f1g2 h8g8 a1a5 h3e3 c1e2 mtmt
 9/22 f6g4 8343  2.80   301659 f6g4 g1g2 f3g2 f1g2 h8g8 g2e2 g4e3 e2d1
10/24<f6g4 7942  4.77   513278 f6g4 g1g2 f3g2 f1g2 h8g8 h1g1 h3e3 g1f1 e3f4 f1g1
f4e3 g1f1 e3f4 f1g1 f4e3 g1f1 e3f4 f1g1 f4e3
10/24 f6g4 7942  5.04   538244 f6g4 g1g4 h3f1 g4g1 f1h3 a1a6 a8a6 g1g4 mtmt
11/24>f6g4 8342  5.53   587516 f6g4 g1g4 h3f1 g4g1 f1h3 a1a6 a8a6 g1g4 h3g4 c1e2
11/28 Tf6g4  8342  6.01   641043 f6g4 g1g4 h3f1 g4g1 f1h3 a1a6 a8a6 g1g4 h3g4
c1e2
nps=106716 h/p/q=35.00%/98.00%/0.00% q=73.0% bc=51% br=2.12
mp=817/1867/-1537/-956
pawnx=15576 recapx=2017 qcheckx=0 checkx=19435 qfutilx=76154 onereplyx=4368
mthrx=5499 futilx=0 bmx=5
+ 8.65/20.90 91% 165/181 bf=2.14 h/p/q=32.66%/96.65%/0.00% 869.31 100573600
555655/5/115694 553309/283113/606354/3602891/12545428/346986/0/44495
*** Problem   Solution(s): Qh5 (bm)
[D] r1b2rk1/ppqn1p1p/2n1p1p1/2b3N1/2N5/PP1BP3/1B3PPP/R2QK2R w KQ - bm Qh5
*** Problem   Solution(s): Qh5 (bm)
BR ** BB ** -- BR BK **
BP BP BQ BN ** BP ** BP
-- ** BN ** BP ** BP **
** -- BB -- ** -- WN --
-- ** WN ** -- ** -- **
WP WP ** WB WP -- ** --
-- WB -- ** -- WP WP WP
WR -- ** WQ WK -- ** WR
mv 1 stage 0, white to move, computer plays white
hash=b000b5e3a02002bf
pawnhash=9a8b9b49c851b204
Alpha=241 Beta=1042 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 2 e1g1 882  0.00       57 e1g1
 2/ 6 a1c1 750  0.01      209 a1c1
 3/ 8>a1c1 1150  0.01      859 a1c1 c7d8
 3/ 8 g5h7 1151  0.02     1331 g5h7 g8h7 d1h5 h7g8 h5h8
 4/ 8>g5h7 1551  0.03     1901 g5h7 c5e3 h7f8 e3f2 e1f2
 4/10 g5h7 1768  0.05     3606 g5h7 f8d8 h7g5
 5/11 g5h7 1440  0.12     9161 g5h7 f8e8 h7g5 c7d8
 6/13 g5h7 1492  0.33    26929 g5h7 f8e8 h7f6 d7f6 b2f6 c8d7 e1g1 e6e5
 7/16 d1h5 1557  0.90    74318 d1h5 h7h6 d3g6 c7d8
 8/20>d1h5 1957  1.51   119021 d1h5 h7h6 d3g6 c7d8 b2f6 d7f6 e1g1 e6e5
 8/21 d1h5 5092  4.07   321968 d1h5 h7h6 h5h6 d7f6 b2f6 e6e5
 9/21<Td1h5  4691  6.01   479258 d1h5 h7h6 h5h6 d7f6 b2f6 e6e5 e1g1 c8g4
nps=79797 h/p/q=24.00%/97.00%/0.00% q=81.0% bc=46% br=2.89
mp=2637/993/-1136/-2080
pawnx=14 recapx=882 qcheckx=0 checkx=9561 qfutilx=128889 onereplyx=1212
mthrx=5941 futilx=0 bmx=96
+ 8.65/20.90 91% 166/182 bf=2.15 h/p/q=32.62%/96.65%/0.00% 875.31 101052856
555236/5/115448 553323/283995/612295/3612452/12674317/348198/0/44591
*** Problem   Solution(s): Bf6 (bm)
[D] 1r2k1r1/5p2/b3p3/1p2b1B1/3p3P/3B4/PP2KP2/2R3R1 w - - bm Bf6
*** Problem   Solution(s): Bf6 (bm)
-- BR -- ** BK ** BR **
** -- ** -- ** BP ** --
BB ** -- ** BP ** -- **
** BP ** -- BB -- WB --
-- ** -- BP -- ** -- WP
** -- ** WB ** -- ** --
WP WP -- ** WK WP -- **
** -- WR -- ** -- WR --
mv 1 stage 0, white to move, computer plays white
hash=4068d73d840a4a48
pawnhash=c46e9adcc84146bb
Alpha=-561 Beta=239 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 3>d3b5 239  0.00       10 d3b5 a6b5
 1/ 4 g1h1 865  0.01       91 g1h1
 2/ 5 e2d2 818  0.01      240 e2d2
 3/ 8 f2f4 591  0.02      987 f2f4 e5d6
 4/ 9 f2f4 326  0.04     2779 f2f4 e5g7 c1c7
 5/11>h4h5 726  0.09     8537 h4h5 e5h2 g1g4
 5/11 c1c6 926  0.12    11789 c1c6 a6b7 c6c1
 6/14>f2f4 1326  0.22    23014 f2f4 e5g7 g5f6 e8f8 g1g7 g8g7 f6g7 f8g7
 6/14 g5f6 1544  0.28    28951 g5f6 g8g1 c1g1 e5d6 g1g8 d6f8 f6d4
 7/14 g5f6 1664  0.43    47261 g5f6 g8g1 c1g1 e5d6 g1g8 d6f8 f6d4 b8c8
 8/20 g5f6 1545  0.86   100046 g5f6 g8g1 c1g1 e5d6 g1g8 d6f8 f6g7 e8e7 g7d4
 9/20 g5f6 1771  1.77   213043 g5f6 g8g1 c1g1 e5d6 f6d4 e8e7 h4h5 d6f4
10/20>g5f6 2171  2.13   257769 g5f6 g8g1 c1g1 e5d6 f6d4 e8e7 a2a4 d6h2 d4c5 e7d7
g1g7
10/20 g5f6 2171  3.76   460376 g5f6 g8g1 c1g1 e5d6 g1g8 d6f8 f6d4 b8c8 a2a4 b5a4
11/23 Tg5f6  1911  6.00   752640 g5f6 g8g1 c1g1 e5h2 g1g8 e8d7 g8b8 h2b8 a2a4
b8a7 a4b5 a6b7 mtmt
nps=125398 h/p/q=36.00%/99.00%/0.00% q=72.0% bc=54% br=2.33
mp=1863/2061/-1038/-1484
pawnx=1462 recapx=2610 qcheckx=0 checkx=19479 qfutilx=65387 onereplyx=814
mthrx=5941 futilx=0 bmx=38
+ 8.66/20.91 91% 167/183 bf=2.15 h/p/q=32.63%/96.67%/0.00% 881.31 101805496
556314/5/115516 554785/286605/618236/3631931/12739704/349012/0/44629
*** Problem   Solution(s): Qe7+ (bm)
[D] 4kn2/r4p1r/p3bQ2/q1nNP1Np/1p5P/8/PPP3P1/2KR3R w - - bm Qe7+
*** Problem   Solution(s): Qe7+ (bm)
-- ** -- ** BK BN -- **
BR -- ** -- ** BP ** BR
BP ** -- ** BB WQ -- **
BQ -- BN WN WP -- WN BP
-- BP -- ** -- ** -- WP
** -- ** -- ** -- ** --
WP WP WP ** -- ** WP **
** -- WK WR ** -- ** WR
mv 1 stage 0, white to move, computer plays white
hash=bdb6504544205412
pawnhash=ae3005d23dca21c3
Alpha=1816 Beta=2617 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 4>Mf6e7  99993  0.00       61 f6e7 a7e7 d5f6
nps=30500 h/p/q=0.00%/81.00%/0.00% q=88.0% bc=54% br=0.00 mp=625/0/0/-1204
pawnx=0 recapx=0 qcheckx=0 checkx=4 qfutilx=11 onereplyx=1 mthrx=5941 futilx=0
bmx=0
+ 8.62/20.82 91% 168/184 bf=2.15 h/p/q=32.46%/96.58%/0.00% 881.32 101805560
553291/5/115516 554785/286605/624177/3631935/12739715/349013/0/44629
*** Problem   Solution(s): Qxh7+ (bm)
[D] 1r1rb1k1/2p3pp/p2q1p2/3PpP1Q/Pp1bP2N/1B5R/1P4PP/2B4K w - - bm Qxh7+
*** Problem   Solution(s): Qxh7+ (bm)
-- BR -- BR BB ** BK **
** -- BP -- ** -- BP BP
BP ** -- BQ -- BP -- **
** -- ** WP BP WP ** WQ
WP BP -- BB WP ** -- WN
** WB ** -- ** -- ** WR
-- WP -- ** -- ** WP WP
** -- WB -- ** -- ** WK
mv 1 stage 0, white to move, computer plays white
hash=2cf8c5d6a0c1203c
pawnhash=32410130ada16b7f
Alpha=-2593 Beta=-1792 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 3 h5e2 -2377  0.00       61 h5e2
 2/ 6 h5e2 -2305  0.01      255 h5e2 e8f7
 3/11 h5e2 -2271  0.01      759 h5e2 e8d7
 4/14>h5e2 -1870  0.03     1874 h5e2 e8f7 a4a5
 4/14 h5h7 -282  0.05     3730 h5h7 g8f8 h7h8 f8f7 a4a5
 5/14 h5h7 -276  0.07     6049 h5h7 g8f8 h7h8 f8f7 h3g3 g7g5
 6/19>h5h7 124  0.12     9625 h5h7 g8f8 h7h8 f8f7 h3g3 g7g5 f5g6
 6/19 h5h7 4914  0.31    28334 h5h7 g8f8 h7h8 f8e7 h8g7 e8f7 h4g6 e7d7 g7f7 d7c8
g2g4
 7/21<h5h7 4513  0.60    59415 h5h7 g8f8 h7h8 f8e7 h8g7 e8f7 h4g6 e7d7 g7f7 d7c8
f7e6 d8d7 h3h8 c8b7
 7/21 h5h7 1900  0.78    76506 h5h7 g8f8 h4g6 e8g6 f5g6 f8e8 h7g8 e8d7 g8g7 d6e7
 8/23>h5h7 2300  1.19   117528 h5h7 g8f8 h4g6 e8g6 f5g6 d8e8 h7h8 f8e7 h8g7 e7d8
h3h7 a6a5 g2g4
 8/24 h5h7 5313  1.48   146919 h5h7 g8f8 h7h8 f8e7 h8g7 e8f7 h4g6 e7d7 g7f7 d7c8
f7e6 c8b7 e6d6 d8d6 a4a5
 9/24 h5h7 5112  2.76   280875 h5h7 g8f8 h7h8 f8e7 h8g7 e8f7 h4g6 e7d7 g7f7 d7c8
f7e6 c8b7 e6d6 d8d6 h3g3 b8d8
10/27 h5h7 5300  5.72   604786 h5h7 g8f8 h7h8 f8e7 h8g7 e8f7 h4g6 e7d7 g7f7 d7c8
f7e7 d6b6 e7e6 c8b7 e6b6 d4b6
11/27 Th5h7  5604  6.01   635904 h5h7 g8f8 h7h8 f8e7 h8g7 e8f7 h4g6 e7d7 g7f7
d7c8 f7e6 d8d7 e6d6 c7d6 b3c4 a6a5 h3f3
nps=105878 h/p/q=34.00%/98.00%/0.00% q=70.0% bc=54% br=2.34
mp=3497/2992/-1247/-697
pawnx=8086 recapx=1844 qcheckx=0 checkx=31040 qfutilx=92833 onereplyx=4466
mthrx=6142 futilx=0 bmx=23
+ 8.63/20.85 91% 169/185 bf=2.15 h/p/q=32.46%/96.59%/0.00% 887.32 102441464
553738/5/115450 562871/288449/630319/3662975/12832548/353479/0/44652
*** Problem   Solution(s): Bf8+ (bm)
[D] r5r1/p1q2p1k/1p1R2pB/3pP3/6bQ/2p5/P1P1NPPP/6K1 w - - bm Bf8+
*** Problem   Solution(s): Bf8+ (bm)
BR ** -- ** -- ** BR **
BP -- BQ -- ** BP ** BK
-- BP -- WR -- ** BP WB
** -- ** BP WP -- ** --
-- ** -- ** -- ** BB WQ
** -- BP -- ** -- ** --
WP ** WP ** WN WP WP WP
** -- ** -- ** -- WK --
mv 1 stage 0, white to move, computer plays white
hash=10901d552fc65a54
pawnhash=69283a7e0d28ba67
Alpha=-1408 Beta=-607 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 5<h4g4 -1408  0.00      120 h4g4
 1/ 5 h4g4 -1408  0.00      124 h4g4
 2/ 6>h6d2 -1007  0.01      416 h6d2 h7g7 e2c3
 2/ 8 Mh6f8  99986  0.01      708 h6f8 g4h5 h4h5 g6h5 d6h6
nps=54462 h/p/q=41.00%/93.00%/0.00% q=86.0% bc=50% br=1.12 mp=670/1718/0/-289
pawnx=8 recapx=0 qcheckx=0 checkx=35 qfutilx=147 onereplyx=4 mthrx=6142 futilx=0
bmx=0
+ 8.60/20.78 91% 170/186 bf=2.14 h/p/q=32.51%/96.57%/0.00% 887.33 102442176
550764/5/115449 562879/288449/636461/3663010/12832695/353483/0/44652
*** Problem   Solution(s): Nh3+ (bm)
[D] 6k1/5p2/p3p3/1p3qp1/2p1Qn2/2P1R3/PP1r1PPP/4R1K1 b - - bm Nh3+
*** Problem   Solution(s): Nh3+ (bm)
-- ** -- ** -- ** BK **
** -- ** -- ** BP ** --
BP ** -- ** BP ** -- **
** BP ** -- ** BQ BP --
-- ** BP ** WQ BN -- **
** -- WP -- WR -- ** --
WP WP -- BR -- WP WP WP
** -- ** -- WR -- WK --
mv 1 stage 0, black to move, computer plays black
hash=e8e8a2410d434007
pawnhash=47a9a23b9def59fa
Alpha=-352 Beta=448 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 6<f5e4 -352  0.00       58 f5e4
 1/ 6 f5e4 -352  0.00       62 f5e4
 2/ 6>f5e4 48  0.00       88 f5e4 e3e4 d2b2
 2/ 9 f5e4 48  0.01      341 f5e4 e3e4 d2b2
 3/10>f5e4 448  0.02     1439 f5e4 e3e4 d2b2 a2a3
 3/10 f4h3 449  0.02     1618 f4h3 e3h3 f5e4 e1e4 d2d1
 4/10>f4h3 849  0.03     1747 f4h3 e3h3 f5e4 e1e4 d2d1
 4/11 f4h3 849  0.05     4456 f4h3 e3h3 f5e4 e1e4 d2d1 e4e1 d1e1
 5/12>f4h3 1249  0.06     4879 f4h3 e3h3 f5e4 h3d3 c4d3 e1e4
 5/12 f4h3 6360  0.09     8413 f4h3 e3h3 f5e4 g1f1 e4e1 f1e1 d2b2
 6/13<f4h3 5959  0.15    15787 f4h3 e3h3 f5e4 g1f1 e4b1 e1b1
 6/13 f4h3 5958  0.23    21595 f4h3 e3h3 f5e4 g1f1 e4b1 e1b1
 7/14 f4h3 5959  0.42    44348 f4h3 e3h3 f5e4 g1f1 e4b1 e1b1 d2b2
 8/19 f4h3 6356  0.87   100010 f4h3 e3h3 f5e4 e1a1 d2b2 h3e3 e4c2 g1h1
 9/23 f4h3 5957  1.89   246226 f4h3 e3h3 f5e4 h3e3 e4g6 b2b3 g5g4 g1h1
10/23 f4h3 6342  3.77   514424 f4h3 e3h3 f5e4 h3e3 e4g6 a2a4 b5a4 e3e2
11/23 Tf4h3  6686  6.02   804864 f4h3 e3h3 f5e4 h3e3 e4g6 e3g3 d2b2 a2a4 b5a4
mtmt
nps=133787 h/p/q=36.00%/97.00%/0.00% q=68.0% bc=49% br=2.03
mp=1512/26843596/-1675/-26738600
pawnx=5080 recapx=2716 qcheckx=0 checkx=25035 qfutilx=116598 onereplyx=5485
mthrx=6234 futilx=0 bmx=90
+ 8.61/20.79 91% 171/187 bf=2.14 h/p/q=32.53%/96.57%/0.00% 893.35 103247040
552123/5/115573 567959/291165/642695/3688045/12949293/358968/0/44742
*** Problem   Solution(s): Qg7+ (bm)
[D] 3RNbk1/pp3p2/4rQpp/8/1qr5/7P/P4P2/3R2K1 w - - bm Qg7+
*** Problem   Solution(s): Qg7+ (bm)
-- ** -- WR WN BB BK **
BP BP ** -- ** BP ** --
-- ** -- ** BR WQ BP BP
** -- ** -- ** -- ** --
-- BQ BR ** -- ** -- **
** -- ** -- ** -- ** WP
WP ** -- ** -- WP -- **
** -- ** WR ** -- WK --
mv 1 stage 0, white to move, computer plays white
hash=72b297175546ff5e
pawnhash=3ecba1f6c94165c
Alpha=-3655 Beta=-2854 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 3>f6e6 -2854  0.00       44 f6e6
 1/ 5 Mf6g7  99993  0.00      135 f6g7 f8g7 e8f6
nps=33750 h/p/q=37.00%/92.00%/0.00% q=90.0% bc=66% br=0.00 mp=0/515/0/-273
pawnx=0 recapx=0 qcheckx=0 checkx=8 qfutilx=25 onereplyx=1 mthrx=6234 futilx=0
bmx=0
+ 8.57/20.71 91% 172/188 bf=2.14 h/p/q=32.55%/96.55%/0.00% 893.35 103247176
549187/5/115573 567959/291165/648929/3688053/12949318/358969/0/44742
*** Problem   Solution(s): Re8+ (bm)
[D] 3r1k2/1ppPR1n1/p2p1rP1/3P3p/4Rp1N/5K2/P1P2P2/8 w - - bm Re8+
*** Problem   Solution(s): Re8+ (bm)
-- ** -- BR -- BK -- **
** BP BP WP WR -- BN --
BP ** -- BP -- BR WP **
** -- ** WP ** -- ** BP
-- ** -- ** WR BP -- WN
** -- ** -- ** WK ** --
WP ** WP ** -- WP -- **
** -- ** -- ** -- ** --
mv 1 stage 0, white to move, computer plays white
hash=d54c793ff5e907e2
pawnhash=89d6827481401647
Alpha=1701 Beta=2502 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 6 c2c3 2387  0.00       48 c2c3
 2/ 9 c2c4 2386  0.01      311 c2c4
 3/ 9 f3g2 2093  0.01     1008 f3g2 f8g8
 4/11>e4e1 2493  0.03     2917 e4e1 a6a5
 4/12 e7e8 5130  0.06     5377 e7e8 d8e8 e4e8 g7e8 d7d8Q c7c5
 5/14>e7e8 5530  0.06     5666 e7e8 d8e8 e4e8 g7e8 d7d8Q c7c5 d5c6 b7c6 d8f6
e8f6
 5/14 e7e8 5530  0.08     7910 e7e8 d8e8 e4e8 g7e8 d7d8Q c7c5 d5c6 b7c6 d8f6
e8f6
 6/15>e7e8 5930  0.09     8722 e7e8 d8e8 e4e8 g7e8 d7d8Q c7c5 d5c6 b7c6 d8f6
e8f6 f3f4
 6/15 e7e8 6738  0.15    17683 e7e8 g7e8 e4e8 f8g7 e8d8 f6f8 d8c8
 7/18<e7e8 6337  0.30    37173 e7e8 g7e8 e4e8 f8g7 e8d8 f6f8 d8c8 f8c8 d7c8N
 7/18 e7e8 6337  0.30    37435 e7e8 g7e8 e4e8 f8g7 e8d8 f6f8 d8c8 f8c8 d7c8N
 8/19 e7e8 6732  0.75    97250 e7e8 d8e8 e4e8 g7e8 d7d8Q b7b6 g6g7 f8g7 d8e8
f6h6
 9/22 e7e8 6731  1.32   175167 e7e8 d8e8 e4e8 g7e8 d7d8Q b7b5 g6g7 f8g7 d8e8
g7h6 f3e4
10/22>e7e8 7131  1.51   201838 e7e8 d8e8 e4e8 g7e8 d7d8Q b7b5 g6g7 f8g7 d8e8
g7h6 f3e4 b5b4 e8h5 h6h5
10/26 e7e8 7131  2.55   344722 e7e8 d8e8 e4e8 g7e8 d7d8Q b7b5 g6g7 f8g7 d8e8
g7h6 f3e4 b5b4 e8d8
11/28 Te7e8  7482  6.11   864256 e7e8 g7e8 e4e8 d8e8 g6g7 f8f7 d7e8Q f7e8 g7g8Q
f6f8 g8g6 e8d8 g6h5 mtmt
nps=141403 h/p/q=41.00%/98.00%/0.00% q=68.0% bc=59% br=2.44
mp=3595/804/-1287/-104416
pawnx=7714 recapx=2426 qcheckx=0 checkx=48269 qfutilx=110473 onereplyx=4055
mthrx=6258 futilx=0 bmx=244
+ 8.58/20.75 91% 173/189 bf=2.14 h/p/q=32.60%/96.56%/0.00% 899.47 104111432
550854/5/115748 575673/293591/655187/3736322/13059791/363024/0/44986
*** Problem   Solution(s): Bh3 (bm)
[D] 8/p2b2kp/1q1p2p1/1P1Pp3/4P3/3B2P1/P2Q3P/2Nn3K b - - bm Bh3
*** Problem   Solution(s): Bh3 (bm)
-- ** -- ** -- ** -- **
BP -- ** BB ** -- BK BP
-- BQ -- BP -- ** BP **
** WP ** WP BP -- ** --
-- ** -- ** WP ** -- **
** -- ** WB ** -- WP --
WP ** -- WQ -- ** -- WP
** -- WN BN ** -- ** WK
mv 1 stage 0, black to move, computer plays black
hash=48a43945bc02c13f
pawnhash=b79e3468189aae92
Alpha=-2114 Beta=-1313 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 3>d7b5 -1313  0.00        8 d7b5
 1/ 8 d1e3 -838  0.00       96 d1e3
 2/ 8 d1f2 -438  0.01      326 d1f2 h1g2 f2d3
 3/10 d1f2 -140  0.01      926 d1f2 h1g2 f2d3 c1d3 d7b5
 4/11 d1f2 -161  0.03     2630 d1f2 h1g2 f2d3 c1d3 d7b5 a2a3 b5d3 d2d3
 5/15 d1f2 -151  0.06     6299 d1f2 h1g2 f2d3 c1d3 d7b5 h2h3 b5d3 d2d3
 6/15 d1f2 -16  0.14    16405 d1f2 h1g2 f2d3 c1d3 d7b5 d3b4 b6c5
 7/15 d1f2 0  0.35    42500 d1f2 h1g2 d7h3 g2f3 h3g4 f3g2 g4h3 g2f3 h3g4 f3g2
g4h3 g2f3 h3g4 f3g2 g4h3
 8/20 d7g4 399  1.31   161866 d7g4 h1g2 d1e3 g2g1 e3d5 g1g2 d5e3 d2e3 b6e3
 9/21 d7g4 363  2.66   325780 d7g4 h1g2 d1e3 g2g1 e3d5 d2f2 d5c3 f2b6 a7b6 g1g2
g7f6
10/23 d7g4 352  5.23   649910 d7g4 h1g2 d1e3 g2g1 e3d5 d2f2 d5c3 f2b6 a7b6 g1f2
d6d5
11/25 Td7g4  751  6.01   741383 d7g4 h1g2 d1e3 g2g1 e3d5 d2f2 d5c3 f2b6 a7b6
g1g2 g4e6
nps=123399 h/p/q=37.00%/99.00%/0.00% q=70.0% bc=55% br=1.96
mp=1464/1652/-1366/-1329
pawnx=1225 recapx=2541 qcheckx=0 checkx=28955 qfutilx=81051 onereplyx=2464
mthrx=6258 futilx=0 bmx=50
- 8.59/20.77 91% 173/190 bf=2.14 h/p/q=32.62%/96.57%/0.00% 905.47 104852816
551857/5/115799 576898/296132/661445/3765277/13140842/365488/0/45036
*** Problem   Solution(s): Qc4 (bm)
[D] 2r1Rn1k/1p1q2pp/p7/5p2/3P4/1B4P1/P1P1QP1P/6K1 w - - bm Qc4
*** Problem   Solution(s): Qc4 (bm)
-- ** BR ** WR BN -- BK
** BP ** BQ ** -- BP BP
BP ** -- ** -- ** -- **
** -- ** -- ** BP ** --
-- ** -- WP -- ** -- **
** WB ** -- ** -- WP --
WP ** WP ** WQ WP -- WP
** -- ** -- ** -- WK --
mv 1 stage 0, white to move, computer plays white
hash=13d7278d331be3cb
pawnhash=888a3d34ed265ab2
Alpha=1701 Beta=2502 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 5 b3f7 2279  0.00      169 b3f7
 2/ 7 e8c8 2468  0.01      503 e8c8 d7c8 e2e7
 3/ 7 e8c8 2432  0.01     1057 e8c8 d7c8 e2e5
 4/ 8 e8c8 2282  0.03     3115 e8c8 d7c8 d4d5 b7b5
 5/10>e8c8 2682  0.07     6988 e8c8 d7c8 d4d5 f8d7 c2c4
 5/10 e2c4 9930  0.09     8662 e2c4 d7d5 e8c8
 6/11 e2c4 10323  0.14    14843 e2c4 d7f7 c4f7 c8c3
 7/11>e2c4 10723  0.15    15744 e2c4 d7f7 c4f7 c8e8 f7e8
 7/13 Me2c4  99984  0.21    23860 e2c4 d7f7 c4f7 c8e8 f7g8
nps=110977 h/p/q=46.00%/97.00%/0.00% q=79.0% bc=54% br=1.68 mp=331/35/-86/-257
pawnx=23 recapx=69 qcheckx=0 checkx=434 qfutilx=2132 onereplyx=162 mthrx=6258
futilx=0 bmx=0
+ 8.59/20.73 91% 174/191 bf=2.14 h/p/q=32.69%/96.57%/0.00% 905.69 104876672
549092/5/115798 576921/296201/667703/3765711/13142974/365650/0/45036
*** Problem   Solution(s): Nd3+ (bm)
[D] r3k3/ppp2Npp/4Bn2/2b5/1n1pp3/N4P2/PPP3qP/R2QKR2 b Qq - bm Nd3+
*** Problem   Solution(s): Nd3+ (bm)
BR ** -- ** BK ** -- **
BP BP BP -- ** WN BP BP
-- ** -- ** WB BN -- **
** -- BB -- ** -- ** --
-- BN -- BP BP ** -- **
WN -- ** -- ** WP ** --
WP WP WP ** -- ** BQ WP
WR -- ** WQ WK WR ** --
mv 1 stage 0, black to move, computer plays black
hash=3c3c1aca846aa2e5
pawnhash=3e222e04a05720d7
Alpha=-1980 Beta=-1179 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 3 e4f3 -1570  0.00       81 e4f3 f1f3 g2h2
 2/ 7>e4f3 -1169  0.01      478 e4f3 d1f3 g2h2
 2/ 7 b4d3 3266  0.01      765 b4d3 c2d3 c5b4 d1d2 g2d2
 3/10 b4d3 3131  0.03     2561 b4d3 d1d3 e4d3 f1f2
 4/10>b4d3 3531  0.04     2828 b4d3 d1d3 e4d3 f1f2 g2f2 e1f2
 4/13 b4d3 4607  0.09     7152 b4d3 d1d3 e4d3 b2b4
 5/13>b4d3 5007  0.11     9486 b4d3 d1d3 e4d3 b2b4 g2f2 e1f2 c5b4
 5/14 b4d3 5896  0.26    23346 b4d3 d1d3 e4d3 f1f2 g2h1 f2f1 h1h2
 6/16>b4d3 6296  0.37    31809 b4d3 d1d3 e4d3 f1f2 g2h1 f2f1 h1h2 c2d3
 6/19 b4d3 7745  1.00    91217 b4d3 d1d3 e4d3 e1c1 c5a3 d1d3 a3b2 c1b1 g2f1
 7/20 b4d3 8143  2.06   186810 b4d3 d1d3 e4d3 e1c1 c5a3 e6b3 d3c2 d1e1 a3e7
 8/22 b4d3 8542  4.17   393776 b4d3 d1d3 e4d3 e1c1 c5a3 e6b3 d3c2 f1e1 e8f8 d1d4
a8e8
 9/25 Tb4d3  8142  6.01   569344 b4d3 d1d3 e4d3 e1c1 c5a3 e6b3 a3e7 c2d3 g2h2
nps=94701 h/p/q=24.00%/97.00%/0.00% q=78.0% bc=62% br=2.29
mp=1380/2789/-1230/-1398
pawnx=11709 recapx=1408 qcheckx=0 checkx=22955 qfutilx=84284 onereplyx=1694
mthrx=6258 futilx=0 bmx=51
+ 8.59/20.75 91% 175/192 bf=2.14 h/p/q=32.65%/96.57%/0.00% 911.70 105446016
549198/5/115659 588630/297609/673961/3788666/13227258/367344/0/45087
*** Problem   Solution(s): Qxe3 (bm)
[D] 5bk1/p4ppp/Qp6/4B3/1P6/Pq2P1P1/2rr1P1P/R4RK1 b - - bm Qxe3
*** Problem   Solution(s): Qxe3 (bm)
-- ** -- ** -- BB BK **
BP -- ** -- ** BP BP BP
WQ BP -- ** -- ** -- **
** -- ** -- WB -- ** --
-- WP -- ** -- ** -- **
WP BQ ** -- WP -- WP --
-- ** BR BR -- WP -- WP
WR -- ** -- ** WR WK --
mv 1 stage 0, black to move, computer plays black
hash=ba4376b9c5f72032
pawnhash=f7e73283b3989292
Alpha=-1150 Beta=-349 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 4 b3d5 -510  0.00       92 b3d5
 2/ 6 b3e6 -534  0.01      271 b3e6
 3/ 9>b3e6 -133  0.01      727 b3e6 e5d4
 3/ 9 b3e3 -132  0.02     1110 b3e3 f2e3 d2g2 g1h1 g2h2
 4/10 b3e3 -456  0.04     3548 b3e3 a1e1 e3f3 a6a7
 5/13 b3e3 -399  0.09     8184 b3e3 e5f4 e3e2 a6a7
 6/16>b3e3 1  0.16    14160 b3e3 e5f4 e3e2 a6a7 f8b4 a3b4
 6/17 b3e3 2  0.34    31744 b3e3 e5f4 d2f2 f4e3 f2g2 g1h1 g2h2 h1g1 c2g2
 7/17>b3e3 402  0.50    41962 b3e3 e5f4 d2f2 a6a7 f2f1
 7/20 b3e3 3891  1.54   141165 b3e3 e5b8 d2f2 b8a7 f2f1
 8/25>b3e3 4291  2.01   180593 b3e3 e5b8 d2f2 b8a7 f2f1
 8/25 b3e3 5115  3.62   349637 b3e3 e5d4 e3d4 a6a7 d2f2 a1c1
 9/25>b3e3 5515  4.94   477581 b3e3 e5d4 e3d4 a6a7 d2f2 a1c1
 9/25 Tb3e3  6714  6.01   585736 b3e3 e5d4 e3d4 a1e1 d2f2 f1f2 d4f2
nps=97493 h/p/q=26.00%/98.00%/0.00% q=74.0% bc=60% br=2.53
mp=986/1535/-1204/-896
pawnx=43 recapx=3414 qcheckx=0 checkx=37387 qfutilx=125326 onereplyx=8296
mthrx=6286 futilx=0 bmx=26
+ 8.59/20.77 91% 176/193 bf=2.14 h/p/q=32.61%/96.58%/0.00% 917.71 106031752
549387/5/115540 588673/301023/680247/3826053/13352584/375640/0/45113
*** Problem   Solution(s): Nh6+ (bm)
[D] 5rk1/ppq2ppp/2p5/4bN2/4P3/6Q1/PPP2PPP/3R2K1 w - - bm Nh6+
*** Problem   Solution(s): Nh6+ (bm)
-- ** -- ** -- BR BK **
BP BP BQ -- ** BP BP BP
-- ** BP ** -- ** -- **
** -- ** -- BB WN ** --
-- ** -- ** WP ** -- **
** -- ** -- ** -- WQ --
WP WP WP ** -- WP WP WP
** -- ** WR ** -- WK --
mv 1 stage 0, white to move, computer plays white
hash=b8096b1d81d442b8
pawnhash=224dc53f4cc1cf99
Alpha=1486 Beta=2287 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 5 g3b3 1647  0.01      255 g3b3
 2/ 7 g3a3 1627  0.01      719 g3a3
 3/ 8<g3a3 1226  0.02     1784 g3a3 e5d4 f5d4
 3/ 8 g3e3 283  0.04     3008 g3e3 e5h2 g1f1
 4/11 g3h4 619  0.09     8767 g3h4 e5b2 h4h5
 5/14>g3h3 1019  0.23    23871 g3h3 e5b2 d1d6
 5/14 f5h6 1020  0.24    25301 f5h6 g8h8 g3e5 c7e5 h6f7 f8f7 d1d8 e5e8 d8e8
 6/14>f5h6 1420  0.25    25990 f5h6 g8h8 g3e5 c7e5 h6f7 f8f7 d1d8 e5e8 d8e8
 6/14 f5h6 4714  0.33    35495 f5h6 g8h8 g3e5 c7e5 h6f7 f8f7 d1d8 e5e8 d8e8 f7f8
e8f8
 7/15>f5h6 5114  0.34    37019 f5h6 g8h8 g3e5 c7e5 h6f7 h8g8 f7e5 f8f2 mtmt
 7/16 f5h6 6332  0.53    59753 f5h6 g8h8 g3e5 c7e5 h6f7 h8g8 f7e5 f8f2 mtmt
 8/18<f5h6 5931  0.98   121412 f5h6 g8h8 g3e5 c7c8 h6f5 f8g8 f2f4 mtmt
 8/18 f5h6 5931  1.00   123143 f5h6 g8h8 g3e5 c7c8 h6f5 f8g8 f2f4 mtmt
 9/20 f5h6 6329  1.78   233305 f5h6 g8h8 g3e5 c7e5 h6f7 h8g8 f7e5 f8e8 f2f4 e8e5
g1h1 mtmt
10/25 f5h6 6657  4.57   594514 f5h6 g8h8 g3e5 c7c8 h6f5 f8g8 f5h6 g8f8 h6f5 f8g8
f5h6 g8f8 h6f5 f8g8 f5h6 g8f8
11/25<Tf5h6  6256  6.00   799744 f5h6 g8h8 g3e5 c7c8 h6f5 f8g8 f5h6 c8e8 e5e8
g7h6 e8f7
nps=133268 h/p/q=43.00%/97.00%/0.00% q=68.0% bc=52% br=1.96
mp=1473/26843596/-928/-26738600
pawnx=235 recapx=1109 qcheckx=0 checkx=19924 qfutilx=85869 onereplyx=4547
mthrx=6417 futilx=0 bmx=26
+ 8.60/20.79 91% 177/194 bf=2.14 h/p/q=32.66%/96.58%/0.00% 923.71 106831496
550678/5/115655 588908/302132/686664/3845977/13438453/380187/0/45139
*** Problem   Solution(s): g3 (bm)
[D] 3r1rk1/1p3p2/p3pnnp/2p3p1/2P2q2/1P5P/PB2QPPN/3RR1K1 w - - bm g3
*** Problem   Solution(s): g3 (bm)
-- ** -- BR -- BR BK **
** BP ** -- ** BP ** --
BP ** -- ** BP BN BN BP
** -- BP -- ** -- BP --
-- ** WP ** -- BQ -- **
** WP ** -- ** -- ** WP
WP WB -- ** WQ WP WP WN
** -- ** WR WR -- WK --
mv 1 stage 0, white to move, computer plays white
hash=71cfc925437b383f
pawnhash=f1a554706f88f79f
Alpha=-1860 Beta=-1059 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 7 h2f3 -1116  0.00      103 h2f3
 2/ 7 g1h1 -1196  0.01      492 g1h1
 3/ 9 g2g3 -1268  0.03     2411 g2g3 f4f5
 4/10 h2f3 -1364  0.10     7988 h2f3 g8h7
 5/11 b2f6 -1129  0.22    19396 b2f6 f4f6 h2g4 f6g7 e2f3
 6/12>b2f6 -728  0.43    39037 b2f6 f4f6 h2g4 f6g7 e2e4 h6h5
 6/13 g2g3 -284  0.68    61158 g2g3 f4f5 h2g4 f6e4 g4h6
 7/14>g2g3 116  0.94    83249 g2g3 f4f5 h2g4 f6e4 g4h6
 7/15 g2g3 1490  1.45   130216 g2g3 f4f5 h2g4 f6g4 h3g4 g6f4 g3f4 f5f4 d1d8 f8d8
 8/17 g2g3 1855  2.58   239590 g2g3 f4f5 h2g4 f6g4 h3g4 g6f4 g3f4 f5f4 e1f1
 9/18 g2g3 2018  4.91   466584 g2g3 f4f5 h2g4 f6g4 h3g4 g6f4 g3f4 f5f4 d1d8 f8d8
e1d1
10/21>Tg2g3  2418  6.01   577536 g2g3 f4f5 h2g4 f6g4 h3g4 g6f4 g3f4 f5f4 d1d8
f8d8 e2e4
nps=96064 h/p/q=39.00%/98.00%/0.00% q=79.0% bc=58% br=2.18
mp=1711/2645/-1614/-1245
pawnx=144 recapx=2079 qcheckx=0 checkx=7363 qfutilx=62481 onereplyx=632
mthrx=6417 futilx=0 bmx=0
+ 8.61/20.79 91% 178/195 bf=2.14 h/p/q=32.70%/96.59%/0.00% 929.72 107409032
550816/5/115528 589052/304211/693081/3853340/13500934/380819/0/45139
*** Problem   Solution(s): Nb4 (bm)
[D] rr4k1/p1pq2pp/Q1n1pn2/2bpp3/4P3/2PP1NN1/PP3PPP/R1B1K2R b KQ - bm Nb4
*** Problem   Solution(s): Nb4 (bm)
BR BR -- ** -- ** BK **
BP -- BP BQ ** -- BP BP
WQ ** BN ** BP BN -- **
** -- BB BP BP -- ** --
-- ** -- ** WP ** -- **
** -- WP WP ** WN WN --
WP WP -- ** -- WP WP WP
WR -- WB -- WK -- ** WR
mv 1 stage 0, black to move, computer plays black
hash=b04b5bfcefc96a3e
pawnhash=78bd2486ddb4193e
Alpha=-946 Beta=-145 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 3>d5e4 -145  0.00       22 d5e4
 1/ 3 f6g4 -80  0.00       89 f6g4
 2/ 5 b8f8 -140  0.01      281 b8f8
 3/ 9>b8f8 260  0.01      730 b8f8 e4d5 e6d5 f3e5
 3/ 9 d5e4 261  0.02     1561 d5e4 g3e4 f6e4 d3e4 mtmt
 4/11 d5e4 509  0.05     3823 d5e4 g3e4 f6e4 d3e4 b8f8
 5/12<d5e4 108  0.12    10259 d5e4 g3e4 f6e4 d3e4 b8f8 f3e5
 5/14 b8b6 88  0.29    24463 b8b6 a6a4 d7d8
 6/15 b8b6 -272  1.00    83220 b8b6 a6a4 d5e4 g3e4 c5e7 e4f6 e7f6 e1g1
 7/16>b8b6 128  1.81   142301 b8b6 a6a4 d7d8 e1g1 a8b8 e4d5 e6d5
 7/16 d5e4 129  2.33   176661 d5e4 g3e4 f6e4 d3e4 b8b6 f3e5 c6e5 e1g1 mtmt
 8/19 Td5e4  111  6.02   414720 d5e4 g3e4 f6e4 d3e4 g8h8 e1g1 b8f8
nps=68867 h/p/q=30.00%/97.00%/0.00% q=79.0% bc=54% br=3.20
mp=920/2292/-2109/-1430
pawnx=661 recapx=1340 qcheckx=0 checkx=7159 qfutilx=86595 onereplyx=183
mthrx=6417 futilx=0 bmx=0
- 8.61/20.79 90% 178/196 bf=2.15 h/p/q=32.68%/96.59%/0.00% 935.74 107823752
550121/5/115228 589713/305551/699498/3860499/13587529/381002/0/45139
*** Problem   Solution(s): Qf1+ (bm)
[D] 7k/1p4p1/7p/3P1n2/4Q3/2P2P2/PP3qRP/7K b - - bm Qf1+
*** Problem   Solution(s): Qf1+ (bm)
-- ** -- ** -- ** -- BK
** BP ** -- ** -- BP --
-- ** -- ** -- ** -- BP
** -- ** WP ** BN ** --
-- ** -- ** WQ ** -- **
** -- WP -- ** WP ** --
WP WP -- ** -- BQ WR WP
** -- ** -- ** -- ** WK
mv 1 stage 0, black to move, computer plays black
hash=494f7dd7815975b1
pawnhash=55b1aaf24c251734
Alpha=-8574 Beta=-7773 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 5>f2b2 -7773  0.00       23 f2b2
 1/ 5 f2f1 -6122  0.00       74 f2f1 g2g1 f1g1 h1g1
 2/ 8>f2f1 -5721  0.01      223 f2f1 g2g1 f1g1 h1g1 g7g6
 2/ 8 f2f1 -5720  0.01      468 f2f1 g2g1 f1g1 h1g1 g7g6
 3/ 8>Mf2f1  99984  0.01      476 f2f1 g2g1 f5g3 h2g3 f1h3
nps=39667 h/p/q=47.00%/90.00%/0.00% q=73.0% bc=46% br=1.02 mp=0/0/-164/-54
pawnx=0 recapx=0 qcheckx=0 checkx=47 qfutilx=23 onereplyx=15 mthrx=6417 futilx=0
bmx=0
+ 8.58/20.72 90% 179/197 bf=2.14 h/p/q=32.76%/96.56%/0.00% 935.76 107824224
547331/5/115227 589713/305551/705915/3860546/13587552/381017/0/45139
*** Problem   Solution(s): Rd3 (bm)
[D] 2br2k1/ppp2p1p/4p1p1/4P2q/2P1Bn2/2Q5/PP3P1P/4R1RK b - - bm Rd3
*** Problem   Solution(s): Rd3 (bm)
-- ** BB BR -- ** BK **
BP BP BP -- ** BP ** BP
-- ** -- ** BP ** BP **
** -- ** -- WP -- ** BQ
-- ** WP ** WB BN -- **
** -- WQ -- ** -- ** --
WP WP -- ** -- WP -- WP
** -- ** -- WR -- WR WK
mv 1 stage 0, black to move, computer plays black
hash=901250eb33d0028b
pawnhash=7470919f346643cf
Alpha=-1561 Beta=-760 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 4 f4e2 -1077  0.00       96 f4e2
 2/ 6>f4e2 -676  0.01      258 f4e2 e1e2
 2/ 7 f4e2 19  0.01      573 f4e2 e4f3 e2c3 f3h5 c3a2
 3/ 7<f4e2 -381  0.02     1041 f4e2 e4f3 e2c3 f3h5 c3a2
 3/ 7 f4e2 -381  0.03     1253 f4e2 e4f3 e2c3 f3h5 c3a2
 4/ 9>f4e2 19  0.04     1730 f4e2 e4f3 e2c3 f3h5 c3a2
 4/ 9 f4e2 19  0.06     3260 f4e2 e4f3 e2c3 f3h5 c3a2
 5/11 f4e2 19  0.13     8478 f4e2 e4f3 e2c3 f3h5 c3a2
 6/12 d8d3 320  0.35    25576 d8d3 g1g5 d3c3 g5h5 c3c4
 7/14>d8d3 720  0.50    37681 d8d3 g1g5 d3c3 g5h5 c3c4 h5g5
 7/17 d8d3 3442  0.79    61313 d8d3 c3d3 f4d3 e4d3 h5f3 g1g2 f3d3 g2g6 g8h8
 8/17>d8d3 3842  1.08    83237 d8d3 c3d3 f4d3 e4d3 h5f3 g1g2 f3d3 g2g6 g8h8 g6f6
 8/17 d8d3 3842  1.26   100212 d8d3 c3d3 f4d3 e4d3 h5f3 g1g2 f3d3 g2g6 g8h8 g6f6
 9/19>d8d3 4242  2.04   159687 d8d3 c3d3 f4d3 e4d3 h5f3 g1g2 f3d3 g2g6 g8h8 g6g4
c8d7
 9/19 d8d3 4243  2.81   224930 d8d3 c3d3 f4d3 e4d3 h5f3 g1g2 f3d3 g2g6 g8h8 g6g4
c8d7
10/22>d8d3 4643  5.39   415884 d8d3 c3d3 f4d3 e4d3 h5f3 g1g2 f3d3 g2g6 h7g6 c4c5
c8d7
10/22 Td8d3  4647  6.03   469003 d8d3 c3d3 f4d3 e4d3 h5f3 g1g2 f3d3 g2g6 h7g6
c4c5
nps=77791 h/p/q=39.00%/97.00%/0.00% q=73.0% bc=52% br=2.01
mp=1150/858/-1202/-1409
pawnx=249 recapx=458 qcheckx=0 checkx=11731 qfutilx=70248 onereplyx=2719
mthrx=6417 futilx=0 bmx=21
+ 8.59/20.73 90% 180/198 bf=2.14 h/p/q=32.79%/96.56%/0.00% 941.79 108293224
546936/5/114987 589962/306009/712332/3872277/13657800/383736/0/45160
*** Problem   Solution(s): Bxc6 Rcd1 Rfd1 (bm)
[D] r1br2k1/pp2nppp/2n5/1B1q4/Q7/4BN2/PP3PPP/2R2RK1 w - - bm Bxc6 Rcd1 Rfd1
*** Problem   Solution(s): Bxc6 Rcd1 Rfd1 (bm)
BR ** BB BR -- ** BK **
BP BP ** -- BN BP BP BP
-- ** BN ** -- ** -- **
** WB ** BQ ** -- ** --
WQ ** -- ** -- ** -- **
** -- ** -- WB WN ** --
WP WP -- ** -- WP WP WP
** -- WR -- ** WR WK --
mv 1 stage 0, white to move, computer plays white
hash=33e9476505c562ed
pawnhash=6a4375fd36f785c9
Alpha=1 Beta=802 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 5 f3g5 500  0.00       84 f3g5
 2/ 8 b5c6 472  0.01      526 b5c6 e7c6 f3g5
 3/ 9>b5c6 872  0.03     1428 b5c6 e7c6 f1d1
 3/ 9 f1d1 2078  0.05     2581 f1d1 d5f5 d1d8 c6d8 e3a7
 4/10 c1d1 1977  0.10     5087 c1d1 d5e6 b5c6 e7c6 d1d8 c6d8 e3a7
 5/13<c1d1 1576  0.20    11259 c1d1 d5e6 b5c6 e7c6 d1d8 c6d8 e3a7 a8a7
 5/13 f1d1 785  0.43    22066 f1d1 d5f5 d1d8 c6d8 c1c7
 6/15>f1d1 1185  0.72    40540 f1d1 d5f5 d1d8 c6d8 f3h4 f5b5 a4b5
 6/16 f1d1 4685  1.15    67686 f1d1 d5h5 b5c6 d8f8 f3d4
 7/17 f1d1 4687  2.01   124258 f1d1 d5f5 b5c6 d8f8 c6e8
 8/22 f1d1 4687  4.72   312347 f1d1 d5f5 b5c6 d8f8 c6d7 c8d7 d1d7 b7b5
 9/22 Tf1d1  4683  6.01   403456 f1d1 d5f5 b5c6 d8f8 c6d7 c8d7 a4d7 f5e4 c1c7
nps=67175 h/p/q=31.00%/99.00%/0.00% q=80.0% bc=46% br=2.65
mp=1101/704/-1363/-1129
pawnx=4 recapx=2314 qcheckx=0 checkx=4515 qfutilx=71603 onereplyx=990 mthrx=6454
futilx=0 bmx=78
- 8.59/20.73 90% 180/199 bf=2.14 h/p/q=32.78%/96.57%/0.00% 947.79 108696680
546214/5/114684 589966/308323/718786/3876792/13729403/384726/0/45238
*** Problem   Solution(s): Bxf6 (bm)
[D] 2rqrn1k/pb4pp/1p2pp2/n2P4/2P3N1/P2B2Q1/1B3PPP/2R1R1K1 w - - bm Bxf6
*** Problem   Solution(s): Bxf6 (bm)
-- ** BR BQ BR BN -- BK
BP BB ** -- ** -- BP BP
-- BP -- ** BP BP -- **
BN -- ** WP ** -- ** --
-- ** WP ** -- ** WN **
WP -- ** WB ** -- WQ --
-- WB -- ** -- WP WP WP
** -- WR -- WR -- WK --
mv 1 stage 0, white to move, computer plays white
hash=3b8c891e21c71ac1
pawnhash=489bc11011145b21
Alpha=-339 Beta=461 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 3>d5e6 461  0.00        2 d5e6
 1/ 3 d5d6 770  0.00       64 d5d6
 2/ 4<d5d6 369  0.02      200 d5d6 a5c4
 2/ 4 d5d6 316  0.02      362 d5d6 f8d7
 3/12 d5d6 388  0.04     1395 d5d6 f8d7 g3h3
 4/13 d5e6 -11  0.19     9488 d5e6 f8e6 g3h3 a5c4 d3c4
 5/15 d5e6 325  0.35    18805 d5e6 f8e6 g3h3 e6f8 e1e3
 6/16<d5e6 -75  1.76   105799 d5e6 f8e6 g3h3 e6g5 e1e8 d8e8 h3e3
 6/16 d5e6 -75  1.84   110706 d5e6 e8e6 e1e6 f8e6 g3h3 h7h6 h3e3
 7/18>Tb2c3  325  6.02   359466 b2c3 a5b3 c1b1 b3c5 g3h3
nps=59702 h/p/q=23.00%/97.00%/0.00% q=84.0% bc=62% br=3.79
mp=3073/1597/-1716/-1732
pawnx=1388 recapx=1595 qcheckx=0 checkx=3991 qfutilx=150137 onereplyx=999
mthrx=6454 futilx=0 bmx=0
- 8.58/20.72 90% 180/200 bf=2.15 h/p/q=32.73%/96.57%/0.00% 953.81 109056144
545281/5/114337 591354/309918/725240/3880783/13879540/385725/0/45238
*** Problem   Solution(s): Ra7 (bm)
[D] 2b2r1k/4q2p/3p2pQ/2pBp3/8/6P1/1PP2P1P/R5K1 w - - bm Ra7
*** Problem   Solution(s): Ra7 (bm)
-- ** BB ** -- BR -- BK
** -- ** -- BQ -- ** BP
-- ** -- BP -- ** BP WQ
** -- BP WB BP -- ** --
-- ** -- ** -- ** -- **
** -- ** -- ** -- WP --
-- WP WP ** -- WP -- WP
WR -- ** -- ** -- WK --
mv 1 stage 0, white to move, computer plays white
hash=6e1ed88254d010c0
pawnhash=5f028f1a9c12e97e
Alpha=-360 Beta=440 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 4>h6f8 440  0.01       48 h6f8 e7f8 g1g2
 1/ 4 a1a4 652  0.01      106 a1a4
 2/ 5 a1a3 616  0.01      299 a1a3
 3/ 6<a1a3 215  0.02     1014 a1a3 c8f5 h6d2
 3/ 6 a1a7 162  0.03     1789 a1a7 c8d7
 4/ 7>a1a7 562  0.03     2121 a1a7 c8d7 h6d2 e5e4
 4/ 8 a1a7 5114  0.05     3229 a1a7 f8f7 a7e7
 5/ 9<a1a7 4713  0.06     4664 a1a7 c8d7 a7d7 e7d7
 5/ 9 a1a7 4712  0.08     6438 a1a7 f8e8 a7e7 c8d7
 6/ 9>a1a7 5112  0.09     7499 a1a7 f8e8 a7e7 c8d7 e7d7 e5e4
 6/13 a1a7 5112  0.21    17417 a1a7 f8f2 a7e7 f2f1 g1f1 c5c4
 7/13>a1a7 5512  0.24    20327 a1a7 f8f2 a7e7 f2f1 g1f1 c5c4 d5c4 c8d7
 7/13 a1a7 5512  0.36    32721 a1a7 f8f2 a7e7 f2f1 g1f1 c5c4 d5c4 c8d7
 8/13>a1a7 5912  0.43    37535 a1a7 f8f2 a7e7 f2f1 g1f1 c5c4 d5c4 c8d7 e7d7
 8/14 a1a7 5912  0.67    64155 a1a7 f8f2 a7e7 f2f1 g1f1 c5c4 d5c4 c8d7 e7d7
 9/15>a1a7 6312  0.80    75724 a1a7 f8f2 a7e7 f2f1 g1f1 c5c4 d5c4 e5e4 mtmt
 9/22 a1a7 10745  1.93   198643 a1a7 c8b7 a7b7 e7d7 g1f1 f8d8
10/23<a1a7 10344  3.38   336622 a1a7 c8b7 a7b7 e7d7 g1f1 f8d8
10/25 a1a7 10342  4.80   473410 a1a7 c8d7 a7d7 f8f7 d5f7 g6g5 d7e7 e5e4
11/26 Ta1a7  10343  6.03   593920 a1a7 c8b7 a7b7 f8a8 b7e7 a8a1 g1g2 e5e4 mtmt
nps=98494 h/p/q=42.00%/99.00%/0.00% q=68.0% bc=43% br=2.28
mp=1705/2595/-1113/-880
pawnx=355 recapx=578 qcheckx=0 checkx=19845 qfutilx=75279 onereplyx=4261
mthrx=6713 futilx=0 bmx=393
+ 8.59/20.75 90% 181/201 bf=2.15 h/p/q=32.78%/96.59%/0.00% 959.84 109650064
545523/5/114238 591709/310496/731953/3900628/13954819/389986/0/45631
*** Problem   Solution(s): Rxa2 (bm)
[D] QR2rq1k/2p3p1/3p1pPp/8/4P3/8/P1r3PP/1R4K1 b - - bm Rxa2
*** Problem   Solution(s): Rxa2 (bm)
WQ WR -- ** BR BQ -- BK
** -- BP -- ** -- BP --
-- ** -- BP -- BP WP BP
** -- ** -- ** -- ** --
-- ** -- ** WP ** -- **
** -- ** -- ** -- ** --
WP ** BR ** -- ** WP WP
** WR ** -- ** -- WK --
mv 1 stage 0, black to move, computer plays black
hash=4463866d976fff64
pawnhash=94e3261349e84c44
Alpha=98 Beta=899 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 4>e8b8 899  0.00       18 e8b8 b1b8
 1/ 5 c2a2 1692  0.00       65 c2a2
 2/ 6 c2a2 1533  0.01      328 c2a2 a8d5 e8b8 b1b8
 3/ 8 c2a2 1768  0.02      819 c2a2 a8a2 e8b8
 4/10<c2a2 1367  0.03     1727 c2a2 a8a2 e8b8 b1f1
 4/10 c2a2 1366  0.04     2904 c2a2 b8e8 a2a8 e8f8 a8f8 mtmt
 5/13 c2a2 1137  0.08     5452 c2a2 b8e8 a2a8 e8f8 a8f8 b1b7
 6/13 c2a2 1536  0.16    11545 c2a2 a8a2 e8b8 b1b8 f8b8 g1f2 mtmt
 7/14 c2a2 1527  0.34    27148 c2a2 b8e8 a2a8 e8f8 a8f8 b1b7 c7c6 b7a7
 8/16 c2a2 1338  0.60    49151 c2a2 b8e8 a2a8 e8f8 a8f8 b1b7 f6f5 b7c7 f5e4
 9/17 c2a2 1736  1.24   105601 c2a2 a8a2 e8b8 b1e1 c7c6 a2c4 f8e8 e1a1
10/21 c2a2 1636  4.19   302417 c2a2 b8e8 a2a8 e8f8 a8f8 g1f2 mtmt
11/23 Tc2a2  1512  6.04   446464 c2a2 b8e8 a2a8 e8f8 a8f8 g1f2 c7c5 b1d1 f6f5
f2e3 f5e4 d1d6
nps=73967 h/p/q=40.00%/98.00%/0.00% q=68.0% bc=52% br=1.94
mp=2539/26843596/-1078/-26738637
pawnx=902 recapx=2066 qcheckx=0 checkx=12032 qfutilx=49605 onereplyx=1827
mthrx=7151 futilx=0 bmx=128
+ 8.60/20.76 90% 182/202 bf=2.15 h/p/q=32.81%/96.59%/0.00% 965.88 110096528
545032/5/113986 592611/312562/739104/3912660/14004424/391813/0/45759
*** Problem   Solution(s): Qh6 (bm)
[D] r4rk1/5ppp/p3q1n1/2p2NQ1/4n3/P3P3/1B3PPP/1R3RK1 w - - bm Qh6
*** Problem   Solution(s): Qh6 (bm)
BR ** -- ** -- BR BK **
** -- ** -- ** BP BP BP
BP ** -- ** BQ ** BN **
** -- BP -- ** WN WQ --
-- ** -- ** BN ** -- **
WP -- ** -- WP -- ** --
-- WB -- ** -- WP WP WP
** WR ** -- ** WR WK --
mv 1 stage 0, white to move, computer plays white
hash=3ea1c17a88f73de5
pawnhash=e383882eeeda0a7c
Alpha=-549 Beta=251 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 4 g5h5 -451  0.00      130 g5h5
 2/ 4 g5h5 -194  0.01      357 g5h5 f7f6
 3/10 g5h5 -68  0.03     1105 g5h5 f7f6 f2f4
 4/10>g5h5 332  0.07     3202 g5h5 f7f6 f2f3
 4/10 g5h6 1799  0.09     4198 g5h6 g6e5 h6g7
 5/10 g5h6 2000  0.13     6627 g5h6 e6f6 b2f6 g7h6 f5h6
 6/10>g5h6 2400  0.14     7056 g5h6 e6f6 b2f6 g7f6 mtmt
 6/10 g5h6 12280  0.25    13558 g5h6 e6e5 b2e5 c5c4
 7/14>g5h6 12680  0.28    14615 g5h6 e6e5 b2e5 g6f4 h6f4 e4f2
 7/14 Mg5h6  99984  0.33    18397 g5h6 e6e5 b2e5 g6f4 h6g7
nps=55748 h/p/q=41.00%/97.00%/0.00% q=76.0% bc=58% br=1.86 mp=689/714/0/-407
pawnx=0 recapx=14 qcheckx=0 checkx=431 qfutilx=3735 onereplyx=35 mthrx=7151
futilx=0 bmx=0
+ 8.60/20.72 90% 183/203 bf=2.15 h/p/q=32.85%/96.60%/0.00% 966.21 110114928
542438/5/113966 592611/312576/746255/3913091/14008159/391848/0/45759
*** Problem   Solution(s): Rxe5 (bm)
[D] r1b1qrk1/1p3ppp/p1p5/3Nb3/5N2/P7/1P4PQ/K1R1R3 w - - bm Rxe5
*** Problem   Solution(s): Rxe5 (bm)
BR ** BB ** BQ BR BK **
** BP ** -- ** BP BP BP
BP ** BP ** -- ** -- **
** -- ** WN BB -- ** --
-- ** -- ** -- WN -- **
WP -- ** -- ** -- ** --
-- WP -- ** -- ** WP WQ
WK -- WR -- WR -- ** --
mv 1 stage 0, white to move, computer plays white
hash=59709262fcdd78fc
pawnhash=fcf235b78b3d080f
Alpha=-4074 Beta=-3273 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 7 d5b4 -3280  0.01      191 d5b4
 2/ 7 d5b6 -3284  0.02      575 d5b6
 3/10 h2h5 -3673  0.04     1862 h2h5 f7f5
 4/14 d5b6 -3742  0.14     7765 d5b6 a8a7
 5/16 d5b6 -3418  0.32    16683 d5b6 a8a7 b6c8 e5f4 h2h3
 6/17 d5c7 -3385  1.05    64657 d5c7 e5c7 e1e8 f8e8 c1d1
 7/17>d5c7 -2984  1.24    77544 d5c7 e5c7 e1e8 f8e8 c1d1 c7f4 h2f4 f7f5
 7/19 e1e5 -2983  1.85   121705 e1e5 e8e5 f4g6 e5d5 g6e7 g8h8 h2h7 h8h7 c1h1
c8h3 h1h3
 8/19>e1e5 -2582  1.96   129308 e1e5 e8e5 f4g6 e5d5 g6e7 g8h8 h2h7 h8h7 c1h1
c8h3 h1h3
 8/21 e1e5 -2582  3.45   238784 e1e5 e8e5 f4g6 e5d5 g6e7 g8h8 h2h7 h8h7 c1h1
c8h3 h1h3 d5h5 h3h5
 9/21>e1e5 -2181  3.93   268704 e1e5 e8e5 f4g6 c6d5 g6e5 a8a7 h2h7
 9/23 Te1e5  -1700  6.01   424960 e1e5 e8e5 f4g6 h7g6 h2e5 c6d5 e5d5 a6a5
nps=70650 h/p/q=36.00%/99.00%/0.00% q=70.0% bc=50% br=2.21
mp=1396/1093/-1492/-26738637
pawnx=5 recapx=326 qcheckx=0 checkx=13269 qfutilx=69160 onereplyx=3333
mthrx=7172 futilx=0 bmx=138
+ 8.60/20.74 90% 184/204 bf=2.15 h/p/q=32.87%/96.61%/0.00% 972.22 110539888
541862/5/113698 592616/312902/753427/3926360/14077319/395181/0/45897
*** Problem   Solution(s): Qxg5 (bm)
[D] r3rnk1/1pq2bb1/p4p2/3p1Pp1/3B2P1/1NP4R/P1PQB3/2K4R w - - bm Qxg5
*** Problem   Solution(s): Qxg5 (bm)
BR ** -- ** BR BN BK **
** BP BQ -- ** BB BB --
BP ** -- ** -- BP -- **
** -- ** BP ** WP BP --
-- ** -- WB -- ** WP **
** WN WP -- ** -- ** WR
WP ** WP WQ WB ** -- **
** -- WK -- ** -- ** WR
mv 1 stage 0, white to move, computer plays white
hash=46080d7bb68cf59b
pawnhash=5c1e42c3d60f6e57
Alpha=-1135 Beta=-334 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 3>d4f6 -334  0.00       10 d4f6
 1/ 5 d2d1 863  0.01      114 d2d1
 2/ 7 c1b2 713  0.01      343 c1b2
 3/ 8>c1b2 1113  0.03      839 c1b2 e8e5 d4e5
 3/10 d2g5 1455  0.04     1804 d2g5 f8h7
 4/13<d2g5 1054  0.10     4789 d2g5 f8h7 d4e5 f6g5
 4/13 d2g5 858  0.17     8670 d2g5 f8h7 g5d2
 5/13>d2g5 1258  0.23    11554 d2g5 f8h7 g5d2 h7g5 h3h4
 5/15 d2g5 3254  0.35    19005 d2g5 f8g6 d4f6 e8e2 f5g6
 6/15>d2g5 3654  0.44    23225 d2g5 f8g6 d4f6 e8e2 f5g6 g7f6
 6/18 d2g5 3817  1.08    59101 d2g5 f7h5 d4f6 e8e2 f6g7
 7/18>d2g5 4217  1.42    75263 d2g5 f7h5 d4f6 e8e2 f6g7 f8h7
 7/18 d2g5 4423  2.23   123215 d2g5 f7h5 d4f6 e8e2 g4h5 a8e8 f6g7 c7g7 g5g7 g8g7
 8/21 d2g5 4636  4.19   239201 d2g5 f7h5 d4f6 e8e2 g4h5 a8e8 f6g7 c7g7 g5g7 g8g7
h3g3 g7f6
 9/22>Td2g5  5036  6.01   327680 d2g5 f7h5 d4f6 e8e2 g4h5 f8h7 g5g7 c7g7 f6g7
nps=54486 h/p/q=38.00%/99.00%/0.00% q=78.0% bc=57% br=2.44
mp=2261/737/-1213/-1865
pawnx=1986 recapx=769 qcheckx=0 checkx=9569 qfutilx=66687 onereplyx=1300
mthrx=7174 futilx=0 bmx=0
+ 8.60/20.74 90% 185/205 bf=2.15 h/p/q=32.89%/96.62%/0.00% 978.24 110867568
540817/5/113334 594602/313671/760601/3935929/14144006/396481/0/45897
*** Problem   Solution(s): Rc6 (bm)
[D] 1Qq5/2P1p1kp/3r1pp1/8/8/7P/p4PP1/2R3K1 b - - bm Rc6
*** Problem   Solution(s): Rc6 (bm)
-- WQ BQ ** -- ** -- **
** -- WP -- BP -- BK BP
-- ** -- BR -- BP BP **
** -- ** -- ** -- ** --
-- ** -- ** -- ** -- **
** -- ** -- ** -- ** WP
BP ** -- ** -- WP WP **
** -- WR -- ** -- WK --
mv 1 stage 0, black to move, computer plays black
hash=268dfc7ec3355859
pawnhash=df37aed39f2d8344
Alpha=1140 Beta=1941 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 6<c8b8 1140  0.01      318 c8b8
 1/ 6 a2a1Q -905  0.02      813 a2a1Q c1a1
 2/ 6 a2a1Q -905  0.02     1263 a2a1Q c1a1
 3/ 8<a2a1Q -1305  0.04     2068 a2a1Q c1a1 c8b8
 3/ 8 d6c6 -4305  0.06     3386 d6c6 b8c8
 4/ 9>d6c6 -3904  0.08     4306 d6c6 b8c8 c6c1
 4/11 d6c6 1749  0.13     7437 d6c6 c1a1 c6c7 b8c8 c7c8 a1a2
 5/13 d6c6 1723  0.23    15005 d6c6 b8c8 c6c1 g1h2 a2a1Q c8h8 g7f7 c7c8Q c1c8
h8c8
 6/15 d6c6 1781  0.41    27696 d6c6 b8c8 c6c1 g1h2 a2a1Q c8h8 g7h6 c7c8Q a1e5
g2g3
 7/18 d6c6 1781  0.79    55209 d6c6 b8c8 c6c1 g1h2 a2a1Q c8h8 g7h6 c7c8Q a1e5
g2g3 c1c8 h8c8
 8/20 d6c6 1993  1.92   135971 d6c6 b8b2 c8c7 c1c6 c7c6 b2a2 e7e5 mtmt
 9/23 d6c6 1928  4.64   329565 d6c6 b8b2 c6c1 b2c1 c8c7 c1c7 g7h6 mtmt
10/23 Td6c6  1972  6.03   440320 d6c6 b8b2 c6c7 c1c7 c8c7 b2a2 e7e5 a2d5 c7c2
nps=73046 h/p/q=34.00%/99.00%/0.00% q=75.0% bc=52% br=2.03
mp=1498/1703/-1347/-26738600
pawnx=10 recapx=1021 qcheckx=0 checkx=13134 qfutilx=38887 onereplyx=1585
mthrx=7174 futilx=0 bmx=59
+ 8.61/20.75 90% 186/206 bf=2.15 h/p/q=32.90%/96.63%/0.00% 984.27 111307888
540330/5/113087 594612/314692/767775/3949063/14182893/398066/0/45956
*** Problem   Solution(s): Qxg7+ (bm)
[D] r1bq2kr/p1pp1ppp/1pn1p3/4P3/2Pb2Q1/BR6/P4PPP/3K1BNR w - - bm Qxg7+
*** Problem   Solution(s): Qxg7+ (bm)
BR ** BB BQ -- ** BK BR
BP -- BP BP ** BP BP BP
-- BP BN ** BP ** -- **
** -- ** -- WP -- ** --
-- ** WP BB -- ** WQ **
WB WR ** -- ** -- ** --
WP ** -- ** -- WP WP WP
** -- ** WK ** WB WN WR
mv 1 stage 0, white to move, computer plays white
hash=8433cbb84103322b
pawnhash=caed8a9b6796b37a
Alpha=-3793 Beta=-2992 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 5 f2f4 -3373  0.03      211 f2f4
 2/ 7 f2f4 -3545  0.04      570 f2f4 d7d6
 3/ 9 f2f4 -3842  0.06     1607 f2f4 d7d6 e5d6 c7d6
 4/13 d1e1 -3481  0.18     7044 d1e1 d4e5 g4d1
 5/18 f2f4 -3441  0.37    17375 f2f4 d7d6 e5d6 c7d6 a3d6 d8d6
 6/18>f2f4 -3040  0.62    30147 f2f4 d7d6 e5d6 c7d6 g1e2 c8a6
 6/18 g4g7 -2020  0.91    46392 g4g7 g8g7 b3g3 d8g5 g3g5 g7h6 f2f4 d4g1 h1g1
c8b7
 7/21>g4g7 -1619  1.35    70375 g4g7 g8g7 b3g3 d8g5 g3g5 g7h6 f2f4 c6e5 g5e5
d4e5 f4e5 c8b7
 7/21 g4g7 -1619  1.57    84315 g4g7 g8g7 b3g3 d8g5 g3g5 g7h6 f2f4 c6e5 g5e5
d4e5 f4e5 c8b7
 8/22>g4g7 -1218  2.10   112941 g4g7 g8g7 b3g3 d8g5 g3g5 g7h6 f2f4 c6e5 g5e5
d4e5 f4e5 h8e8
 8/22 g4g7 -1218  2.67   147111 g4g7 g8g7 b3g3 d8g5 g3g5 g7h6 f2f4 c6e5 g5e5
d4e5 f4e5 h8e8
 9/24>g4g7 -817  4.15   236775 g4g7 g8g7 b3g3 d8g5 g3g5 g7h6 f2f4 c6e5 g5e5 d4e5
f4e5 c8b7 g1e2
 9/25 g4g7 936  5.10   290094 g4g7 g8g7 b3g3 d8g5 g3g5 g7h6 a3c1 d4b2 g5g8 b2c1
g8h8
10/25<Tg4g7  535  6.00   346157 g4g7 g8g7 b3g3 d8g5 g3g5 g7h6 a3c1 d4b2 g5g8
b2c1 g8h8 c1b2 f2f4 c6d4
nps=57645 h/p/q=34.00%/97.00%/0.00% q=74.0% bc=51% br=1.80
mp=800/716/-1435/-1115
pawnx=918 recapx=645 qcheckx=0 checkx=13806 qfutilx=36099 onereplyx=1415
mthrx=7176 futilx=0 bmx=0
+ 8.61/20.77 90% 187/207 bf=2.15 h/p/q=32.90%/96.63%/0.00% 990.27 111654048
539392/5/112751 595530/315337/774951/3962869/14218992/399481/0/45956
*** Problem   Solution(s): Bf7+ (bm)
[D] 3r1bk1/ppq3pp/2p5/2P2Q1B/8/1P4P1/P6P/5RK1 w - - bm Bf7+
*** Problem   Solution(s): Bf7+ (bm)
-- ** -- BR -- BB BK **
BP BP BQ -- ** -- BP BP
-- ** BP ** -- ** -- **
** -- WP -- ** WQ ** WB
-- ** -- ** -- ** -- **
** WP ** -- ** -- WP --
WP ** -- ** -- ** -- WP
** -- ** -- ** WR WK --
mv 1 stage 0, white to move, computer plays white
hash=f9676d11d041dd4a
pawnhash=912dd5b4f0be5600
Alpha=-3 Beta=797 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 5 b3b4 405  0.01      132 b3b4
 2/ 7 a2a3 393  0.02      725 a2a3
 3/ 8 h5f7 339  0.04     1946 h5f7 g8h8 b3b4
 4/10 f5c2 272  0.14     6873 f5c2 g7g6
 5/14 f1f2 270  0.45    22697 f1f2 f8e7 b3b4
 6/14>h5e2 670  0.85    42037 h5e2 f8e7 e2c4 g8h8 a2a3
 6/14 h5f7 3500  1.05    51373 h5f7 g8h8 f7e8 f8c5 f5c5 a7a5
 7/17>h5f7 3900  1.15    54312 h5f7 g8h8 f7e8 f8c5 f5c5 a7a5
 7/17 h5f7 4964  1.62    82160 h5f7 g8h8 f7e8 f8c5 f5c5 c7f7 e8c6
 8/17>h5f7 5364  1.73    87597 h5f7 g8h8 f7e8 f8c5 f5c5 c7f7 e8c6 b7c6 f1f7 g7g6
 8/20 h5f7 6573  2.71   150940 h5f7 g8h8 f7e8 f8c5 f5c5 c7f7 f1f7 h8g8 f7b7
 9/23>h5f7 6973  3.43   193239 h5f7 g8h8 f7e8 f8c5 f5c5 c7f7 f1f7
 9/23 h5f7 6973  5.24   313651 h5f7 g8h8 f7e8 f8c5 f5c5 c7f7 f1f7
10/24>Th5f7  7373  6.05   351232 h5f7 g8h8 f7e8 f8c5 f5c5 c7f7 f1f7
nps=58036 h/p/q=42.00%/98.00%/0.00% q=66.0% bc=52% br=2.09
mp=1528/26843596/-1077/-26738600
pawnx=564 recapx=640 qcheckx=0 checkx=13810 qfutilx=36836 onereplyx=2588
mthrx=7560 futilx=0 bmx=185
+ 8.62/20.79 90% 188/208 bf=2.15 h/p/q=32.95%/96.64%/0.00% 996.32 112005280
538487/5/112419 596094/315977/782511/3976679/14255828/402069/0/46141
*** Problem   Solution(s): Rxe5+ (bm)
[D] 4kb1r/2q2p2/r2p4/pppBn1B1/P6P/6Q1/1PP5/2KRR3 w k - bm Rxe5+
*** Problem   Solution(s): Rxe5+ (bm)
-- ** -- ** BK BB -- BR
** -- BQ -- ** BP ** --
BR ** -- BP -- ** -- **
BP BP BP WB BN -- WB --
WP ** -- ** -- ** -- WP
** -- ** -- ** -- WQ --
-- WP WP ** -- ** -- **
** -- WK WR WR -- ** --
mv 1 stage 0, white to move, computer plays white
hash=26a0a934555cb16
pawnhash=1a033e81d08bd873
Alpha=1205 Beta=2006 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 3 a4b5 1606  0.01       60 a4b5
 2/ 5 a4b5 1451  0.01      354 a4b5 a6b6
 3/ 9>a4b5 1851  0.03      902 a4b5 a6a7
 3/10 e1e5 5736  0.07     2576 e1e5 d6e5 g3e5 e8d7 e5h8
 4/10>e1e5 6136  0.08     2884 e1e5 d6e5 g3e5 e8d7 e5h8 b5a4
 4/13 e1e5 7124  0.27    10555 e1e5 d6e5 g3e5 e8d7 e5h8 c7b8 d5f7
 5/16 e1e5 7521  0.92    42059 e1e5 d6e5 g3e5 e8d7 e5h8 c7c8
 6/18>e1e5 7921  1.23    58031 e1e5 d6e5 g3e5 e8d7 e5h8 c7b8 d5f7 d7c6
 6/19 e1e5 11483  4.08   202533 e1e5 f8e7 e5e7 c7e7 g5e7 e8e7 a4b5 a6a8
 7/20<Te1e5  11082  6.00   288768 e1e5 f8e7 e5e7 c7e7 g5e7 e8e7 a4b5 a6a8 d5f7
nps=48128 h/p/q=30.00%/99.00%/0.00% q=79.0% bc=63% br=3.08
mp=2407/265/-293/-1288
pawnx=391 recapx=705 qcheckx=0 checkx=16770 qfutilx=33594 onereplyx=860
mthrx=7560 futilx=0 bmx=0
+ 8.61/20.78 90% 189/209 bf=2.15 h/p/q=32.93%/96.65%/0.00% 1002.32 112294048
537292/5/112034 596485/316682/790071/3993449/14289422/402929/0/46141
*** Problem   Solution(s): Rh1 (bm)
[D] 3r1rk1/pp1q1ppp/3pn3/2pN4/5PP1/P5PQ/1PP1B3/1K1R4 w - - bm Rh1
*** Problem   Solution(s): Rh1 (bm)
-- ** -- BR -- BR BK **
BP BP ** BQ ** BP BP BP
-- ** -- BP BN ** -- **
** -- BP WN ** -- ** --
-- ** -- ** -- WP WP **
WP -- ** -- ** -- WP WQ
-- WP WP ** WB ** -- **
** WK ** WR ** -- ** --
mv 1 stage 0, white to move, computer plays white
hash=a30b713469e872fc
pawnhash=10b6d95edc111bf8
Alpha=-4303 Beta=-3502 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 4>d1e1 -3502  0.00       57 d1e1
 1/ 4 b1a2 -3471  0.01      101 b1a2
 2/ 6 h3h5 -3495  0.01      405 h3h5
 3/10 f4f5 -3638  0.04     1533 f4f5 e6d4
 4/12 e2d3 -3626  0.11     4898 e2d3 h7h6 f4f5
 5/14 h3h5 -3584  0.25    12000 h3h5 h7h6 f4f5
 6/17 e2b5 -3358  0.94    44580 e2b5 e6g5 h3h5 d7b5 f4g5
 7/17>e2b5 -2957  1.08    52349 e2b5 e6g5 b5d7 g5h3 d5e7 g8h8 d1d6 c5c4
 7/21 e2b5 -591  2.16   107853 e2b5 e6f4 g3f4 d7e6 f4f5 e6e4
 8/22 e2b5 -661  4.04   207765 e2b5 e6f4 g3f4 d7e6 f4f5 e6h6 h3f3
 9/22 Te2b5  -562  6.01   315392 e2b5 e6f4 g3f4 d7e6 b5d3 h7h6 d3b5
nps=52443 h/p/q=44.00%/97.00%/0.00% q=70.0% bc=49% br=2.14
mp=1360/1915/-1470/-1340
pawnx=861 recapx=183 qcheckx=0 checkx=10260 qfutilx=27303 onereplyx=2737
mthrx=7564 futilx=0 bmx=10
- 8.61/20.79 90% 189/210 bf=2.15 h/p/q=32.99%/96.65%/0.00% 1008.34 112609440
536235/5/111678 597346/316865/797635/4003709/14316725/405666/0/46151
*** Problem   Solution(s): Qxf7+ (bm)
[D] r1bqrk2/pp1n1n1p/3p1p2/P1pP1P1Q/2PpP1NP/6R1/2PB4/4RBK1 w - - bm Qxf7+
*** Problem   Solution(s): Qxf7+ (bm)
BR ** BB BQ BR BK -- **
BP BP ** BN ** BN ** BP
-- ** -- BP -- BP -- **
WP -- BP WP ** WP ** WQ
-- ** WP BP WP ** WN WP
** -- ** -- ** -- WR --
-- ** WP WB -- ** -- **
** -- ** -- WR WB WK --
mv 1 stage 0, white to move, computer plays white
hash=b9945382a854591d
pawnhash=415192c926120432
Alpha=1290 Beta=2091 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 4 h5h7 1691  0.01       95 h5h7
 2/ 7 h5h7 1581  0.01      406 h5h7 a7a6
 3/11 h5h7 1817  0.05     1722 h5h7 a8b8
 4/13>Mh5f7  99954  0.10     3618 h5f7 f8f7 g4h6 f7f8 g3g8 f8e7 g8g7 e7f8 g7f7
nps=37299 h/p/q=17.00%/96.00%/0.00% q=77.0% bc=49% br=2.08 mp=1066/0/-403/-1050
pawnx=77 recapx=8 qcheckx=0 checkx=131 qfutilx=549 onereplyx=24 mthrx=7564
futilx=0 bmx=0
+ 8.59/20.75 90% 190/211 bf=2.15 h/p/q=32.91%/96.65%/0.00% 1008.43 112613056
533711/5/111671 597423/316873/805199/4003840/14317274/405690/0/46151
*** Problem   Solution(s): Qxg7+ (bm)
[D] rn1qr2Q/pbppk1p1/1p2pb2/4N3/3P4/2N5/PPP3PP/R4RK1 w - - bm Qxg7+
*** Problem   Solution(s): Qxg7+ (bm)
BR BN -- BQ BR ** -- WQ
BP BB BP BP BK -- BP --
-- BP -- ** BP BB -- **
** -- ** -- WN -- ** --
-- ** -- WP -- ** -- **
** -- WN -- ** -- ** --
WP WP WP ** -- ** WP WP
WR -- ** -- ** WR WK --
mv 1 stage 0, white to move, computer plays white
hash=5e9406cac21a8e26
pawnhash=29208f7942925638
Alpha=-3324 Beta=-2523 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 3 e5g6 -3060  0.00       79 e5g6 e7d6
 2/ 7 e5g6 -3191  0.02      617 e5g6 e7d6 c3b5 d6c6
 3/11 h8h5 -3111  0.07     2610 h8h5 b8c6
 4/14>h8h5 -2710  0.21     7595 h8h5 a7a6 e5g6 e7f7
 4/15 Mh8g7  99963  0.28    10090 h8g7 f6g7 f1f7 e7d6 c3b5 d6d5 c2c4 d5e4 a1e1
nps=35780 h/p/q=27.00%/92.00%/0.00% q=81.0% bc=61% br=2.90
mp=1628/519/-111/-1420
pawnx=4 recapx=17 qcheckx=0 checkx=599 qfutilx=2369 onereplyx=58 mthrx=7564
futilx=0 bmx=0
+ 8.57/20.73 90% 191/212 bf=2.16 h/p/q=32.88%/96.63%/0.00% 1008.72 112623144
531241/5/111650 597427/316890/812763/4004439/14319643/405748/0/46151
*** Problem   Solution(s): Rxh7+ (bm)
[D] 3r1r1k/1b4pp/ppn1p3/4Pp1R/Pn5P/3P4/4QP2/1qB1NKR1 w - - bm Rxh7+
*** Problem   Solution(s): Rxh7+ (bm)
-- ** -- BR -- BR -- BK
** BB ** -- ** -- BP BP
BP BP BN ** BP ** -- **
** -- ** -- WP BP ** WR
WP BN -- ** -- ** -- WP
** -- ** WP ** -- ** --
-- ** -- ** WQ WP -- **
** BQ WB -- WN WK WR --
mv 1 stage 0, white to move, computer plays white
hash=9a293e3b1da51bdd
pawnhash=66e6e9e0fb19f845
Alpha=-6273 Beta=-5472 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 7<h5f5 -6273  0.01      124 h5f5
 1/ 7 e2e3 -7213  0.01      319 e2e3
 2/ 7 c1a3 -7214  0.03      671 c1a3 d8d3
 3/ 8>c1a3 -6813  0.03      810 c1a3 d8d3 a3b4
 3/10 c1a3 -6554  0.06     1734 c1a3 d8d3 a3b2
 4/12 c1g5 -6560  0.17     6132 c1g5 d8d3 g5d2
 5/18 c1a3 -6601  0.38    14726 c1a3 d8d3 e2b2
 6/19>c1g5 -6200  1.10    44835 c1g5 d8d3 g5d2 d3d2
 6/19 c1e3 -6199  1.26    56150 c1e3 b4d3 e3b6 d3e1 b6d8
 7/23 e2d1 -6598  2.06   131219 e2d1 d8d3 g1g7 h8g7
 8/27 h5h7 -6198  4.37   351915 h5h7 h8h7 e2h5 h7g8 g1g7 g8g7 c1h6 g7h8 h6f8
h8g8 f8b4 b1b4 h5g6 g8f8 g6h6 f8e8
 9/28>h5h7 -5797  5.30   453549 h5h7 h8h7 e2h5 h7g8 g1g7 g8g7 c1h6 g7h8 h6e3
h8g7 e3h6 g7h8 h6e3 h8g7 e3h6 g7h8 h6e3 h8g7 e3h6
 9/28 h5h7 0  5.69   495539 h5h7 h8h7 e2h5 h7g8 g1g7 g8g7 c1h6 g7h8 h6e3 h8g7
e3h6 g7h8 h6e3 h8g7 e3h6 g7h8 h6e3 h8g7 e3h6
10/31 Th5h7  0  6.02   532480 h5h7 h8h7 e2h5 h7g8 g1g7 g8g7 c1h6 g7h8 h6g5 h8g7
h5h6 g7f7 h6f6 f7g8 f6g6 g8h8 g6h6 h8g8 h6g6 g8h8 g6h6 h8g8 h6g6 g8h8 g6h6 h8g8
h6g6
nps=88511 h/p/q=33.00%/99.00%/0.00% q=71.0% bc=60% br=1.95
mp=2144/1610/-1037/-1190
pawnx=1737 recapx=506 qcheckx=0 checkx=27193 qfutilx=88142 onereplyx=3205
mthrx=7568 futilx=0 bmx=254
+ 8.58/20.77 90% 192/213 bf=2.16 h/p/q=32.88%/96.64%/0.00% 1014.73 113155624
531247/5/111513 599164/317396/820331/4031632/14407785/408953/0/46405
*** Problem   Solution(s): Ng5 (bm)
[D] r2r2k1/1p2qpp1/1np1p1p1/p3N3/2PPN3/bP5R/4QPPP/4R1K1 w - - bm Ng5
*** Problem   Solution(s): Ng5 (bm)
BR ** -- BR -- ** BK **
** BP ** -- BQ BP BP --
-- BN BP ** BP ** BP **
BP -- ** -- WN -- ** --
-- ** WP WP WN ** -- **
BB WP ** -- ** -- ** WR
-- ** -- ** WQ WP WP WP
** -- ** -- WR -- WK --
mv 1 stage 0, white to move, computer plays white
hash=7c87987203138fd1
pawnhash=7e721b16b2badd1a
Alpha=-1142 Beta=-341 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 4 c4c5 -684  0.01      122 c4c5
 2/ 7 e2d2 -1017  0.01      412 e2d2
 3/11 e2d2 -736  0.02     1436 e2d2 a5a4
 4/11 e4g5 -678  0.09     6950 e4g5 d8f8
 5/13 c4c5 -748  0.23    20678 c4c5 b6d7 e5c4
 6/16 h3f3 -826  0.80    74676 h3f3 d8f8 g2g4
 7/17>e2d2 -425  1.65   151711 e2d2 a3b4 e4c3 b6d7 f2f4
 7/17 e2d2 -425  1.97   182093 e2d2 a3b4 e4c3 b6d7 f2f4 d7e5 f4e5 b4c3
 8/23 e4g5 -25  4.10   388024 e4g5 d8e8 g5f7 b6c4 b3c4 e7f7
 9/23>e4g5 375  5.59   514762 e4g5 d8e8 g5f7 b6c4 b3c4 e7f7
 9/23 Te4g5  4940  6.01   555008 e4g5 d8e8 g5f7 e7f7 e5f7 g8f7 e2f3 f7g8 f3f4
nps=92409 h/p/q=28.00%/98.00%/0.00% q=78.0% bc=58% br=2.30
mp=1436/1306/-1111/-1343
pawnx=822 recapx=745 qcheckx=0 checkx=12822 qfutilx=130772 onereplyx=2051
mthrx=7568 futilx=0 bmx=3
+ 8.58/20.79 90% 193/214 bf=2.16 h/p/q=32.86%/96.64%/0.00% 1020.74 113710632
531358/5/111401 599986/318141/827899/4044454/14538557/411004/0/46408
*** Problem   Solution(s): Qh7+ (bm)
[D] 3r2k1/pb1q1pp1/1p2pb1p/8/3N4/P2QB3/1P3PPP/1Br1R1K1 w - - bm Qh7+
*** Problem   Solution(s): Qh7+ (bm)
-- ** -- BR -- ** BK **
BP BB ** BQ ** BP BP --
-- BP -- ** BP BB -- BP
** -- ** -- ** -- ** --
-- ** -- WN -- ** -- **
WP -- ** WQ WB -- ** --
-- WP -- ** -- WP WP WP
** WB BR -- WR -- WK --
mv 1 stage 0, white to move, computer plays white
hash=f60a35d10bf0eea8
pawnhash=f45342523cc22d94
Alpha=2673 Beta=3474 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 6 e1c1 3074  0.00      120 e1c1
 2/11 e1c1 2850  0.01      741 e1c1 d7d6
 3/14>Md3h7  99971  0.05     3536 d3h7 g8f8 h7h8 f8e7 d4f5 e6f5 e3c5
nps=75234 h/p/q=27.00%/96.00%/0.00% q=85.0% bc=53% br=2.41 mp=424/568/0/-700
pawnx=0 recapx=6 qcheckx=0 checkx=128 qfutilx=1524 onereplyx=21 mthrx=7568
futilx=0 bmx=0
+ 8.55/20.75 90% 194/215 bf=2.16 h/p/q=32.83%/96.64%/0.00% 1020.78 113714168
528903/5/111399 599986/318147/835467/4044582/14540081/411025/0/46408
*** Problem   Solution(s): Nxf7 a4 (bm)
[D] r2qr1k1/1b1nbppp/p3pn2/1p1pN3/3P1B2/2PB1N2/PP2QPPP/R4RK1 w - - bm Nxf7 a4
*** Problem   Solution(s): Nxf7 a4 (bm)
BR ** -- BQ BR ** BK **
** BB ** BN BB BP BP BP
BP ** -- ** BP BN -- **
** BP ** BP WN -- ** --
-- ** -- WP -- WB -- **
** -- WP WB ** WN ** --
WP WP -- ** WQ WP WP WP
WR -- ** -- ** WR WK --
mv 1 stage 0, white to move, computer plays white
hash=8ef69fe98bdaa488
pawnhash=3ef77e032d920b0a
Alpha=-326 Beta=474 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 5 e2d1 251  0.00      112 e2d1 d7e5 f3e5
 2/ 7 g1h1 164  0.01      491 g1h1 d7e5 f3e5
 3/ 8 f3g5 156  0.02     1480 f3g5 d7e5 d4e5
 4/13 f3g5 266  0.06     4451 f3g5 e8f8 e2d1 d7e5 d4e5
 5/15>f3g5 666  0.20    13575 f3g5 e8f8 e5d7 d8d7 e2d1
 5/15 e5f7 1405  0.26    18622 e5f7 d8b6 f3g5 e8f8
 6/15 e5f7 1333  0.43    33926 e5f7 d8b6 f7g5 e7d6 f4d6 b6d6
 7/15 e5f7 1462  0.79    66994 e5f7 d8b6 f7g5 e7d6 f4e5 d7e5 f3e5 d6e5 d4e5
 8/17 e5f7 1516  1.68   148989 e5f7 d8b6 f7g5 e7f8 f3e5 g7g6
 9/21 e5f7 1539  3.71   337295 e5f7 d8b6 f7g5 d7f8 g1h1 g8h8
10/23 Te5f7  1480  6.00   527360 e5f7 d8b6 f7g5 e7d6 f3e5 b6d8 e5f7 d6e5 d4e5
nps=87879 h/p/q=38.00%/98.00%/0.00% q=79.0% bc=51% br=2.15
mp=1735/1471/-1125/-1351
pawnx=374 recapx=2172 qcheckx=0 checkx=8994 qfutilx=137026 onereplyx=664
mthrx=7568 futilx=0 bmx=0
+ 8.56/20.76 90% 195/216 bf=2.16 h/p/q=32.86%/96.65%/0.00% 1026.79 114241528
528896/5/111261 600360/320319/843035/4053576/14677107/411689/0/46408
*** Problem   Solution(s): Qd7+ (bm)
[D] r3kb1r/1pp3p1/p3bp1p/5q2/3QN3/1P6/PBP3P1/3RR1K1 w kq - bm Qd7+
*** Problem   Solution(s): Qd7+ (bm)
BR ** -- ** BK BB -- BR
** BP BP -- ** -- BP --
BP ** -- ** BB BP -- BP
** -- ** -- ** BQ ** --
-- ** -- WQ WN ** -- **
** WP ** -- ** -- ** --
WP WB WP ** -- ** WP **
** -- ** WR WR -- WK --
mv 1 stage 0, white to move, computer plays white
hash=29b17e5dde54db8
pawnhash=1f4cfa2a68ad1ff3
Alpha=-2273 Beta=-1472 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 3>e4f6 -1472  0.00       11 e4f6 g7f6
 1/ 5 d4e3 -1339  0.00      140 d4e3
 2/ 7>d4e3 -938  0.01      335 d4e3 e6b3
 2/ 8 e4f6 -692  0.02     1234 e4f6 e8f7 f6e4
 3/12 e4f6 -850  0.05     4519 e4f6 e8f7 f6e4 f7g8
 4/14>Md4d7  99954  0.11    11202 d4d7 e6d7 e4d6 e8d8 d6f7 d8c8 e1e8 d7e8 d1d8
nps=98263 h/p/q=24.00%/97.00%/0.00% q=72.0% bc=57% br=2.17 mp=718/273/-100/-926
pawnx=0 recapx=11 qcheckx=0 checkx=386 qfutilx=2805 onereplyx=21 mthrx=7568
futilx=0 bmx=0
+ 8.54/20.73 90% 196/217 bf=2.16 h/p/q=32.82%/96.65%/0.00% 1026.90 114252728
526510/5/111260 600360/320330/850603/4053962/14679912/411710/0/46408
*** Problem   Solution(s): Bh6 (bm)
[D] 6k1/pp5p/2p3q1/6BP/2nPr1Q1/8/PP3R1K/8 w - - bm Bh6
*** Problem   Solution(s): Bh6 (bm)
-- ** -- ** -- ** BK **
BP BP ** -- ** -- ** BP
-- ** BP ** -- ** BQ **
** -- ** -- ** -- WB WP
-- ** BN WP BR ** WQ **
** -- ** -- ** -- ** --
WP WP -- ** -- WR -- WK
** -- ** -- ** -- ** --
mv 1 stage 0, white to move, computer plays white
hash=5b74279dfc08a350
pawnhash=b2eec78ea1d6b49e
Alpha=-447 Beta=353 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 4>h5g6 353  0.00        6 h5g6
 1/ 5 h5g6 353  0.00       71 h5g6
 2/ 5>h5g6 753  0.00      104 h5g6 e4g4
 2/ 8 h5g6 753  0.01      337 h5g6 e4g4
 3/ 9<h5g6 352  0.02     1519 h5g6 e4g4 g6h7 g8h7
 3/ 9 h5g6 352  0.02     1591 h5g6 e4g4 g6h7 g8h7
 4/12>g4c8 752  0.08     8155 g4c8 e4e8 h5g6 e8c8 g6h7 g8h7 h2g3
 4/12 g5h6 752  0.08     8298 g5h6 e4d4 g4g6 h7g6 h5g6
 5/12>g5h6 1152  0.12    12599 g5h6 e4d4 g4g6 h7g6 h5g6 d4d3
 5/14 g5h6 7996  0.22    24078 g5h6 e4e2 g4g6 h7g6 f2e2 g6h5
 6/16<g5h6 7595  0.37    44820 g5h6 e4e2 g4g6 h7g6 f2e2 g6h5 h2g3 c4b2
 6/16 g5h6 7595  0.38    45397 g5h6 e4e2 g4g6 h7g6 f2e2 g6h5 h2g3 c4b2
 7/16>g5h6 7995  0.41    48537 g5h6 e4e2 g4g6 h7g6 f2e2 g6h5 h2g3 c4b2 e2b2
 7/18 g5h6 7997  0.77    94957 g5h6 e4e2 g4e2 g6d6 h2g1 d6h6 e2e8 h6f8 f2f8
 8/21 g5h6 8033  1.86   232521 g5h6 e4e2 h5g6 e2f2 h2g1 f2f1 g1f1 c4e3 h6e3 a7a5
 9/21>g5h6 8433  2.03   252921 g5h6 e4e2 h5g6 e2f2 h2g1 f2f1 g1f1 c4e3 h6e3 a7a5
g4e2 g8g7
 9/26 g5h6 8439  5.76   717435 g5h6 e4e2 g4e2 g6d6 h2g1 d6h6 e2e8 h6f8 f2f8 g8g7
10/26 Tg5h6  8838  6.00   749589 g5h6 e4e2 g4e2 g6d6 h2g1 c4e5 f2g2 g8f7 d4e5
d6h6 g1f1 mtmt
nps=124890 h/p/q=28.00%/99.00%/0.00% q=70.0% bc=54% br=2.25
mp=1015/26843615/-994/-26738600
pawnx=12482 recapx=2570 qcheckx=0 checkx=44994 qfutilx=40880 onereplyx=4631
mthrx=7575 futilx=0 bmx=255
+ 8.55/20.76 90% 197/218 bf=2.16 h/p/q=32.79%/96.66%/0.00% 1032.90 115002320
527534/5/111339 612842/322900/858178/4098956/14720792/416341/0/46663
*** Problem   Solution(s): Qf1+ (bm)
[D] 7k/p4q1p/1pb5/2p5/4B2Q/2P1B3/P6P/7K b - - bm Qf1+
*** Problem   Solution(s): Qf1+ (bm)
-- ** -- ** -- ** -- BK
BP -- ** -- ** BQ ** BP
-- BP BB ** -- ** -- **
** -- BP -- ** -- ** --
-- ** -- ** WB ** -- WQ
** -- WP -- WB -- ** --
WP ** -- ** -- ** -- WP
** -- ** -- ** -- ** WK
mv 1 stage 0, black to move, computer plays black
hash=ba538122adf85615
pawnhash=f8a717c82c247766
Alpha=-1966 Beta=-1165 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 5 c6e4 -1566  0.00      128 c6e4 h4e4 f7a2
 2/ 8>Mf7f1  99984  0.01      390 f7f1 e3g1 f1f3 e4f3 c6f3
nps=78000 h/p/q=32.00%/93.00%/0.00% q=80.0% bc=58% br=0.75 mp=75/88/-1435/-1080
pawnx=0 recapx=4 qcheckx=0 checkx=24 qfutilx=37 onereplyx=8 mthrx=7575 futilx=0
bmx=0
+ 8.52/20.70 90% 198/219 bf=2.15 h/p/q=32.79%/96.64%/0.00% 1032.91 115002712
525127/5/111339 612842/322904/865753/4098980/14720829/416349/0/46663
*** Problem   Solution(s): Qxf1+ (bm)
[D] 3rr1k1/ppp2ppp/8/5Q2/4n3/1B5R/PPP1qPP1/5RK1 b - - bm Qxf1+
*** Problem   Solution(s): Qxf1+ (bm)
-- ** -- BR BR ** BK **
BP BP BP -- ** BP BP BP
-- ** -- ** -- ** -- **
** -- ** -- ** WQ ** --
-- ** -- ** BN ** -- **
** WB ** -- ** -- ** WR
WP WP WP ** BQ WP WP **
** -- ** -- ** WR WK --
mv 1 stage 0, black to move, computer plays black
hash=3c36d71e94755567
pawnhash=1b882fa926371269
Alpha=1179 Beta=1980 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 5 e4f6 1564  0.00      107 e4f6
 2/ 7 e2f1 1832  0.01      564 e2f1 g1f1 d8d1 f1e2 e4g3 e2d1 g3f5
 3/10 e2f1 1832  0.02     1868 e2f1 g1f1 d8d1 f1e2 e4g3 e2d1 g3f5
 4/12>e2f1 2232  0.05     4832 e2f1 g1f1 d8d1 f1e2 d1d2 e2e1 e4g3 f5e5
 4/12 e2f1 2233  0.07     6480 e2f1 g1f1 e4d2 f1g1 e8e1 g1h2 d2f1 h2g1 f1e3
 5/16>e2f1 2633  0.09     8128 e2f1 g1f1 e4d2 f1g1 e8e1 g1h2 d2f1 h2g1 f1e3
 5/16 e2f1 8994  0.24    24586 e2f1 g1h2 e4f6 h3h5
 6/17<e2f1 8593  0.43    44839 e2f1 g1h2 e4f6 h3h5 f1b1 b3f7 g8f7
 6/17 e2f1 7585  0.58    60132 e2f1 g1h2 e4f6 h3h5 f1b1 h5h7
 7/20<e2f1 7184  1.90   215011 e2f1 g1h2 e4f6 h2g3 f1b1 b3f7 g8f7 f5f6
 7/20 e2f1 7183  2.33   265646 e2f1 g1h2 e4f6 h2g3 f1b1 b3f7 g8f7 f5f6
 8/22 Te2f1  7574  6.01   667648 e2f1 g1h2 e4f6 f5c5 f1b1 a2a4 b1b2
nps=111164 h/p/q=48.00%/99.00%/0.00% q=72.0% bc=60% br=2.56
mp=1064/988/-1551/-26738600
pawnx=0 recapx=554 qcheckx=0 checkx=28224 qfutilx=71438 onereplyx=4555
mthrx=7821 futilx=0 bmx=0
+ 8.51/20.70 90% 199/220 bf=2.15 h/p/q=32.86%/96.65%/0.00% 1038.91 115670360
525774/5/111338 612842/323458/873574/4127204/14792267/420904/0/46663
*** Problem   Solution(s): Rd8+ (bm)
[D] r3k3/P5bp/2N1bp2/4p3/2p5/6NP/1PP2PP1/3R2K1 w q - bm Rd8+
*** Problem   Solution(s): Rd8+ (bm)
BR ** -- ** BK ** -- **
WP -- ** -- ** -- BB BP
-- ** WN ** BB BP -- **
** -- ** -- BP -- ** --
-- ** BP ** -- ** -- **
** -- ** -- ** -- WN WP
-- WP WP ** -- WP WP **
** -- ** WR ** -- WK --
mv 1 stage 0, white to move, computer plays white
hash=f050b9611c5b7325
pawnhash=28b2697c8da1bf39
Alpha=3825 Beta=4626 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 4 c2c3 4505  0.00       52 c2c3
 2/ 6 d1d8 4475  0.01      308 d1d8 a8d8 c6d8 e8d8
 3/ 7 g3h5 4353  0.01      872 g3h5 g7h8
 4/ 9>g3h5 4753  0.02     1300 g3h5 g7h8 c6d8 e6d7
 4/10 d1d8 4755  0.03     2968 d1d8 a8d8 c6d8 e6d5 d8e6 e8d7
 5/12 d1d6 4357  0.07     6542 d1d6 e6d7 c2c3 mtmt
 6/14>d1d6 4757  0.14    14705 d1d6 e6f7 g3f5 g7h8
 6/15 d1d8 4759  0.25    28175 d1d8 a8d8 c6d8 e6d5 d8e6 g7h8 e6c7 e8f8
 7/17>d1d8 5159  0.28    31869 d1d8 a8d8 c6d8 e6d5 d8e6 g7h8 e6c7 e8d8 c7d5
 7/17 d1d8 5161  0.45    51180 d1d8 a8d8 c6d8 e6d5 d8e6 e8f7 e6g7 f7g7 a7a8R
 8/20>d1d8 5561  0.58    67824 d1d8 a8d8 c6d8 e6d5 d8e6 e8f7 e6g7 f7g7 a7a8R
d5a8 g1f1
 8/20 d1d8 7031  0.83   100894 d1d8 a8d8 c6d8 e6d5 d8e6 e8f7 e6c7 d5c6 a7a8N
 9/21 d1d8 7423  2.00   236732 d1d8 a8d8 c6d8 e6d5 d8e6 c4c3 e6g7 e8f7 g3f5 c3b2
g1f1 mtmt
10/23 d1d8 7424  3.09   375521 d1d8 a8d8 c6d8 e6d5 d8e6 e8f7 e6c7 d5b7 g3h5 g7h6
11/24<Td1d8  7023  6.01   739328 d1d8 a8d8 c6d8 e6d5 d8e6 e8f7 e6c7 d5b7 g3h5
g7f8
nps=123098 h/p/q=27.00%/99.00%/0.00% q=79.0% bc=47% br=2.18
mp=1854/1506/-1672/-26738600
pawnx=3080 recapx=660 qcheckx=0 checkx=22457 qfutilx=83640 onereplyx=1147
mthrx=7821 futilx=0 bmx=342
+ 8.52/20.72 90% 200/221 bf=2.15 h/p/q=32.83%/96.67%/0.00% 1044.92 116409688
526741/5/111406 615922/324118/881395/4149661/14875907/422051/0/47005
*** Problem   Solution(s): Bf6 (bm)
[D] 2r1r2k/1q3ppp/p2Rp3/2p1P3/6QB/p3P3/bP3PPP/3R2K1 w - - bm Bf6
*** Problem   Solution(s): Bf6 (bm)
-- ** BR ** BR ** -- BK
** BQ ** -- ** BP BP BP
BP ** -- WR BP ** -- **
** -- BP -- WP -- ** --
-- ** -- ** -- ** WQ WB
BP -- ** -- WP -- ** --
BB WP -- ** -- WP WP WP
** -- ** WR ** -- WK --
mv 1 stage 0, white to move, computer plays white
hash=71386e631385210f
pawnhash=ee7b1d0079fef3d6
Alpha=-139 Beta=661 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 5 b2a3 261  0.00       97 b2a3
 2/ 6<b2a3 -139  0.00      261 b2a3 b7g2 g4g2
 2/ 6 b2a3 -514  0.01      457 b2a3 a2d5
 3/ 8 b2a3 -293  0.02     1342 b2a3 e8g8
 4/10 b2a3 40  0.06     4858 b2a3 a2d5 g1h1
 5/11<b2a3 -360  0.12    11927 b2a3 a2d5 g1h1 c8b8 a3a4
 5/12 b2a3 -495  0.22    21450 b2a3 a2d5 g4e2 c8a8
 6/16 b2a3 -453  0.48    48122 b2a3 a2b3 d1d3 b3d5 a3a4
 7/18 b2a3 -369  0.98    97954 b2a3 a2d5 g4a4 d5g2 d6a6 g7g6
 8/19 b2a3 -365  2.61   264090 b2a3 a2d5 d1d2 c5c4 e3e4
 9/20 Tb2a3  -547  6.02   616448 b2a3 a2b3 d1d2 b3d5 g4a4 c8a8
nps=102400 h/p/q=32.00%/97.00%/0.00% q=76.0% bc=44% br=2.75
mp=3032/3588/-1885/-1971
pawnx=3181 recapx=985 qcheckx=0 checkx=9809 qfutilx=154405 onereplyx=3514
mthrx=7868 futilx=0 bmx=0
- 8.53/20.72 90% 200/222 bf=2.16 h/p/q=32.83%/96.67%/0.00% 1050.94 117026136
527145/5/111354 619103/325103/889263/4159470/15030312/425565/0/47005
*** Problem   Solution(s): Nxe4 (bm)
[D] r1bqk2r/pp3ppp/5n2/8/1b1npB2/2N5/PP1Q2PP/1K2RBNR w kq - bm Nxe4
*** Problem   Solution(s): Nxe4 (bm)
BR ** BB BQ BK ** -- BR
BP BP ** -- ** BP BP BP
-- ** -- ** -- BN -- **
** -- ** -- ** -- ** --
-- BB -- BN BP WB -- **
** -- WN -- ** -- ** --
WP WP -- WQ -- ** WP WP
** WK ** -- WR WB WN WR
mv 1 stage 0, white to move, computer plays white
hash=9e2223a6204f8313
pawnhash=1670fab9201fea6f
Alpha=-3556 Beta=-2755 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 7>f1c4 -2755  0.00      173 f1c4 b4c3 d2c3
 1/ 7 e1e3 -2721  0.01      337 e1e3 b4c3 d2c3
 2/ 9 e1c1 -2743  0.01      736 e1c1 b4c3 c1c3
 3/11 f4e3 -2980  0.04     2799 f4e3 d4f5
 4/13>f4e3 -2579  0.10     7139 f4e3 d4f5 f1b5 c8d7 b5d7 d8d7 d2c2 f5e3 e1e3
b4c3 c2c3
 4/13 c3e4 -1080  0.17    12619 c3e4 c8f5 d2b4 f5e4 f1d3
 5/15 c3e4 -1084  0.29    23129 c3e4 c8f5 d2b4 f5e4 f1d3 a7a5
 6/15>c3e4 -683  0.39    31402 c3e4 c8f5 d2b4 f5e4 f1d3 a7a5 d3e4
 6/16 c3e4 -683  0.62    53445 c3e4 c8f5 d2b4 f5e4 f1d3 a7a5 d3e4
 7/17 c3e4 -372  1.49   134584 c3e4 c8f5 d2b4 f5e4 f1d3 d8d5 g1h3
 8/18 c3e4 -549  3.81   347588 c3e4 c8f5 d2b4 f5e4 f1d3 d8d5 g1f3 d4f3
 9/21>Tc3e4  -148  6.02   526336 c3e4 c8f5 d2b4 f5e4 f1d3 d8d5 g1f3 d4f3 e1e3
f3h2
nps=87489 h/p/q=29.00%/99.00%/0.00% q=79.0% bc=51% br=2.31
mp=1330/1071/-1676/-1905
pawnx=285 recapx=2309 qcheckx=0 checkx=14378 qfutilx=50056 onereplyx=1111
mthrx=7868 futilx=0 bmx=0
+ 8.53/20.72 90% 201/223 bf=2.16 h/p/q=32.81%/96.68%/0.00% 1056.95 117552472
527141/5/111218 619388/327412/897131/4173848/15080368/426676/0/47005
*** Problem   Solution(s): Rh6 e4 (bm)
[D] 5rk1/p1q3pp/1p1r4/2p1pp1Q/1PPn1P2/3B3P/P2R2P1/3R2K1 b - - bm Rh6 e4
*** Problem   Solution(s): Rh6 e4 (bm)
-- ** -- ** -- BR BK **
BP -- BQ -- ** -- BP BP
-- BP -- BR -- ** -- **
** -- BP -- BP BP ** WQ
-- WP WP BN -- WP -- **
** -- ** WB ** -- ** WP
WP ** -- WR -- ** WP **
** -- ** WR ** -- WK --
mv 1 stage 0, black to move, computer plays black
hash=5594cfedbcf17e18
pawnhash=a43d589f9a60b4ea
Alpha=2308 Beta=3109 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 5 e5f4 2709  0.00       57 e5f4
 2/ 9 e5f4 2609  0.01      293 e5f4 b4b5
 3/12 d6h6 2979  0.02     1855 d6h6 h5g5 c5b4 f4e5 c7e5
 4/14 c5b4 2979  0.09     7627 c5b4 f4e5 d6h6 h5g5 c7e5
 5/14 d6h6 3091  0.26    22293 d6h6 h5g5 h6g6 g5h4 c5b4 f4e5 c7e5
 6/15 d6h6 3124  0.46    42566 d6h6 h5g5 h6g6 g5h5 c5b4
 7/15>d6h6 3524  0.60    56386 d6h6 h5g5 h6g6 g5h5 c5b4 f4e5 c7e5 g2g4
 7/15 e5e4 3968  1.16   111738 e5e4 d3f1 g7g6 h5h6 c5b4
 8/18 d6h6 3809  3.17   313202 d6h6 h5g5 h6g6 g5h5 e5e4 d3e2 c5b4
 9/24>Td6h6  4209  6.03   589862 d6h6 h5g5 h6g6 g5h5 g6h6 h5g5 h6g6 g5h5 g6h6
h5g5 h6g6 g5h5 g6h6
nps=97805 h/p/q=21.00%/96.00%/0.00% q=80.0% bc=50% br=2.60
mp=2174/3632/-1333/-1505
pawnx=4725 recapx=1966 qcheckx=0 checkx=11892 qfutilx=96770 onereplyx=719
mthrx=7868 futilx=0 bmx=0
+ 8.53/20.73 90% 202/224 bf=2.16 h/p/q=32.76%/96.67%/0.00% 1062.99 118142336
527421/5/111142 624113/329378/904999/4185740/15177138/427395/0/47005
*** Problem   Solution(s): Qh4+ (bm)
[D] 4R3/4q1kp/6p1/1Q3b2/1P1b1P2/6KP/8/8 b - - bm Qh4+
*** Problem   Solution(s): Qh4+ (bm)
-- ** -- ** WR ** -- **
** -- ** -- BQ -- BK BP
-- ** -- ** -- ** BP **
** WQ ** -- ** BB ** --
-- WP -- BB -- WP -- **
** -- ** -- ** -- WK WP
-- ** -- ** -- ** -- **
** -- ** -- ** -- ** --
mv 1 stage 0, black to move, computer plays black
hash=ac0da954218743e1
pawnhash=944d89542c149138
Alpha=885 Beta=1686 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 3<f5h3 885  0.00       60 f5h3
 1/ 3 e7c7 104  0.00      159 e7c7
 2/ 4>e7c7 504  0.00      203 e7c7 b5f5
 2/ 6 e7h4 975  0.01      592 e7h4 g3h4 d4f2 h4g5 h7h6
 3/ 9>e7h4 1375  0.01      685 e7h4 g3g2 f5h3
 3/ 9 Me7h4  99993  0.02     1384 e7h4 g3h4 d4f2 h4g5 h7h6
nps=72842 h/p/q=31.00%/97.00%/0.00% q=77.0% bc=65% br=1.39 mp=197/174/-317/0
pawnx=0 recapx=0 qcheckx=0 checkx=113 qfutilx=237 onereplyx=19 mthrx=7868
futilx=0 bmx=0
+ 8.51/20.68 90% 203/225 bf=2.16 h/p/q=32.75%/96.68%/0.00% 1063.00 118143720
525083/5/111141 624113/329378/912867/4185853/15177375/427414/0/47005
*** Problem   Solution(s): Nf7 (bm)
[D] 2b2rk1/p1p4p/2p1p1p1/br2N1Q1/1p2q3/8/PB3PPP/3R1RK1 w - - bm Nf7
*** Problem   Solution(s): Nf7 (bm)
-- ** BB ** -- BR BK **
BP -- BP -- ** -- ** BP
-- ** BP ** BP ** BP **
BB BR ** -- WN -- WQ --
-- BP -- ** BQ ** -- **
** -- ** -- ** -- ** --
WP WB -- ** -- WP WP WP
** -- ** WR ** WR WK --
mv 1 stage 0, white to move, computer plays white
hash=604983983dd2f4ff
pawnhash=18c32a32aa0e9c87
Alpha=-4146 Beta=-3345 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 7 f2f4 -3564  0.00       91 f2f4
 2/ 7 g1h1 -3578  0.01      284 g1h1
 3/ 7 f2f3 -3669  0.02     1242 f2f3 e4e2
 4/11 f1e1 -3706  0.06     4786 f1e1 e4c2
 5/17 d1d8 -3620  0.19    16169 d1d8 e4f5 g5f5
 6/17 d1d8 -3341  0.53    48291 d1d8 e4f5 g5f5 e6f5 e5c6 f8d8 c6d8 c7c5
 7/18 d1d8 -2990  1.14   108119 d1d8 e4f5 g5f5 e6f5 d8f8 g8f8 e5c6 a5b6 f1e1
 8/21>d1d8 -2589  3.50   333104 d1d8 e4f5 g5e7 f8d8 e7d8 f5f8 d8f8 g8f8 e5c6
a7a6
 8/21 e5f7 395  4.06   387207 e5f7 e6e5 d1e1 e4c4 f7h6 g8g7 b2e5 b5e5 g5e5
 9/21>e5f7 795  5.62   534485 e5f7 e6e5 d1e1 e4c4 f7h6 g8g7 b2e5 b5e5 g5e5 g7h6
e5a5 a7a6
 9/21 Te5f7  3786  6.01   569344 e5f7 e6e5 d1e1 f8f7 e1e4 c8f5 e4e1
nps=94717 h/p/q=25.00%/98.00%/0.00% q=77.0% bc=55% br=2.49
mp=1727/2256/-1148/-1093
pawnx=3828 recapx=1400 qcheckx=0 checkx=16601 qfutilx=92020 onereplyx=3123
mthrx=8171 futilx=0 bmx=25
+ 8.51/20.68 90% 204/226 bf=2.16 h/p/q=32.72%/96.68%/0.00% 1069.02 118713064
525279/5/111049 627941/330778/921038/4202454/15269395/430537/0/47030
*** Problem   Solution(s): d5 (bm)
[D] 2k1rb1r/ppp3pp/2np1q2/5b2/2B2P2/2P1BQ2/PP1N1P1P/2KR3R b - - bm d5
*** Problem   Solution(s): d5 (bm)
-- ** BK ** BR BB -- BR
BP BP BP -- ** -- BP BP
-- ** BN BP -- BQ -- **
** -- ** -- ** BB ** --
-- ** WB ** -- WP -- **
** -- WP -- WB WQ ** --
WP WP -- WN -- WP -- WP
** -- WK WR ** -- ** WR
mv 1 stage 0, black to move, computer plays black
hash=be7caf1e006f08e4
pawnhash=fcdb20ca107811aa
Alpha=124 Beta=925 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 4 h7h5 567  0.00       94 h7h5
 2/ 7 g7g6 541  0.00      210 g7g6
 3/ 7 f6d8 793  0.01      784 f6d8 h1g1
 4/ 8 c8b8 658  0.03     2612 c8b8 h1e1
 5/14 d6d5 690  0.12     9502 d6d5 c4b3 d5d4
 6/14>d6d5 1090  0.15    12104 d6d5 e3a7 c6a7 a2a3 mtmt
 6/15 d6d5 2737  0.38    30968 d6d5 d1e1 d5c4 f3d1
 7/16 d6d5 2665  0.83    71844 d6d5 d1g1 d5c4 d2c4 f6d8
 8/16>d6d5 3065  1.12    95748 d6d5 d1g1 d5c4 d2c4 c8b8 f3d1
 8/19 d6d5 3100  1.79   157458 d6d5 d1g1 d5c4 f3h5 f8d6 h5d1
 9/19 d6d5 3117  3.42   310194 d6d5 d1e1 d5c4 h1g1 f6d8 f3d1 e8e3 f2e3
10/22 Td6d5  3118  6.00   539648 d6d5 d1e1 d5c4 d2c4 f6f7 c4d2 g7g6
nps=89866 h/p/q=30.00%/98.00%/0.00% q=77.0% bc=56% br=2.28
mp=1336/1637/-2305/-1679
pawnx=286 recapx=1360 qcheckx=0 checkx=12692 qfutilx=97572 onereplyx=1388
mthrx=8174 futilx=0 bmx=0
+ 8.52/20.69 90% 205/227 bf=2.16 h/p/q=32.70%/96.69%/0.00% 1075.02 119252712
525342/5/110931 628227/332138/929212/4215146/15366967/431925/0/47030
*** Problem   Solution(s): Bxe4 (bm)
[D] r4rk1/1bq1bp1p/4p1p1/p2p4/3BnP2/1N1B3R/PPP3PP/R2Q2K1 w - - bm Bxe4
*** Problem   Solution(s): Bxe4 (bm)
BR ** -- ** -- BR BK **
** BB BQ -- BB BP ** BP
-- ** -- ** BP ** BP **
BP -- ** BP ** -- ** --
-- ** -- WB BN WP -- **
** WN ** WB ** -- ** WR
WP WP WP ** -- ** WP WP
WR -- ** WQ ** -- WK --
mv 1 stage 0, white to move, computer plays white
hash=3b91370da001e9e1
pawnhash=f76b6897e7d1dffd
Alpha=-28 Beta=772 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 4 d4e5 227  0.00       81 d4e5
 2/ 7 d4e5 204  0.01      322 d4e5 e7c5 g1h1
 3/ 9 h3f3 76  0.03     1220 h3f3 f7f5
 4/ 9 d4e3 85  0.09     5457 d4e3 c7d8
 5/14 h3f3 -48  0.26    16710 h3f3 e7f6 c2c3 f6d4 c3d4 mtmt
 6/14 d4e3 -106  0.67    50746 d4e3 e7c5 b3c5 e4c5 c2c3 f7f5
 7/17>d4e3 294  1.64   132641 d4e3 a5a4 b3c1 f7f5
 7/17 d3e4 295  2.05   169364 d3e4 d5e4 d1h5 g6h5 h3g3 e7g5 g3g5
 8/17>d3e4 695  2.54   214013 d3e4 d5e4 d1h5 e7c5 h5c5 f7f5 mtmt
 8/17 d3e4 862  3.31   284096 d3e4 d5e4 d1h5 h7h6 h5h6 e6e5
 9/21 Td3e4  1261  6.05   504846 d3e4 d5e4 d1h5 h7h6 h5h6 e6e5 f4e5 c7e5 d4e5
e7c5 b3c5 a5a4
nps=83487 h/p/q=31.00%/97.00%/0.00% q=82.0% bc=48% br=2.44
mp=2379/2476/-974/-968
pawnx=1196 recapx=1576 qcheckx=0 checkx=6335 qfutilx=118259 onereplyx=902
mthrx=8317 futilx=0 bmx=0
+ 8.52/20.69 90% 206/228 bf=2.16 h/p/q=32.70%/96.69%/0.00% 1081.07 119757560
525252/5/110777 629423/333714/937529/4221481/15485226/432827/0/47030
*** Problem   Solution(s): Rxh4 b4 (bm)
[D] 8/8/8/1p5r/p1p1k1pN/P2pBpP1/1P1K1P2/8 b - - bm Rxh4 b4
*** Problem   Solution(s): Rxh4 b4 (bm)
-- ** -- ** -- ** -- **
** -- ** -- ** -- ** --
-- ** -- ** -- ** -- **
** BP ** -- ** -- ** BR
BP ** BP ** BK ** BP WN
WP -- ** BP WB BP WP --
-- WP -- WK -- WP -- **
** -- ** -- ** -- ** --
mv 1 stage 0, black to move, computer plays black
hash=ed5452faacee4f40
pawnhash=2961b6b7c301242b
Alpha=1175 Beta=1976 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 2 h5e5 1362  0.00       21 h5e5
 2/ 4 h5e5 1600  0.00       77 h5e5 h4g6
 3/ 5 h5h7 1580  0.01      314 h5h7 e3f4
 4/ 7 h5h8 1570  0.01     1252 h5h8 h4g6 h8h2
 5/ 8 h5h8 1574  0.02     2308 h5h8 d2c3 e4d5 e3d2
 6/10 e4d5 1523  0.05     6457 e4d5 h4g6 h5h7 e3f4 h7h2
 7/12 h5h7 1571  0.16    20491 h5h7 d2c3 h7e7 h4g6 e7h7 e3d2
 8/13 h5e5 1566  0.30    39152 h5e5 d2c3 e5e7 e3f4 e7e8 h4g6 e4d5
 9/18 h5e5 1566  0.49    66160 h5e5 d2c3 e5e6 c3d2 e6e5 d2c3 e5e6 c3d2 e6e5 d2c3
e5e6 c3d2 e6e5
10/19 h5e5 1531  0.79   107091 h5e5 d2c3 e4d5 h4g6 e5e3 f2e3 f3f2 g6f4 d5e4 f4d3
11/22 h5h8 1566  2.68   373296 h5h8 h4g6 h8h2 d2c3 e4f5 g6f4 f5e4 f4d3 c4d3 c3d2
mtmt
12/27 Th5h8  1566  6.03   857088 h5h8 e3g5 h8e8 g5e3 e8h8
nps=142184 h/p/q=27.00%/98.00%/0.00% q=73.0% bc=48% br=2.15
mp=2322/4943/-1180/-1406
pawnx=22326 recapx=1048 qcheckx=0 checkx=21139 qfutilx=119216 onereplyx=293
mthrx=8317 futilx=0 bmx=203
- 8.53/20.72 89% 206/229 bf=2.16 h/p/q=32.67%/96.69%/0.00% 1087.10 120614648
526702/5/110951 651749/334762/945846/4242620/15604442/433120/0/47233
*** Problem   Solution(s): Rb4 (bm)
[D] 2b5/1r6/2kBp1p1/p2pP1P1/2pP4/1pP3K1/1R3P2/8 b - - bm Rb4
*** Problem   Solution(s): Rb4 (bm)
-- ** BB ** -- ** -- **
** BR ** -- ** -- ** --
-- ** BK WB BP ** BP **
BP -- ** BP WP -- WP --
-- ** BP WP -- ** -- **
** BP WP -- ** -- WK --
-- WR -- ** -- WP -- **
** -- ** -- ** -- ** --
mv 1 stage 0, black to move, computer plays black
hash=e9005becabfc88e9
pawnhash=1357f526656a8805
Alpha=2136 Beta=2937 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 1>c8d7 2937  0.00       12 c8d7
 1/ 1 a5a4 2980  0.00       30 a5a4
 2/ 3 b7h7 2689  0.00       57 b7h7
 3/ 4 b7h7 2585  0.01      197 b7h7 d6a3
 4/ 6 b7h7 2665  0.01      489 b7h7 d6a3 c8a6
 5/ 7 b7h7 2568  0.01     1120 b7h7 d6a3 c8a6 g3f3
 6/10 a5a4 2694  0.03     4010 a5a4 d6a3 b7h7 g3f3
 7/10 b7h7 2654  0.09    12069 b7h7 d6a3 c8b7 g3g4 c6b5
 8/11 b7h7 2683  0.14    19995 b7h7 d6a3 c8b7 g3f4 h7h4 f4g3 h4h8
 9/14 a5a4 2655  0.28    42376 a5a4 d6a3 c8d7 g3g4 c6b5 mtmt
10/16 a5a4 2771  0.58    92048 a5a4 f2f4 b7h7 g3g2 c6b5 b2b3 c4b3 d6f8 mtmt
11/21 b7h7 2713  2.15   334213 b7h7 d6a3 c6b5 f2f3 h7h1 g3f4 a5a4 f4e3 h1e1 e3f4
c8b7
12/21 b7h7 2712  3.49   531390 b7h7 d6a3 c6b5 f2f4 c8d7 b2b1 a5a4 a3c5
13/26 Tb7h7  2716  6.00   901120 b7h7 d6a3 c6b5 g3f4 c8d7 f2f3 h7f7 f4e3 a5a4
f3f4 f7h7
nps=150137 h/p/q=35.00%/99.00%/0.00% q=58.0% bc=43% br=2.07
mp=3459/3492/-1298/-942
pawnx=14213 recapx=576 qcheckx=0 checkx=16522 qfutilx=73369 onereplyx=37
mthrx=8317 futilx=0 bmx=0
- 8.55/20.74 89% 206/230 bf=2.16 h/p/q=32.68%/96.70%/0.00% 1093.10 121515768
528329/5/111166 665962/335338/954163/4259142/15677811/433157/0/47233
*** Problem   Solution(s): Bg5 (bm)
[D] r4rk1/1b1nqp1p/p5p1/1p2PQ2/2p5/5N2/PP3PPP/R1BR2K1 w - - bm Bg5
*** Problem   Solution(s): Bg5 (bm)
BR ** -- ** -- BR BK **
** BB ** BN BQ BP ** BP
BP ** -- ** -- ** BP **
** BP ** -- WP WQ ** --
-- ** BP ** -- ** -- **
** -- ** -- ** WN ** --
WP WP -- ** -- WP WP WP
WR -- WB WR ** -- WK --
mv 1 stage 0, white to move, computer plays white
hash=ece3fc16f6985ea3
pawnhash=6aab17fd40a92653
Alpha=3672 Beta=4473 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 5 d1d7 4073  0.00       55 d1d7
 2/ 6 f5d7 4387  0.01      448 f5d7 e7d8 d7d8 a8d8
 3/ 9 f5d7 4581  0.01     1088 f5d7 e7d7 d1d7 b7f3
 4/ 9 f5d7 4582  0.03     2518 f5d7 e7d8 c1h6
 5/13<f5d7 4181  0.11    10387 f5d7 e7d7 d1d7 b7c6 d7f7
 5/13 f5d7 4179  0.15    15429 f5d7 f8d8 d7e7 d8d1 f3e1 d1e1
 6/14<f5d7 3778  0.30    31926 f5d7 f8d8 d7b7 e7b7 f3e1 mtmt
 6/15 c1g5 552  0.60    62714 c1g5 b7f3 g5e7 g6f5 g2f3
 7/15 c1g5 599  1.02   109511 c1g5 g6f5 g5e7 b7f3 g2f3 d7e5 e7f8 a8f8
 8/16 c1g5 733  1.69   187334 c1g5 g6f5 g5e7 b7f3 g2f3 d7e5 e7f8 a8f8 g1g2
 9/18 c1g5 711  3.24   357831 c1g5 g6f5 g5e7 b7f3 d1d7 f3c6 d7d1 f8e8
10/18 Tc1g5  866  6.01   671744 c1g5 g6f5 g5e7 b7f3 d1d7 f3c6 d7d6 f8e8 f2f4
e8e7 d6c6
nps=111808 h/p/q=43.00%/98.00%/0.00% q=75.0% bc=53% br=2.65
mp=1866/1704/-1870/-1611
pawnx=9860 recapx=2595 qcheckx=0 checkx=5447 qfutilx=75874 onereplyx=604
mthrx=8317 futilx=0 bmx=0
+ 8.56/20.73 89% 207/231 bf=2.16 h/p/q=32.73%/96.71%/0.00% 1099.11 122187512
528950/5/111170 675822/337933/962480/4264589/15753685/433761/0/47233
*** Problem   Solution(s): Qb5 Rxe8 (bm)
[D] 1R2rq1k/2p3p1/Q2p1pPp/8/4P3/8/P1r3PP/1R4K1 w - - bm Qb5 Rxe8
*** Problem   Solution(s): Qb5 Rxe8 (bm)
-- WR -- ** BR BQ -- BK
** -- BP -- ** -- BP --
WQ ** -- BP -- BP WP BP
** -- ** -- ** -- ** --
-- ** -- ** WP ** -- **
** -- ** -- ** -- ** --
WP ** BR ** -- ** WP WP
** WR ** -- ** -- WK --
mv 1 stage 0, white to move, computer plays white
hash=c762d9fcaadbf338
pawnhash=b93f7b9ba446e5c6
Alpha=-614 Beta=186 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 5>a6a3 186  0.00      187 a6a3
 1/ 5 a6a4 497  0.01      328 a6a4 e8b8 a4c2
 2/ 5 b8b4 436  0.01      567 b8b4
 3/ 8<b8b4 35  0.01     1126 b8b4 e8b8 b4b8
 3/ 8 a6a7 -486  0.02     1776 a6a7 c7c5
 4/12>a6a7 -85  0.03     2588 a6a7 c7c5 b8e8 f8e8 a7g7 h8g7 e4e5
 4/12 a6a7 -48  0.08     6350 a6a7 c2c4 b1b4 c4e4 b4e4 e8b8 a7c7
 5/12 a6a7 213  0.12    11287 a6a7 c2c4 b8e8 f8e8 b1b8 c4c1 g1f2 c1c2 f2g1
 6/13 a6a7 213  0.30    29493 a6a7 c2c4 b8e8 f8e8 b1b8 c4c1 g1f2 c1c2 f2g1 c2c1
g1f2 c1c2 f2g1 c2c1 g1f2 c1c2 f2g1 c2c1
 7/15 b8e8 503  0.58    60315 b8e8 f8e8 a6a4 c2c1 g1f2 c1c6 b1b7
 8/16>b8e8 903  0.62    64873 b8e8 f8e8 a6a4 c2c1 g1f2 c1c6 b1b7 e8g6 f2g1 g6g2
g1g2 h8g8
 8/16 b8e8 903  0.84    89898 b8e8 f8e8 a6a4 c2c1 g1f2 c1c6 b1b7 e8g6 f2g1 g6g2
g1g2 h8g8
 9/16>b8e8 1303  0.93    99556 b8e8 f8e8 a6a4 c2c1 g1f2 c1c6 b1b7 e8g6 f2g1 g6g2
g1g2 h8g8 a4c6
 9/25 b8e8 4394  1.97   220001 b8e8 c2g2 g1g2 f8e8 a6a4 e8g6 g2h1 f6f5 b1b8
10/25<b8e8 3993  4.68   550958 b8e8 c2g2 g1g2 f8e8 a6b7 e8g6 g2h1 g6f7
10/25 b8e8 3993  4.89   577375 b8e8 f8e8 a6a4 c2g2 g1g2 e8g6 g2h1 g6f7 b1b4 f7a2
a4a2
11/26 Tb8e8  3931  6.00   733184 b8e8 f8e8 a6a4 c2g2 g1g2 e8g6 g2h1 g6g4 a4c2
h8h7 e4e5 f6f5 b1g1
nps=122096 h/p/q=35.00%/99.00%/0.00% q=70.0% bc=52% br=2.02
mp=1328/26843596/-1019/-26738600
pawnx=898 recapx=2524 qcheckx=0 checkx=25213 qfutilx=78890 onereplyx=4784
mthrx=9546 futilx=0 bmx=280
+ 8.57/20.75 89% 208/232 bf=2.16 h/p/q=32.74%/96.72%/0.00% 1105.11 122920696
529831/5/111229 676720/340457/972026/4289802/15832575/438545/0/47513
*** Problem   Solution(s): Nb3 (bm)
[D] 5rk1/p1p2r1p/2pp2p1/4p3/PPPnP3/3Pq1P1/1Q1R1R1P/4NK2 b - - bm Nb3
*** Problem   Solution(s): Nb3 (bm)
-- ** -- ** -- BR BK **
BP -- BP -- ** BR ** BP
-- ** BP BP -- ** BP **
** -- ** -- BP -- ** --
WP WP WP BN WP ** -- **
** -- ** WP BQ -- WP --
-- WQ -- WR -- WR -- WP
** -- ** -- WN WK ** --
mv 1 stage 0, black to move, computer plays black
hash=daf489d0bde2553f
pawnhash=b537ab599495ea14
Alpha=270 Beta=1071 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 9>f7f2 1071  0.00      193 f7f2 d2f2 f8f7
 1/ 9 g8g7 1261  0.01      310 g8g7
 2/ 9>f7f2 1661  0.01      827 f7f2 d2f2 f8f7 mtmt
 2/ 9 e3d2 1662  0.01     1084 e3d2 b2d2
 3/10<e3d2 1261  0.04     3032 e3d2 b2d2 f8d8
 3/11 d4e6 825  0.09     7133 d4e6 f2f7 g8f7
 4/14>d4e6 1225  0.12     9571 d4e6 f2f7 f8f7 d2f2 e6g5 f2f7 g5f7
 4/14 d4b3 1226  0.18    15847 d4b3 f2f7 b3d2 b2d2 f8f7
 5/14>d4b3 1626  0.20    17034 d4b3 f2f7 b3d2 b2d2 f8f7
 5/14 d4b3 7721  0.28    26204 d4b3 d2e2 f7f2 e2f2 b3d2 f1g1 e3f2
 6/17<d4b3 7320  0.47    49146 d4b3 d2e2 f7f2 e2f2 b3d2 f1g1 e3f2
 6/17 d4b3 7314  0.75    81812 d4b3 d2c2 f7f2 c2f2 b3d2 f1g1 e3f2
 7/17<d4b3 6913  1.21   137181 d4b3 d2c2 f7f2 c2f2 b3d2 f1g2 f8f2 g2h3 d2e4 d3e4
f2b2
 7/19 d4b3 2504  1.92   218817 d4b3 d2c2 c6c5 f2f7 f8f7 f1g2 e3e1 b2b3 c5b4
 8/19>d4b3 2904  2.16   242377 d4b3 d2c2 c6c5 f2f7 f8f7 f1g2 e3e1 b4c5 b3c5 b2b8
f7f8
 8/21 d4b3 3044  3.60   409460 d4b3 d2c2 f7f2 c2f2 b3d2 b2d2 e3d2 f2f8 g8f8 c4c5
d2b4
 9/21>d4b3 3444  3.86   432449 d4b3 d2c2 f7f2 c2f2 b3d2 b2d2 e3d2 f2f8 g8f8 c4c5
d2b4 c5d6 c7d6
 9/22 Td4b3  3445  6.01   689152 d4b3 d2c2 g8g7 f2f4 f7f4 g3f4 f8f4 c2f2 b3d2
b2d2 e3d2 f2f4 d2b4
nps=114629 h/p/q=41.00%/99.00%/0.00% q=73.0% bc=57% br=2.46
mp=1354/2564/-1558/-1636
pawnx=252 recapx=6250 qcheckx=0 checkx=25183 qfutilx=99285 onereplyx=2314
mthrx=9577 futilx=0 bmx=56
+ 8.57/20.76 89% 209/233 bf=2.16 h/p/q=32.77%/96.73%/0.00% 1111.12 123609848
530514/5/111248 676972/346707/981603/4314985/15931860/440859/0/47569
*** Problem   Solution(s): Rb3 (bm)
[D] 2kr1r2/p6p/5Pp1/2p5/1qp2Q1P/7R/PP6/1KR5 w - - bm Rb3
*** Problem   Solution(s): Rb3 (bm)
-- ** BK BR -- BR -- **
BP -- ** -- ** -- ** BP
-- ** -- ** -- WP BP **
** -- BP -- ** -- ** --
-- BQ BP ** -- WQ -- WP
** -- ** -- ** -- ** WR
WP WP -- ** -- ** -- **
** WK WR -- ** -- ** --
mv 1 stage 0, white to move, computer plays white
hash=ed975bb7353fe4c1
pawnhash=5b4ba23b9cd36214
Alpha=525 Beta=1326 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 4 f4c4 927  0.00       82 f4c4
 2/ 8 f4g4 726  0.01      472 f4g4 c8b8 c1c4
 3/10 c1c4 751  0.03     2338 c1c4 d8d1 b1c2 d1d2 f4d2 b4c4
 4/12 f4g4 608  0.09     8279 f4g4 c8b8 c1c4 b4b7
 5/13>f4g4 1008  0.26    24054 f4g4 c8b7 c1c4 b4e1 c4c1 d8d4
 5/13 h3b3 1059  0.29    26712 h3b3 d8d4 f4d4 b4b3 c1c4
 6/16>h3b3 1459  0.38    36140 h3b3 d8d4 f4d4 b4b3 c1c4
 6/17 h3b3 1798  0.70    71979 h3b3 b4a5 b3b8 c8d7 b8b7 d7c6 f4f3 d8d5 b7h7
 7/21>h3b3 2198  1.03   109943 h3b3 b4a5 b3b8 c8d7 b8b7 d7c6 b7h7 d8d6
 7/23 h3b3 4015  1.82   194324 h3b3 f8f6 f4g4 c8b8 b3b4 c5b4 g4g5 d8d6 c1c4
 8/23 h3b3 4414  2.62   287052 h3b3 b4b3 c1c4 b3c4 f4c4 mtmt
 9/26 h3b3 4813  4.91   560615 h3b3 f8f6 f4g4 c8b8 b3b4 c5b4 c1c4 a7a5 c4c1
10/26 Th3b3  5210  6.00   700416 h3b3 f8f6 f4g4 c8b8 b3b4 c5b4 g4c4 d8f8 c4b4
b8a8 b4e4
nps=116678 h/p/q=31.00%/99.00%/0.00% q=73.0% bc=59% br=2.56
mp=1156/1316/-1257/-1357
pawnx=8785 recapx=1709 qcheckx=0 checkx=36094 qfutilx=64782 onereplyx=2858
mthrx=9578 futilx=0 bmx=151
+ 8.58/20.78 89% 210/234 bf=2.16 h/p/q=32.76%/96.74%/0.00% 1117.13 124310264
531240/5/111277 685757/348416/991181/4351079/15996642/443717/0/47720
*** Problem   Solution(s): Qe4 Qxf7+ Rxf7+ (bm)
[D] 5r2/1p1RRrk1/4Qq1p/1PP3p1/8/4B3/1b3P1P/6K1 w - - bm Qe4 Qxf7+ Rxf7+
*** Problem   Solution(s): Qe4 Qxf7+ Rxf7+ (bm)
-- ** -- ** -- BR -- **
** BP ** WR WR BR BK --
-- ** -- ** WQ BQ -- BP
** WP WP -- ** -- BP --
-- ** -- ** -- ** -- **
** -- ** -- WB -- ** --
-- BB -- ** -- WP -- WP
** -- ** -- ** -- WK --
mv 1 stage 0, white to move, computer plays white
hash=46d1cc42f626a5a2
pawnhash=50b24ba44961101b
Alpha=3692 Beta=4493 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 6>d7b7 4493  0.00       62 d7b7
 1/ 6 e7f7 4495  0.00      197 e7f7 f8f7 e6f6 b2f6
 2/10<e7f7 4094  0.01      657 e7f7 f8f7 e6f6 b2f6 d7b7 f7b7
 2/10 e7f7 4094  0.01      676 e7f7 f8f7 e6f6 b2f6 d7b7 f7b7
 3/11<e7f7 3693  0.04     3812 e7f7 f8f7 e6f6 b2f6 d7b7 f7b7 e3g5
 3/11 e3d4 2276  0.07     6910 e3d4 b2d4
 4/14>e7f7 2676  0.17    18412 e7f7 f8f7 e6f7 f6f7 c5c6 b7c6 e3g5
 4/14 e6e4 3445  0.18    19787 e6e4 f7e7 d7e7 f8f7 e7b7 f7b7 e4b7 g7h8
 5/15 e6e4 3445  0.33    37363 e6e4 f7e7 d7e7 f8f7 e7b7 f7b7 e4b7 g7h8
 6/15 e6e4 3445  0.63    76313 e6e4 f7e7 d7e7 f8f7 e7b7 f7b7 e4b7 g7h8
 7/18 e6e4 3509  1.24   155815 e6e4 f7e7 d7e7 f8f7 e7b7 f7b7 e4b7 g7g6
 8/18>e6e4 3909  1.56   188384 e6e4 f7e7 d7e7 f8f7 e7b7 f7b7 e4b7 g7g6 f2f3
 8/19 e6e4 4209  3.41   414225 e6e4 f7e7 d7e7 f8f7 e7b7 f7b7 e4b7 g7g8 b5b6
 9/22 Te6e4  4213  6.00   770048 e6e4 f7e7 d7e7 f8f7 e7b7 f7b7 e4b7 g7g8 b7a8
g8g7 b5b6
nps=128277 h/p/q=37.00%/99.00%/0.00% q=75.0% bc=55% br=2.76
mp=2942/1388/-1404/-26738600
pawnx=24643 recapx=6297 qcheckx=0 checkx=23629 qfutilx=105543 onereplyx=733
mthrx=9578 futilx=0 bmx=199
+ 8.58/20.78 89% 211/235 bf=2.17 h/p/q=32.78%/96.75%/0.00% 1123.13 125080312
532257/5/111368 710400/354713/1000759/4374708/16102185/444450/0/47919
*** Problem   Solution(s): Rc1 (bm)
[D] 1R6/p5pk/4p2p/4P3/8/2r3qP/P3R1b1/4Q1K1 b - - bm Rc1
*** Problem   Solution(s): Rc1 (bm)
-- WR -- ** -- ** -- **
BP -- ** -- ** -- BP BK
-- ** -- ** BP ** -- BP
** -- ** -- WP -- ** --
-- ** -- ** -- ** -- **
** -- BR -- ** -- BQ WP
WP ** -- ** WR ** BB **
** -- ** -- WQ -- WK --
mv 1 stage 0, black to move, computer plays black
hash=ed245874eddfe2c7
pawnhash=c4e19febaddaa353
Alpha=852 Beta=1653 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 5 g3e1 1253  0.00      123 g3e1 e2e1 g2h3
 2/ 8<g3e1 852  0.01      720 g3e1 e2e1 g2h3 b8e8
 2/ 8 g3e1 852  0.01      726 g3e1 e2e1 g2h3 b8e8
 3/ 9<g3e1 451  0.03     2783 g3e1 e2e1 g2h3 b8d8 mtmt
 3/ 9 g2h3 179  0.05     4790 g2h3 e1g3 c3g3 g1h2
 4/ 9>g2h3 579  0.05     4891 g2h3 e1g3 c3g3 g1h2 h3g4 e2b2
 4/13 g2h3 1097  0.10    10167 g2h3 e1g3 c3g3 g1f2 g3d3
 5/13>g3e1 1497  0.20    21021 g3e1 e2e1 g2h3 g1h2 h7g6 mtmt
 5/13 c3c1 1498  0.23    24789 c3c1 e1c1 g2f3 g1f1 f3e2 f1e2 g3e5
 6/13>c3c1 1898  0.24    27051 c3c1 e1c1 g2f3 g1f1 f3e2 f1e2 g3e5
 6/16 c3c1 2028  0.45    52096 c3c1 e1c1 g2f3 g1f1 f3e2 f1e2 g3e5 c1e3 e5b8 e3e6
 7/19 c3c1 2175  0.98   120462 c3c1 e1c1 g2f3 g1f1 f3e2 f1e2 g3e5 c1e3 e5h2 e2f1
h2b8 e3e6
 8/22 c3c1 2027  2.55   320699 c3c1 e1c1 g2f3 g1f1 f3e2 f1e2 g3e5 c1e3 e5b8 e3e6
b8b2 e2f3 g7g6
 9/24 c3c1 2069  5.84   731799 c3c1 e1c1 g2f3 g1f1 f3e2 f1e2 g3e5 c1e3 e5b8 e3e4
g7g6 e4e6 b8b4
10/25 Tc3c1  2036  6.02   756736 c3c1 e1c1 g2f3 g1f1 f3e2 f1e2 g3e5 c1e3 e5b8
e3e4 g7g6 e4e6 b8b2 e2e3 b2b4
nps=125745 h/p/q=36.00%/99.00%/0.00% q=66.0% bc=58% br=2.30
mp=85/26843596/-1351/-1434
pawnx=238 recapx=2577 qcheckx=0 checkx=54632 qfutilx=35304 onereplyx=4029
mthrx=9578 futilx=0 bmx=92
+ 8.58/20.80 89% 212/236 bf=2.17 h/p/q=32.80%/96.76%/0.00% 1129.15 125837048
533208/5/111444 710638/357290/1010337/4429340/16137489/448479/0/48011
*** Problem   Solution(s): Rc1+ (bm)
[D] r5k1/pQp2qpp/8/4pbN1/3P4/6P1/PPr4P/1K1R3R b - - bm Rc1+
*** Problem   Solution(s): Rc1+ (bm)
BR ** -- ** -- ** BK **
BP WQ BP -- ** BQ BP BP
-- ** -- ** -- ** -- **
** -- ** -- BP BB WN --
-- ** -- WP -- ** -- **
** -- ** -- ** -- WP --
WP WP BR ** -- ** -- WP
** WK ** WR ** -- ** WR
mv 1 stage 0, black to move, computer plays black
hash=796c076c36ff6d18
pawnhash=b2dd61eb0fe3aed3
Alpha=-445 Beta=355 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 3>e5d4 355  0.00       19 e5d4
 1/ 8 c2h2 1495  0.01      295 c2h2 b1a1
 2/ 8 c2h2 1201  0.03     2184 c2h2 b1a1 h2h1 d1h1
 3/13<c2h2 800  0.08     7265 c2h2 b1a1 h2h1 d1h1 e5d4
 3/13 c2h2 800  0.08     7279 c2h2 b1a1 h2h1 d1h1 e5d4
 4/16<c2h2 399  0.29    27542 c2h2 b1a1 h2h1 b7a8
 4/16 c2c6 -875  0.53    49142 c2c6 b1a1 f7e8 d4e5 c6c2
 5/18 f7e8 -770  1.05    99032 f7e8 b7b3 g8f8 g5e6 f8g8 d4e5
 6/19 c2c6 -1101  2.31   231160 c2c6 b1a1 f7e8 b7b3 f5e6 g5e6 e8e6 d4e5 e6b3
a2b3
 7/25>c2c6 -700  4.43   436014 c2c6 b1a1 f7e8 b7b3 f5e6 g5e6 c6e6 d4e5 e8g6
 7/25 Tc2c1  -699  6.01   596992 c2c6 b1a1 f7e8 b7b3 f5e6 g5e6 c6e6 d4e5 e8g6
nps=99300 h/p/q=30.00%/99.00%/0.00% q=76.0% bc=54% br=3.07
mp=1082/1930/-1335/-1314
pawnx=704 recapx=1035 qcheckx=0 checkx=21443 qfutilx=62982 onereplyx=2837
mthrx=9583 futilx=0 bmx=16
- 8.58/20.82 89% 212/237 bf=2.17 h/p/q=32.78%/96.77%/0.00% 1135.16 126434040
533477/5/111380 711342/358325/1019920/4450783/16200471/451316/0/48027
*** Problem   Solution(s): Bxb7 (bm)
[D] 1k1r4/pp1r1pp1/4n1p1/2R5/2Pp1qP1/3P2QP/P4PB1/1R4K1 w - - bm Bxb7
*** Problem   Solution(s): Bxb7 (bm)
-- BK -- BR -- ** -- **
BP BP ** BR ** BP BP --
-- ** -- ** BN ** BP **
** -- WR -- ** -- ** --
-- ** WP BP -- BQ WP **
** -- ** WP ** -- WQ WP
WP ** -- ** -- WP WB **
** WR ** -- ** -- WK --
mv 1 stage 0, white to move, computer plays white
hash=6a07a17eede3cd76
pawnhash=22e99ae122bee2db
Alpha=-256 Beta=544 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 6 c5b5 144  0.01      204 c5b5
 2/ 7 c5b5 117  0.01      565 c5b5 g6g5
 3/ 9 c5e5 33  0.03     1722 c5e5 g6g5
 4/14 g3f4 34  0.08     7235 g3f4 e6f4 c5b5 f4g2 g1g2 d7d6
 5/14>g3f4 434  0.17    14824 g3f4 e6f4 c5b5 b7b6 b5b3
 5/14 g2b7 435  0.21    18430 g2b7 d7b7 b1b7 b8b7 g3g2 b7b8 c5b5 b8c7 g2b7
 6/14>g2b7 835  0.24    20885 g2b7 d7b7 b1b7 b8b7 g3g2 b7b8 c5b5 b8c7 g2b7
 6/14 g2b7 835  0.34    31823 g2b7 d7b7 b1b7 b8b7 g3g2 b7b8 c5b5 b8c7 g2b7 c7d6
b5d5
 7/16>g2b7 1235  0.45    41151 g2b7 d7b7 b1b7 b8b7 g3g2 b7b6 c5b5
 7/20 g2b7 3520  1.30   137249 g2b7 a7a6 b7c8 b8a7 c5c6
 8/23>g2b7 3920  1.68   174916 g2b7 a7a6 b7a6 b8a7 c5a5 g6g5 g3f4 e6f4 a6b7
 8/23 g2b7 3920  2.81   306758 g2b7 a7a6 b7a6 b8a7 c5a5 f4c1 b1c1 e6c5 g3e3
 9/23>g2b7 4320  3.29   358899 g2b7 a7a6 b7a6 b8a7 c5a5 f4c1 b1c1 e6c5 g3e3 d4e3
a5c5
 9/25 Tg2b7  5227  6.08   683008 g2b7 d7b7 b1b7 b8a8 g3f4 e6f4 b7f7 d8b8 f7g7
nps=112281 h/p/q=33.00%/99.00%/0.00% q=73.0% bc=56% br=2.38
mp=1805/1457/-1352/-1608
pawnx=365 recapx=4571 qcheckx=0 checkx=30248 qfutilx=62366 onereplyx=3184
mthrx=9646 futilx=0 bmx=257
+ 8.58/20.84 89% 213/238 bf=2.17 h/p/q=32.79%/96.78%/0.00% 1141.24 127117048
534105/5/111385 711707/362896/1029566/4481031/16262837/454500/0/48284
*** Problem   Solution(s): Qf1+ (bm)
[D] 8/6k1/5pp1/Q6p/5P2/6PK/P4q1P/8 b - - bm Qf1+
*** Problem   Solution(s): Qf1+ (bm)
-- ** -- ** -- ** -- **
** -- ** -- ** -- BK --
-- ** -- ** -- BP BP **
WQ -- ** -- ** -- ** BP
-- ** -- ** -- WP -- **
** -- ** -- ** -- WP WK
WP ** -- ** -- BQ -- WP
** -- ** -- ** -- ** --
mv 1 stage 0, black to move, computer plays black
hash=4e2c821a949c810c
pawnhash=5fae93ca1c4725ee
Alpha=-1966 Beta=-1165 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 4 f6f5 -1574  0.00       83 f6f5
 2/ 7 f2f1 -1859  0.01      325 f2f1 h3h4 f6f5 mtmt
 3/10 g7h6 -1870  0.03     2137 g7h6 a2a4
 4/14 f2f1 -1618  0.05     5096 f2f1 h3h4 f1f2 h2h3
 5/17 f2e2 -1732  0.13    16462 f2e2 a2a4 e2g4 h3g2 g4e2 g2h3 e2g4 h3g2 g4e2
g2h3 e2g4 h3g2 g4e2 g2h3
 6/19 f2e2 -1626  0.29    42910 f2e2 a2a3 e2g4 h3g2 g4e2 g2h3 e2g4 h3g2 g4e2
g2h3 e2g4 h3g2 g4e2 g2h3
 7/21 f2f1 -1624  0.87   133166 f2f1 h3h4 f1c4 a5a7 g7h6 a7f2 g6g5 h4h3 g5g4
h3h4 c4d5
 8/23 f2f1 -1606  2.02   312552 f2f1 h3h4 f1c4 a5d2 g7h6 h4h3 c4c8 h3g2 c8c6
g2f2
 9/25 f2f1 -1606  5.03   777597 f2f1 h3h4 f1c4 a5d2 g7h6 h4h3 c4c8 h3g2 c8c6
g2f2 c6c5 f2f3 c5c6 f3f2
10/27 Tf2f1  -1606  6.00   914434 f2f1 h3h4 f1c4 a5d2 g7h6 h4h3 c4f1 d2g2 f1c4
g2d2 c4f1 d2g2 f1c4 g2d2 c4f1 d2g2 f1c4 g2d2
nps=152355 h/p/q=32.00%/99.00%/0.00% q=60.0% bc=62% br=2.43
mp=1470/26843596/-1333/-26738600
pawnx=1696 recapx=5199 qcheckx=0 checkx=87778 qfutilx=83538 onereplyx=7232
mthrx=9664 futilx=0 bmx=387
+ 8.59/20.86 89% 214/239 bf=2.17 h/p/q=32.78%/96.79%/0.00% 1147.24 128031480
535697/5/111599 713403/368095/1039230/4568809/16346375/461732/0/48671
*** Problem   Solution(s): Qxc6 (bm)
[D] 2b4k/p1b2p2/2p2q2/3p1PNp/3P2R1/3B4/P1Q2PKP/4r3 w - - bm Qxc6
*** Problem   Solution(s): Qxc6 (bm)
-- ** BB ** -- ** -- BK
BP -- BB -- ** BP ** --
-- ** BP ** -- BQ -- **
** -- ** BP ** WP WN BP
-- ** -- WP -- ** WR **
** -- ** WB ** -- ** --
WP ** WQ ** -- WP WK WP
** -- ** -- BR -- ** --
mv 1 stage 0, white to move, computer plays white
hash=9b2980366cdadca6
pawnhash=d7c0ab617ed63b05
Alpha=-938 Beta=-137 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 4<g5f7 -938  0.00      111 g5f7 f6f7
 1/ 6 g5f7 -938  0.01      220 g5f7 f6f7
 2/ 6<g5f7 -1338  0.01      376 g5f7 f6f7 g4g8 h8g8
 2/ 6 g5f7 -1338  0.01      503 g5f7 f6f7 g4g8 h8g8
 3/ 8<g5f7 -1738  0.02      879 g5f7 f6f7 g4g8 h8g8 c2c6
 3/ 8 g5f7 -1836  0.03     1325 g5f7 f6f7 g4g6
 4/11>g5f7 -1435  0.05     3210 g5f7 f6f7 c2c6 h5g4 c6d5
 4/12 c2c6 673  0.10     7687 c2c6 e1g1 g2g1 c7h2 g1h2 f6c6 g5f7
 5/13>c2c6 1073  0.13     9302 c2c6 e1g1 g2g1 c7h2 g1h2 f6c6 g5f7
 5/13 c2c6 1073  0.13    10048 c2c6 e1g1 g2g1 c7h2 g1h2 f6c6 g5f7
 6/16>c2c6 1473  0.17    12914 c2c6 e1g1 g2g1 c7h2 g1h2 f6c6 g5f7
 6/17 c2c6 1473  0.24    19937 c2c6 e1g1 g2g1 c7h2 g1h2 f6c6 g5f7
 7/18>c2c6 1873  0.32    27725 c2c6 e1g1 g2g1 c7h2 g1h2 f6c6 g5f7
 7/19 c2c6 1875  0.61    55598 c2c6 e1g1 g2g1 c7h2 g1h2 f6c6 g5f7 h8h7 f5f6
 8/21>c2c6 2275  0.92    85305 c2c6 e1g1 g2g1 c7h2 g1h1 f6c6 g5f7 h8h7 f5f6
 8/21 c2c6 4381  1.70   169043 c2c6 c7d8 g4g3 h5h4 g5f7 h8h7 f7d8 f6d8
 9/22>c2c6 4781  2.61   254310 c2c6 c7d8 g4g3 h5h4 g5f7 h8h7 f7d8 f6d8 f5f6
 9/26 Tc2c6  7351  6.05   617472 c2c6 c7d8 g5f7 h8h7 f7d8 e1e4 d3e4 f6c6 f5f6
c8f5
nps=102028 h/p/q=22.00%/98.00%/0.00% q=75.0% bc=61% br=2.45
mp=2388/26843596/-1821/-26738600
pawnx=7819 recapx=1432 qcheckx=0 checkx=29127 qfutilx=63887 onereplyx=4784
mthrx=9676 futilx=0 bmx=121
+ 8.59/20.88 89% 215/240 bf=2.17 h/p/q=32.74%/96.79%/0.00% 1153.30 128648952
536037/5/111549 721222/369527/1048906/4597936/16410262/466516/0/48792
*** Problem   Solution(s): Qxh7+ (bm)
[D] 2rq1rk1/pp3ppp/2n2b2/4NR2/3P4/PB5Q/1P4PP/3R2K1 w - - bm Qxh7+
*** Problem   Solution(s): Qxh7+ (bm)
-- ** BR BQ -- BR BK **
BP BP ** -- ** BP BP BP
-- ** BN ** -- BB -- **
** -- ** -- WN WR ** --
-- ** -- WP -- ** -- **
WP WB ** -- ** -- ** WQ
-- WP -- ** -- ** WP WP
** -- ** WR ** -- WK --
mv 1 stage 0, white to move, computer plays white
hash=b5ccd6e41681dfe3
pawnhash=98e99e7095c1eaab
Alpha=196 Beta=997 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 7 b3f7 365  0.00      205 b3f7 f8f7
 2/ 7>b3f7 765  0.00      222 b3f7 f8f7 e5f7
 2/ 9 b3f7 765  0.01      643 b3f7 f8f7 e5f7
 3/12 e5f7 365  0.03     2481 e5f7 f8f7 b3f7 g8f7
 4/13>e5c6 765  0.08     7158 e5c6 b7c6 h3g4 d8e7
 4/15 f5f6 1927  0.13    11793 f5f6 d8f6 b3f7 f8f7 h3c8 f7f8
 5/15>f5f6 2327  0.16    14615 f5f6 d8f6 b3f7 f8f7 h3c8 f7f8 c8b7
 5/16 f5f6 2327  0.23    22809 f5f6 d8f6 b3f7 f8f7 h3c8 f7f8 c8b7
 6/18<f5f6 1926  0.48    49225 f5f6 d8f6 b3f7 f8f7 h3c8 f7f8 c8b7 c6e5
 6/18 f5f6 1925  0.78    82120 f5f6 g7f6 h3g4 g8h8 e5f7 f8f7 b3f7 c8c7 d4d5
 7/21 f5f6 1851  1.58   167819 f5f6 g7f6 h3g4 g8h8 e5f7 f8f7 b3f7 f6f5 g4f3
 8/21>f5f6 2251  2.14   221124 f5f6 g7f6 h3g4 g8h8 e5f7 f8f7 b3f7 f6f5 g4f3 c6d4
f3b7 c8c7
 8/24 h3h7 2252  3.94   440241 h3h7 g8h7 f5h5 h7g8 e5g6 f6d4 g1h1 d8h4 h5h4 c8c7
g6f8 d4b2
 9/24>h3h7 2652  4.51   502519 h3h7 g8h7 f5h5 h7g8 e5g6 f6d4 g1h1 d8h4 h5h4 c8c7
g6f8 d4b2 f8e6 f7e6
 9/24 Th3h7  2652  6.00   674852 h3h7 g8h7 f5h5 h7g8 e5g6 f6d4 g1h1 d8h4 h5h4
c8c7 g6f8 d4b2 f8e6 f7e6
nps=112419 h/p/q=31.00%/98.00%/0.00% q=73.0% bc=52% br=2.48
mp=1791/26843596/-1384/-1366
pawnx=1003 recapx=1268 qcheckx=0 checkx=22178 qfutilx=90205 onereplyx=4270
mthrx=9753 futilx=0 bmx=121
+ 8.59/20.90 89% 216/241 bf=2.18 h/p/q=32.73%/96.80%/0.00% 1159.30 129323808
536613/5/111554 722225/370795/1058659/4620114/16500467/470786/0/48913
*** Problem   Solution(s): Rxd7 (bm)
[D] r1b1r1k1/pp1nqp2/2p1p1pp/8/4N3/P1Q1P3/1P3PPP/1BRR2K1 w - - bm Rxd7
*** Problem   Solution(s): Rxd7 (bm)
BR ** BB ** BR ** BK **
BP BP ** BN BQ BP ** --
-- ** BP ** BP ** BP BP
** -- ** -- ** -- ** --
-- ** -- ** WN ** -- **
WP -- WQ -- WP -- ** --
-- WP -- ** -- WP WP WP
** WB WR WR ** -- WK --
mv 1 stage 0, white to move, computer plays white
hash=bdab0f0e5a34a1ab
pawnhash=826138d43ea51aeb
Alpha=-1036 Beta=-235 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 4 b1a2 -417  0.00      128 b1a2
 2/ 7 b1c2 -451  0.01      355 b1c2
 3/ 7 b1c2 -639  0.01     1121 b1c2 e6e5
 4/10 b1c2 -535  0.04     3764 b1c2 g8h7 e4d6
 5/12>b1c2 -134  0.09     8854 b1c2 a8b8 c3a5 a7a6
 5/12 d1d7 -133  0.12    11469 d1d7 c8d7 e4f6 g8f8 f6h7 f8g8 h7f6 g8f8 f6h7 f8g8
h7f6 g8f8 f6h7 f8g8 h7f6
 6/13 d1d7 -133  0.23    21833 d1d7 c8d7 e4f6 g8f8 f6h7 f8g8 h7f6 g8f8 f6h7 f8g8
h7f6 g8f8 f6h7 f8g8 h7f6
 7/15 d1d7 -133  0.83    42037 d1d7 c8d7 e4f6 g8f8 f6h7 f8g8 h7f6 g8f8 f6h7 f8g8
h7f6 g8f8 f6h7 f8g8 h7f6
 8/19>d1d7 267  0.98    54042 d1d7 c8d7 e4f6 g8f8 f6h7 f8g8 h7f6 g8f8 f6h7 f8g8
h7f6 g8f8 f6h7 f8g8 h7f6
 8/19 d1d7 4427  1.29    92406 d1d7 c8d7 e4f6 g8f8 f6d5 e6e5 d5e7 e8e7
 9/19 d1d7 4384  1.91   169232 d1d7 c8d7 e4f6 e7f6 c3f6 a8d8 b1a2 e8f8
10/22>d1d7 4784  2.57   244452 d1d7 c8d7 e4f6 e7f6 c3f6 a8d8 b1a2 e8f8 c1d1 c6c5
10/22 d1d7 4784  3.61   380109 d1d7 c8d7 e4f6 e7f6 c3f6 h6h5 b1g6 f7g6 f6g6 g8h8
g6h6 h8g8 h6h5
11/24 Td1d7  5119  6.01   680960 d1d7 c8d7 e4f6 g8f8 f6d5 e6e5 c3c6 mtmt
nps=113361 h/p/q=46.00%/98.00%/0.00% q=68.0% bc=48% br=2.11
mp=1298/1907/-998/-1195
pawnx=15 recapx=833 qcheckx=0 checkx=15278 qfutilx=174133 onereplyx=3350
mthrx=9801 futilx=0 bmx=1
+ 8.60/20.91 89% 217/242 bf=2.17 h/p/q=32.79%/96.80%/0.00% 1165.31 130004768
537210/5/111563 722240/371628/1068460/4635392/16674600/474136/0/48914
*** Problem   Solution(s): Qe2 (bm)
[D] 1r3r1k/3p4/1p1Nn1R1/4Pp1q/pP3P1p/P7/5Q1P/6RK w - - bm Qe2
*** Problem   Solution(s): Qe2 (bm)
-- BR -- ** -- BR -- BK
** -- ** BP ** -- ** --
-- BP -- WN BN ** WR **
** -- ** -- WP BP ** BQ
BP WP -- ** -- WP -- BP
WP -- ** -- ** -- ** --
-- ** -- ** -- WQ -- WP
** -- ** -- ** -- WR WK
mv 1 stage 0, white to move, computer plays white
hash=bcb6d42e5475a6a5
pawnhash=651321aef3a1a9fb
Alpha=866 Beta=1667 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 5 b4b5 1267  0.00      100 b4b5
 2/ 7 h2h3 1185  0.01      413 h2h3
 3/10 g6f6 1273  0.02     1611 g6f6 f8f6 e5f6
 4/12 f2e2 1229  0.05     5500 f2e2 h5h7
 5/16 g6f6 1165  0.17    15014 g6f6 f8f6 e5f6 b6b5
 6/18 b4b5 1220  0.51    51802 b4b5 b8a8 f2d2
 7/18 g6f6 1170  1.23   134701 g6f6 e6g7 g1g7 h8g7 d6f5 g7h8
 8/20 f2e2 1114  3.28   376841 f2e2 h5h7 e2f2 b6b5 g6f6 f8f6
 9/21 Tb4b5  1134  6.02   686080 b4b5 h5h7 d6c4 e6c7 c4b6 c7b5 b6c4
nps=113967 h/p/q=24.00%/99.00%/0.00% q=73.0% bc=58% br=2.34
mp=2354/1730/-1548/-26738593
pawnx=9183 recapx=3253 qcheckx=0 checkx=24742 qfutilx=99122 onereplyx=3200
mthrx=9911 futilx=0 bmx=4
- 8.60/20.91 89% 217/243 bf=2.18 h/p/q=32.75%/96.81%/0.00% 1171.33 130690848
537822/5/111575 731423/374881/1078371/4660134/16773722/477336/0/48918
*** Problem   Solution(s): Qxc5+ (bm)
[D] r6r/pp3ppp/3k1b2/2pb4/B4Pq1/2P1Q3/P5PP/1RBR2K1 w - - bm Qxc5+
*** Problem   Solution(s): Qxc5+ (bm)
BR ** -- ** -- ** -- BR
BP BP ** -- ** BP BP BP
-- ** -- BK -- BB -- **
** -- BP BB ** -- ** --
WB ** -- ** -- WP BQ **
** -- WP -- WQ -- ** --
WP ** -- ** -- ** WP WP
** WR WB WR ** -- WK --
mv 1 stage 0, white to move, computer plays white
hash=2212586e2eeb321c
pawnhash=407ce5e19bdc1ed6
Alpha=-1407 Beta=-606 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 3>c1a3 -606  0.00       39 c1a3
 1/ 5 b1b2 -147  0.00      150 b1b2
 2/ 7 e3e4 -157  0.01      716 e3e4
 3/11>e3e4 243  0.03     1619 e3e4 g4d1 a4d1 d5e4
 3/11 Me3c5  99975  0.04     2780 e3c5 d6c5 c1a3 c5c4 a4b5 c4c3 b1c1
nps=71282 h/p/q=29.00%/91.00%/0.00% q=82.0% bc=72% br=1.96 mp=916/76/0/-1094
pawnx=0 recapx=1 qcheckx=0 checkx=218 qfutilx=502 onereplyx=25 mthrx=9911
futilx=0 bmx=0
+ 8.58/20.87 89% 218/244 bf=2.17 h/p/q=32.73%/96.79%/0.00% 1171.36 130693632
535630/5/111574 731423/374882/1088282/4660352/16774224/477361/0/48918
*** Problem   Solution(s): Qxg6+ (bm)
[D] 4rrn1/ppq3bk/3pPnpp/2p5/2PB4/2NQ1RPB/PP5P/5R1K w - - bm Qxg6+
*** Problem   Solution(s): Qxg6+ (bm)
-- ** -- ** BR BR BN **
BP BP BQ -- ** -- BB BK
-- ** -- BP WP BN BP BP
** -- BP -- ** -- ** --
-- ** WP WB -- ** -- **
** -- WN WQ ** WR WP WB
WP WP -- ** -- ** -- WP
** -- ** -- ** WR ** WK
mv 1 stage 0, white to move, computer plays white
hash=572572d2836c6a15
pawnhash=6053f7bf1ef52ad4
Alpha=582 Beta=1383 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/10 d4e3 1012  0.00      215 d4e3
 2/10 c3b5 964  0.01      724 c3b5
 3/11>c3b5 1364  0.01      955 c3b5 c5d4 b5c7
 3/12 c3b5 2055  0.03     2362 c3b5 c7e7 d4f6 g8f6 d3d6
 4/14 c3b5 2055  0.07     5788 c3b5 c7e7 d4f6 g8f6 d3d6
 5/17 c3b5 2058  0.20    17899 c3b5 c7e7 d4f6 g7f6 d3d6 e8a8
 6/18>c3b5 2458  0.58    55004 c3b5 c7e7 d4f6 f8f6 f3f6 g7f6 b5d6 e8f8
 6/18 d3g6 4423  0.88    85089 d3g6 h7h8 d4f6 g7f6 f3f6 g8f6 f1f6 f8f6 g6e8
 7/18>d3g6 4823  0.96    92765 d3g6 h7h8 d4f6 g7f6 f3f6 g8f6 f1f6 c7c6 c3d5 e8e6
g6h6 h8g8 mtmt
 7/19 d3g6 4823  1.33   132555 d3g6 h7h8 d4f6 g7f6 f3f6 g8f6 f1f6 c7c6 c3d5 e8e6
g6h6 h8g8 mtmt
 8/21 d3g6 5013  3.36   288318 d3g6 h7h8 d4f6 g7f6 f3f6 g8f6 f1f6 c7g7 f6f8 g7f8
b2b3
 9/22>d3g6 5413  4.29   351147 d3g6 h7h8 d4f6 g7f6 f3f6 g8f6 f1f6 c7g7 f6f8 g7f8
b2b3 e8e7
 9/22 Td3g6  5413  6.00   483328 d3g6 h7h8 d4f6 g7f6 f3f6 g8f6 f1f6 c7g7 f6f8
g7f8 b2b3 e8e7
nps=80555 h/p/q=33.00%/99.00%/0.00% q=78.0% bc=53% br=2.43
mp=2186/1295/-1220/-1200
pawnx=5583 recapx=3233 qcheckx=0 checkx=11388 qfutilx=90913 onereplyx=1626
mthrx=9911 futilx=0 bmx=101
+ 8.58/20.87 89% 219/245 bf=2.18 h/p/q=32.73%/96.80%/0.00% 1177.36 131176960
535416/5/111416 737006/378115/1098193/4671740/16865136/478987/0/49019
*** Problem   Solution(s): Qh5+ (bm)
[D] 6R1/4qp1p/ppr1n1pk/8/1P2P1QP/6N1/P4PP1/6K1 w - - bm Qh5+
*** Problem   Solution(s): Qh5+ (bm)
-- ** -- ** -- ** WR **
** -- ** -- BQ BP ** BP
BP BP BR ** BN ** BP BK
** -- ** -- ** -- ** --
-- WP -- ** WP ** WQ WP
** -- ** -- ** -- WN --
WP ** -- ** -- WP WP **
** -- ** -- ** -- WK --
mv 1 stage 0, white to move, computer plays white
hash=3710d0a35a1ad280
pawnhash=a30cc0f56b1a3b1f
Alpha=1453 Beta=2254 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 5>Mg4h5  99993  0.00       78 g4h5 g6h5 g3f5
nps=26000 h/p/q=0.00%/66.00%/0.00% q=76.0% bc=53% br=0.00 mp=0/296/0/-921
pawnx=0 recapx=0 qcheckx=0 checkx=13 qfutilx=13 onereplyx=2 mthrx=9911 futilx=0
bmx=0
+ 8.55/20.81 89% 220/246 bf=2.18 h/p/q=32.60%/96.67%/0.00% 1177.37 131177040
533240/5/111416 737006/378115/1108104/4671753/16865148/478989/0/49019
*** Problem   Solution(s): Rxb5 (bm)
[D] 2k1r3/1p2Bq2/p2Qp3/Pb1p1p1P/2pP1P2/2P5/2P2KP1/1R6 w - - bm Rxb5
*** Problem   Solution(s): Rxb5 (bm)
-- ** BK ** BR ** -- **
** BP ** -- WB BQ ** --
BP ** -- WQ BP ** -- **
WP BB ** BP ** BP ** WP
-- ** BP WP -- WP -- **
** -- WP -- ** -- ** --
-- ** WP ** -- WK WP **
** WR ** -- ** -- ** --
mv 1 stage 0, white to move, computer plays white
hash=61402d67e840f6f9
pawnhash=e1f496d8416a0778
Alpha=1337 Beta=2138 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 4 e7h4 1491  0.00      156 e7h4
 2/ 7 e7g5 1094  0.02      851 e7g5
 3/ 7 d6c5 1001  0.03     2055 d6c5 b5c6 e7h4 f7h5
 4/10 e7g5 998  0.07     5665 e7g5 f7h5 f2g1
 5/12>e7g5 1398  0.15    11751 e7g5 f7h5 d6c5 c8b8 f2g1
 5/12 d6c5 1398  0.25    20451 d6c5 c8d7 e7d6 e8c8 f2g1
 6/15 d6c5 1382  0.58    50906 d6c5 c8d7 e7d6 e8c8 c5b6 f7h5 b6b7
 7/16 d6c5 1382  1.01    90087 d6c5 c8d7 c5d6 d7c8 d6c5 c8d7 c5d6 d7c8 d6c5 c8d7
c5d6 d7c8
 8/24>d6c5 1782  2.13   187286 d6c5 c8d7 c5d6 d7c8 d6c5 c8d7 c5d6 d7c8 d6c5 c8d7
c5d6 d7c8
 8/24 b1b5 6761  3.44   295663 b1b5 a6b5 a5a6 f7e7 d6e7 e8e7 a6a7 c8d7 a7a8Q
 9/24<b1b5 6360  4.24   391230 b1b5 a6b5 a5a6 f7e7 d6e7 e8e7 a6a7 b5b4 a7a8Q
c8d7 a8b7
 9/24 b1b5 6360  4.92   446799 b1b5 a6b5 a5a6 f7e7 d6e7 b7a6 e7e8
10/27<Tb1b5  5959  6.02   563200 b1b5 a6b5 a5a6 f7e7 d6e7 b7a6 e7e8
nps=93524 h/p/q=40.00%/98.00%/0.00% q=67.0% bc=56% br=2.17
mp=1980/602/-901/-1129
pawnx=16856 recapx=726 qcheckx=0 checkx=27921 qfutilx=100058 onereplyx=3734
mthrx=9913 futilx=0 bmx=64
+ 8.55/20.83 89% 221/247 bf=2.18 h/p/q=32.63%/96.68%/0.00% 1183.39 131740240
533361/5/111325 753862/378841/1118017/4699674/16965206/482723/0/49083
*** Problem   Solution(s): Qc5+ (bm)
[D] 5r1k/1p4pp/3q4/3Pp1R1/8/8/PP4PP/4Q1K1 b - - bm Qc5+
*** Problem   Solution(s): Qc5+ (bm)
-- ** -- ** -- BR -- BK
** BP ** -- ** -- BP BP
-- ** -- BQ -- ** -- **
** -- ** WP BP -- WR --
-- ** -- ** -- ** -- **
** -- ** -- ** -- ** --
WP WP -- ** -- ** WP WP
** -- ** -- WQ -- WK --
mv 1 stage 0, black to move, computer plays black
hash=781e5ca88481725c
pawnhash=1832f2309cb0c952
Alpha=-1930 Beta=-1129 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 4>d6d5 -1129  0.00        2 d6d5
 1/ 6 d6d5 -1129  0.00       74 d6d5
 2/ 6 f8e8 -1463  0.01      405 f8e8
 3/ 6>f8e8 -1062  0.01      565 f8e8 e1a5
 3/ 8 d6d5 20  0.02     1246 d6d5 g5e5 d5a2
 4/10 d6c5 -12  0.05     3573 d6c5 g1h1 c5d5 g5e5 d5a2
 5/11 d6c5 -56  0.10     8707 d6c5 g1h1 c5d5 g5e5 d5a2 e5e8 f8e8 e1e8
 6/13 d6c5 -25  0.25    22131 d6c5 g1h1 c5d5 b2b3 f8e8 g5f5
 7/17 d6c5 32  0.51    47749 d6c5 g1h1 c5d5 a2a3 d5a2 g5e5 a2b2
 8/18 d6c5 289  1.06   102420 d6c5 g1h1 c5d5 h2h3 d5a2 e1e5 f8f6
 9/21 d6c5 289  2.61   246579 d6c5 g1h1 c5b5 h1g1 b5c5 g1h1 c5b5 h1g1 b5c5 g1h1
c5b5 h1g1 b5c5
10/24 d6c5 289  5.96   576655 d6c5 g1h1 c5b5 h1g1 b5c5 g1h1 c5b5 h1g1 b5c5 g1h1
c5b5 h1g1 b5c5
11/24 Td6c5  289  6.07   586752 d6c5 g1h1 c5b5 h1g1 b5c5 g1h1 c5b5 h1g1 b5c5
g1h1 c5b5 h1g1 b5c5
nps=96712 h/p/q=37.00%/98.00%/0.00% q=68.0% bc=52% br=1.87
mp=2327/26843596/-824/-1137
pawnx=1555 recapx=1443 qcheckx=0 checkx=24472 qfutilx=51947 onereplyx=4177
mthrx=9920 futilx=0 bmx=59
+ 8.56/20.85 89% 222/248 bf=2.17 h/p/q=32.65%/96.68%/0.00% 1189.46 132326992
533577/5/111250 755417/380284/1127937/4724146/17017152/486900/0/49142
*** Problem   Solution(s): c5 d5 (bm)
[D] r4rk1/pbq2pp1/1ppbpn1p/8/2PP4/1P1Q1N2/PBB2PPP/R3R1K1 w - - bm c5 d5
*** Problem   Solution(s): c5 d5 (bm)
BR ** -- ** -- BR BK **
BP BB BQ -- ** BP BP --
-- BP BP BB BP BN -- BP
** -- ** -- ** -- ** --
-- ** WP WP -- ** -- **
** WP ** WQ ** WN ** --
WP WB WB ** -- WP WP WP
WR -- ** -- WR -- WK --
mv 1 stage 0, white to move, computer plays white
hash=d9ad10b95bf83531
pawnhash=286870a25aba92ed
Alpha=-327 Beta=473 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 4 h2h3 123  0.00       91 h2h3
 2/ 8 h2h4 121  0.01      408 h2h4
 3/10 d3d1 58  0.04     1818 d3d1 f6g4
 4/10 d3d1 114  0.08     4289 d3d1 c7d8 h2h3
 5/13 d3d1 149  0.16    10264 d3d1 d6b4 e1e5 c7d8
 6/14>c4c5 549  0.83    48966 c4c5 d6f4 g2g3 f4g5 f3g5 h6g5
 6/14 d4d5 1298  1.17    69358 d4d5 e6e5 d5c6 b7c6 f3e5 d6e5 b2e5
 7/17<d4d5 897  1.79   110968 d4d5 e6e5 d5c6 c7c6 b2e5 d6b4 e5c3
 7/17 d4d5 749  2.80   167539 d4d5 e6e5 d5c6 e5e4 c6b7 e4d3 b7a8N f8a8 c2d3
 8/21 Tc4c5  738  6.00   377856 c4c5 d6e7 d4d5 c7d7 d5d6
nps=62976 h/p/q=40.00%/96.00%/0.00% q=81.0% bc=53% br=2.83
mp=2922/2375/-1492/-1362
pawnx=2270 recapx=2838 qcheckx=0 checkx=4036 qfutilx=53798 onereplyx=633
mthrx=9920 futilx=0 bmx=0
+ 8.56/20.85 89% 223/249 bf=2.18 h/p/q=32.68%/96.68%/0.00% 1195.46 132704848
532951/5/111008 757687/383122/1137857/4728182/17070950/487533/0/49142
*** Problem   Solution(s): Re8+ (bm)
[D] 1b5k/7P/p1p2np1/2P2p2/PP3P2/4RQ1R/q2r3P/6K1 w - - bm Re8+
*** Problem   Solution(s): Re8+ (bm)
-- BB -- ** -- ** -- BK
** -- ** -- ** -- ** WP
BP ** BP ** -- BN BP **
** -- WP -- ** BP ** --
WP WP -- ** -- WP -- **
** -- ** -- WR WQ ** WR
BQ ** -- BR -- ** -- WP
** -- ** -- ** -- WK --
mv 1 stage 0, white to move, computer plays white
hash=1d175b04f2f5b619
pawnhash=d48514b4dfe1a6f9
Alpha=2918 Beta=3719 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 5 f3c6 3319  0.00       42 f3c6
 2/10<f3c6 2918  0.01      188 f3c6 f6h7
 2/11 e3a3 1554  0.02      801 e3a3
 3/11<e3a3 1153  0.03     1330 e3a3 f6h7 a3a2
 3/12 e3e1 -205  0.05     2572 e3e1 a2a4
 4/12>e3e1 195  0.06     3080 e3e1 a2a4 f3f1
 4/13 e3e1 758  0.11     6228 e3e1 a2a4 e1e7
 5/13>e3e1 1158  0.16     9383 e3e1 a2a4 e1e7 a4b4 f3c6
 5/17 e3e1 1247  0.27    17062 e3e1 a2d5 f3f1 f6h7
 6/22>e3e1 1647  0.55    36070 e3e1 a2d5 f3d5 d2d5 e1e6 d5d1 g1f2 f6h7 e6c6
 6/22 e3e8 1648  0.61    39725 e3e8 f6e8 f3c3 e8g7 c3g7 h8g7 h7h8Q g7f7 h3h7
f7e6 h8g8 e6f6 g8g7
 7/22>e3e8 2048  0.69    44013 e3e8 f6e8 f3c3 e8g7 c3g7 h8g7 h7h8Q g7f7 h3h7
f7e6 h8g8 e6f6 g8g7
 7/22 e3e8 2048  0.82    52862 e3e8 f6e8 f3c3 e8g7 c3g7 h8g7 h7h8Q g7f7 h3h7
f7e6 h8g8 e6f6 g8g7 f6e6 g7f7
 8/27>e3e8 2448  1.67   106679 e3e8 f6e8 f3c3 b8e5 c3e5 e8g7 e5g7 h8g7 h7h8Q
 8/27 Te3e8  99899  6.01   483331 e3e8 f6e8 f3c3 d2d4 c3d4 b8e5 f4e5 a2b1 g1g2
b1c2 g2g1 c2b1 g1g2 b1c2
nps=80475 h/p/q=11.00%/99.00%/0.00% q=74.0% bc=58% br=4.08
mp=2342/26843596/-1072/-26738600
pawnx=4431 recapx=634 qcheckx=0 checkx=30904 qfutilx=38948 onereplyx=3145
mthrx=9932 futilx=0 bmx=6
+ 8.56/20.87 89% 224/250 bf=2.19 h/p/q=32.59%/96.69%/0.00% 1201.46 133188176
532753/5/110855 762118/383756/1147789/4759086/17109898/490678/0/49148
*** Problem   Solution(s): Qe5 Qf4 (bm)
[D] k7/p4p2/P1q1b1p1/3p3p/3Q4/7P/5PP1/1R4K1 w - - bm Qe5 Qf4
*** Problem   Solution(s): Qe5 Qf4 (bm)
BK ** -- ** -- ** -- **
BP -- ** -- ** BP ** --
WP ** BQ ** BB ** BP **
** -- ** BP ** -- ** BP
-- ** -- WQ -- ** -- **
** -- ** -- ** -- ** WP
-- ** -- ** -- WP WP **
** WR ** -- ** -- WK --
mv 1 stage 0, white to move, computer plays white
hash=13dd84179a252a36
pawnhash=ab2f025e782238b6
Alpha=1231 Beta=2032 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 4 d4h8 1466  0.00      142 d4h8 c6c8
 2/ 8 d4h8 1354  0.01      640 d4h8 c6c8 h8c8 e6c8 b1a1
 3/10 d4d3 1409  0.03     1928 d4d3 c6c4
 4/12 d4e5 1473  0.09     7246 d4e5 c6c4
 5/14 d4h8 1568  0.19    16874 d4h8 c6c8 h8e5 h5h4 b1b7
 6/14>d4f4 1968  0.32    28350 d4f4 c6c8 b1b7 c8c3
 6/16 d4b4 2113  0.42    38241 d4b4 c6c8 b4b7 c8b7 a6b7 a8b8 b1b4
 7/19 d4b4 1943  0.73    69762 d4b4 c6c8 b4b7 c8b7 a6b7 a8b8 g1h2 e6f5 b1b4
 8/22 d4b4 1781  2.01   181209 d4b4 c6c7 b4b7 c7b7 a6b7 a8b8 b1b2 e6f5 g1h2 mtmt
 9/22>d4b4 2181  2.64   232702 d4b4 c6c7 b4b3 c7c8 b3b7 c8b7 a6b7 a8b8 g1h2 a7a5
f2f3 d5d4 h2g3 mtmt
 9/24 d4e5 4627  4.89   421895 d4e5 c6c8 e5d6 e6h3 g2h3 d5d4 g1h2
10/24>d4e5 5027  5.34   456516 d4e5 c6c8 e5d6 e6d7 d6d5 c8c6 d5b3 c6c7
10/24 Td4e5  99956  6.07   525313 d4e5 c6c8 e5d6 e6g4 d6d5 c8c6
nps=86514 h/p/q=38.00%/97.00%/0.00% q=63.0% bc=54% br=2.01
mp=1188/565/-505/-1171
pawnx=1972 recapx=1706 qcheckx=0 checkx=30194 qfutilx=62174 onereplyx=4611
mthrx=10136 futilx=0 bmx=81
+ 8.57/20.88 89% 225/251 bf=2.18 h/p/q=32.61%/96.69%/0.00% 1207.53 133713488
532723/5/110733 764090/385462/1157925/4789280/17172072/495289/0/49229
*** Problem   Solution(s): Bg4 Re2 (bm)
[D] 1rb1r1k1/p1p2ppp/5n2/2pP4/5P2/2QB4/qNP3PP/2KRB2R b - - bm Bg4 Re2
*** Problem   Solution(s): Bg4 Re2 (bm)
-- BR BB ** BR ** BK **
BP -- BP -- ** BP BP BP
-- ** -- ** -- BN -- **
** -- BP WP ** -- ** --
-- ** -- ** -- WP -- **
** -- WQ WB ** -- ** --
BQ WN WP ** -- ** WP WP
** -- WK WR WB -- ** WR
mv 1 stage 0, black to move, computer plays black
hash=d3e8334c36b0abc9
pawnhash=d4cf0c4c3a5901d3
Alpha=-1377 Beta=-576 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 7>c8g4 -576  0.00      110 c8g4
 1/ 7 a2a1 252  0.01      189 a2a1 c1d2 a1b2 c3c5
 2/10>a2a1 652  0.02      820 a2a1 c1d2 a1b2 c3c5
 2/10 f6d5 1553  0.03     1286 f6d5 d3h7 g8h7
 3/13 f6d5 1862  0.07     3244 f6d5 d3h7 g8h7 c3d3 h7g8
 4/14 f6d5 1665  0.18     9180 f6d5 d3h7 g8h7 c3d3 h7g8 d3d5 a2b2
 5/15>f6d5 2065  0.21    11231 f6d5 d3h7 g8h7 c3d3 h7g8 d3d5 a2b2
 5/19 f6d5 2065  0.41    23331 f6d5 d3h7 g8h7 c3d3 h7g8 d3d5 a2b2
 6/19>f6d5 2465  0.51    28219 f6d5 d3h7 g8h7 c3d3 h7g8 d3d5 a2b2
 6/19 f6d5 2465  1.10    63824 f6d5 d3h7 g8h7 c3d3 h7g8 d3d5 a2b2
 7/19>f6d5 2865  1.33    77758 f6d5 d3h7 g8h7 c3d3 h7g8 d3d5 a2b2
 7/19 f6d5 2865  2.94   168422 f6d5 d3h7 g8h7 c3d3 h7g8 d3d5 a2b2 c1d2 c8g4 d5c5
g4d1
 8/21 Tf6d5  3236  6.01   350208 f6d5 d3c4 d5c3 c4a2 c3a2 c1b1 c8e6
nps=58261 h/p/q=32.00%/99.00%/0.00% q=78.0% bc=62% br=2.22
mp=1797/1985/-1641/-1403
pawnx=346 recapx=688 qcheckx=0 checkx=10900 qfutilx=55590 onereplyx=1047
mthrx=10136 futilx=0 bmx=0
- 8.56/20.88 89% 225/252 bf=2.18 h/p/q=32.61%/96.70%/0.00% 1213.55 134063696
531999/5/110473 764436/386150/1168061/4800180/17227662/496336/0/49229
*** Problem   Solution(s): Qe8+ (bm)
[D] k5r1/p4b2/2P5/5p2/3P1P2/4QBrq/P5P1/4R1K1 w - - bm Qe8+
*** Problem   Solution(s): Qe8+ (bm)
BK ** -- ** -- ** BR **
BP -- ** -- ** BB ** --
-- ** WP ** -- ** -- **
** -- ** -- ** BP ** --
-- ** -- WP -- WP -- **
** -- ** -- WQ WB BR BQ
WP ** -- ** -- ** WP **
** -- ** -- WR -- WK --
mv 1 stage 0, white to move, computer plays white
hash=c606827c9d629dfb
pawnhash=f89de824e976f33b
Alpha=-1245 Beta=-444 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 7 d4d5 -473  0.00       47 d4d5
 2/ 7 a2a4 -849  0.01      231 a2a4
 3/ 9>Me3e8  99971  0.01      559 e3e8 g8e8 e1e8 f7e8 c6c7 g3f3 c7c8Q
nps=43000 h/p/q=18.00%/91.00%/0.00% q=78.0% bc=85% br=1.42 mp=2365/868/0/-1133
pawnx=9 recapx=1 qcheckx=0 checkx=37 qfutilx=62 onereplyx=5 mthrx=10136 futilx=0
bmx=0
+ 8.54/20.84 89% 226/253 bf=2.18 h/p/q=32.55%/96.68%/0.00% 1213.56 134064256
529898/5/110472 764445/386151/1178197/4800217/17227724/496341/0/49229
*** Problem   Solution(s): Nxh3 (bm)
[D] r6k/pp3p1p/2p1bp1q/b3p3/4Pnr1/2PP2NP/PP1Q1PPN/R2B2RK b - - bm Nxh3
*** Problem   Solution(s): Nxh3 (bm)
BR ** -- ** -- ** -- BK
BP BP ** -- ** BP ** BP
-- ** BP ** BB BP -- BQ
BB -- ** -- BP -- ** --
-- ** -- ** WP BN BR **
** -- WP WP ** -- WN WP
WP WP -- WQ -- WP WP WN
WR -- ** WB ** -- WR WK
mv 1 stage 0, black to move, computer plays black
hash=ba5a21602167ce7f
pawnhash=80ae8e5ad19b1c4f
Alpha=-1750 Beta=-949 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 5>f4h3 -949  0.00       56 f4h3
 1/ 5 g4g8 -381  0.01      138 g4g8
 2/ 5 g4g7 -633  0.01      236 g4g7
 3/ 5>g4g7 -232  0.02      482 g4g7 h2f3 a8g8
 3/ 8 f4h3 622  0.04     1411 f4h3 d2c2
 4/ 8>f4h3 1022  0.05     1881 f4h3 d1g4 h6d2 g2h3
 4/10 f4h3 1569  0.08     3462 f4h3 g3f1 h6d2 f1d2 h3f2
 5/10>f4h3 1969  0.10     4399 f4h3 g3f1 h6d2 h2g4 h3f2
 5/14 f4h3 2361  0.21    11124 f4h3 d1g4 h6d2 g2h3 e6g4 h2g4 d2b2
 6/14 f4h3 2490  0.45    23738 f4h3 d1g4 h6d2 g2h3 d2b2 g4e6 f7e6
 7/14>f4h3 2890  0.60    32181 f4h3 d1g4 h6d2 g2h3 d2b2 g4e6 f7e6 g3f1
 7/14 f4h3 3209  1.06    58836 f4h3 d1g4 h6d2 g2h3 d2b2 g4e6 f7e6 a1b1 b2a2 b1b7
a5c3
 8/16 f4h3 2953  2.08   116822 f4h3 d1g4 h6d2 g2h3 d2b2 a1b1 b2a2 b1b7 a2f2
 9/20 f4h3 3311  4.03   233035 f4h3 d1g4 h6d2 g2h3 d2b2 a1b1 b2c3 b1b7 c3d3
10/20 Tf4h3  3478  6.03   360448 f4h3 d1g4 h6d2 g2h3 d2b2 a1b1 b2c3 b1b7 c3d3
a2a4 e6g4 h3g4
nps=59825 h/p/q=47.00%/97.00%/0.00% q=77.0% bc=49% br=2.14
mp=725/1273/-1374/-1130
pawnx=60 recapx=638 qcheckx=0 checkx=2456 qfutilx=104872 onereplyx=927
mthrx=10136 futilx=0 bmx=0
+ 8.55/20.83 89% 227/254 bf=2.18 h/p/q=32.61%/96.68%/0.00% 1219.58 134424704
529231/5/110222 764505/386789/1188333/4802673/17332596/497268/0/49229
*** Problem   Solution(s): Rfxg6+ (bm)
[D] 3r3r/p4pk1/5Rp1/3q4/1p1P2RQ/5N2/P1P4P/2b4K w - - bm Rfxg6+
*** Problem   Solution(s): Rfxg6+ (bm)
-- ** -- BR -- ** -- BR
BP -- ** -- ** BP BK --
-- ** -- ** -- WR BP **
** -- ** BQ ** -- ** --
-- BP -- WP -- ** WR WQ
** -- ** -- ** WN ** --
WP ** WP ** -- ** -- WP
** -- BB -- ** -- ** WK
mv 1 stage 0, white to move, computer plays white
hash=8bf419f8bfebf897
pawnhash=cafbdd3ca984a55b
Alpha=-635 Beta=165 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 6<h4h8 -635  0.01       98 h4h8 d8h8
 1/ 6 c2c4 -5427  0.01      230 c2c4
 2/ 6>c2c4 -5026  0.01      284 c2c4 h8h4
 2/ 7 f6g6 -5025  0.02      698 f6g6 f7g6 h4e7 g7g8
 3/ 8>f6g6 -4624  0.08      792 f6g6 f7g6 h4e7 d5f7 e7f7 g7f7 mtmt
 3/ 8 f6g6 -4624  0.11     1571 f6g6 f7g6 h4e7 d5f7 e7f7 g7f7 mtmt
 4/11>f6g6 -4223  0.12     1820 f6g6 f7g6 h4e7 d5f7 e7b4 f7f3
 4/12 f6g6 1563  0.15     4057 f6g6 f7g6 h4e7 d5f7 g4g6 g7g6 f3e5 g6h6 e5f7
 5/14 f6g6 1698  0.22     8672 f6g6 f7g6 h4e7 d5f7 g4g6 g7g6 f3e5 g6f5 e7f7
 6/18 f6g6 1886  0.48    26933 f6g6 f7g6 h4e7 g7h6 g4h4 d5h5 h4h5 g6h5 e7f6 h6h7
f6f7 h7h6 f7f6 h6h7 f6f7 h7h6 f7a7
 7/22>f6g6 2286  0.65    38383 f6g6 f7g6 h4e7 g7h6 g4h4 d5h5 h4h5 g6h5 e7f6 h6h7
f6f7 h7h6 f7a7 d8c8 a7a4
 7/22 f6g6 2286  1.01    62572 f6g6 f7g6 h4e7 g7h6 g4h4 d5h5 h4h5 g6h5 e7f6 h6h7
f6f7 h7h6 f7a7 d8c8 a7a4
 8/24>f6g6 2686  1.80   117501 f6g6 f7g6 h4e7 g7h6 g4h4 d5h5 h4h5 g6h5 f3e5 h8e8
e7b4
 8/24 f6g6 3523  2.84   186817 f6g6 f7g6 h4e7 g7h6 g4h4 d5h5 f3e5 d8d4 e5f7 h6g7
f7h8 g7h8 h4d4
 9/24>f6g6 3923  3.50   234909 f6g6 f7g6 h4e7 g7h6 g4h4 d5h5 f3e5 d8d4 e5f7 h6g7
f7h8 g7h8 h4d4 c1a3
 9/24 Tf6g6  5697  6.02   415744 f6g6 f7g6 h4e7 d5f7 g4g6 g7g6 f3e5 g6f5 e5f7
h8e8 e7c5 f5e4 f7d8 e8d8 c5b4 d8d4
nps=69083 h/p/q=36.00%/99.00%/0.00% q=70.0% bc=61% br=2.39
mp=1332/1449/-26738589/-1095
pawnx=964 recapx=495 qcheckx=0 checkx=29622 qfutilx=30189 onereplyx=1715
mthrx=10263 futilx=0 bmx=240
- 8.55/20.85 89% 227/255 bf=2.18 h/p/q=32.62%/96.69%/0.00% 1225.60 134840448
528786/5/110020 765469/387284/1198596/4832295/17362784/498983/0/49469
*** Problem   Solution(s): Nf5 (bm)
[D] 3r1rk1/1pb1qp1p/2p3p1/p7/P2Np2R/1P5P/1BP2PP1/3Q1BK1 w - - bm Nf5
*** Problem   Solution(s): Nf5 (bm)
-- ** -- BR -- BR BK **
** BP BB -- BQ BP ** BP
-- ** BP ** -- ** BP **
BP -- ** -- ** -- ** --
WP ** -- WN BP ** -- WR
** WP ** -- ** -- ** WP
-- WB WP ** -- WP WP **
** -- ** WQ ** WB WK --
mv 1 stage 0, white to move, computer plays white
hash=1e0b670621416441
pawnhash=8b4007def29c9225
Alpha=-350 Beta=450 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 5>d4c6 450  0.00       35 d4c6
 1/ 5 h4g4 588  0.01      114 h4g4
 2/ 7 d1g4 536  0.01      219 d1g4
 3/ 7<d1g4 135  0.01      575 d1g4 d8d4 b2d4
 3/ 7 h4g4 -53  0.03     1121 h4g4 f7f5
 4/ 9 h4g4 141  0.06     2945 h4g4 f7f5 f1c4 g8h8
 5/12 d1g4 178  0.16     8221 d1g4 e4e3 f2e3 e7e3 g1h1
 6/13 h4g4 6  0.62    30694 h4g4 h7h5 d4f5 e7f6
 7/16<h4g4 -394  1.36    72042 h4g4 h7h5 d4f5 e7f6 g1h1 d8d1 b2f6
 7/17 h4g4 -394  2.00   107210 h4g4 h7h5 b2a3 e7a3 g4e4 g8g7
 8/18 d1g4 -465  3.55   195832 d1g4 e7e5 f2f4 e5f6 g4g5
 9/23 Td1g4  -463  6.02   337920 d1g4 e7e5 f2f4 e5f6 g4g5 c7e5 c2c3
nps=56096 h/p/q=26.00%/96.00%/0.00% q=77.0% bc=50% br=2.62
mp=988/2207/-1624/-1251
pawnx=2054 recapx=443 qcheckx=0 checkx=7051 qfutilx=74915 onereplyx=709
mthrx=10366 futilx=0 bmx=0
- 8.55/20.86 88% 227/256 bf=2.18 h/p/q=32.60%/96.68%/0.00% 1231.62 135178368
528040/5/109756 767523/387727/1208962/4839346/17437700/499692/0/49469
*** Problem   Solution(s): Rxd4 (bm)
[D] 4r1k1/pq3p1p/2p1r1p1/2Q1p3/3nN1P1/1P6/P1P2P1P/3RR1K1 w - - bm Rxd4
*** Problem   Solution(s): Rxd4 (bm)
-- ** -- ** BR ** BK **
BP BQ ** -- ** BP ** BP
-- ** BP ** BR ** BP **
** -- WQ -- BP -- ** --
-- ** -- BN WN ** WP **
** WP ** -- ** -- ** --
WP ** WP ** -- WP -- WP
** -- ** WR WR -- WK --
mv 1 stage 0, white to move, computer plays white
hash=d024ad572c2aef62
pawnhash=f09b44c060676005
Alpha=-129 Beta=671 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 3 c2c4 325  0.00       59 c2c4
 2/ 5 c2c3 302  0.01      209 c2c3
 3/ 9>e4f6 702  0.03     1365 e4f6 e6f6 d1d4 e5d4 e1e8
 3/ 9 e4g5 703  0.04     1725 e4g5 e6f6 e1e5
 4/ 9 e4f6 366  0.09     4210 e4f6 e6f6 d1d4 e5d4 e1e8
 5/12>e4f6 766  0.18     9120 e4f6 e6f6 d1d4 b7c7 c2c3 e5d4 e1e8
 5/13 d1d4 4411  0.28    14957 d1d4 h7h5 e4d6
 6/13 d1d4 4810  0.48    27519 d1d4 e5d4 e4f6 g8h8 e1e6 f7e6 f6e8 e6e5
 7/17 d1d4 4861  1.92    98823 d1d4 b7c8 d4d1 f7f5 g4f5 g6f5
 8/17 d1d4 4917  4.30   214168 d1d4 f7f5 e4d6 b7d7 g4f5 g6f5 d6e8 e5d4
 9/21 Td1d4  5311  6.00   293888 d1d4 f7f5 e4d6 b7e7 g4f5 g6f5 d4d1 e7g5 g1h1
nps=48949 h/p/q=32.00%/97.00%/0.00% q=80.0% bc=58% br=3.37
mp=2199/1341/-1508/-1548
pawnx=396 recapx=642 qcheckx=0 checkx=5104 qfutilx=47873 onereplyx=467
mthrx=10366 futilx=0 bmx=1
+ 8.55/20.86 88% 228/257 bf=2.19 h/p/q=32.60%/96.68%/0.00% 1237.63 135472256
527129/5/109461 767919/388369/1219328/4844450/17485572/500159/0/49470
*** Problem   Solution(s): Bxg6 (bm)
[D] r3brkn/1p5p/2p2Ppq/2Pp3B/3Pp2Q/4P1R1/6PP/5R1K w - - bm Bxg6
*** Problem   Solution(s): Bxg6 (bm)
BR ** -- ** BB BR BK BN
** BP ** -- ** -- ** BP
-- ** BP ** -- WP BP BQ
** -- WP BP ** -- ** WB
-- ** -- WP BP ** -- WQ
** -- ** -- WP -- WR --
-- ** -- ** -- ** WP WP
** -- ** -- ** WR ** WK
mv 1 stage 0, white to move, computer plays white
hash=734414ead6f10c48
pawnhash=9634e49713489130
Alpha=-3491 Beta=-2690 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 4 g3g5 -2877  0.00       66 g3g5
 2/ 6 h4h3 -2929  0.01      215 h4h3
 3/ 8>h4h3 -2528  0.03      421 h4h3 h8f7
 3/ 8 h5g6 -2527  0.04      829 h5g6 h6h4 g6f7 g8f7 g3g7
 4/13>h5g6 -2126  0.06     1460 h5g6 h6h4 g6f7 g8f7 g3g7
 4/13 h5g6 -2126  0.10     2600 h5g6 h6h4 g6f7 g8f7 g3g7 f7e6 g7e7
 5/13>h5g6 -1725  0.13     3946 h5g6 h7g6 h4h6 g8f7 mtmt
 5/13 h5g6 -1138  0.25     9891 h5g6 h6g6 g3g6 e8g6 h4g3
 6/14<h5g6 -1538  0.37    16351 h5g6 h6g6 g3g6 e8g6 h4g3 h8f7 g3c7
 6/14 h5g6 -1538  0.41    18280 h5g6 h6g6 g3g6 e8g6 h4g3 h8f7 g3c7
 7/15 h5g6 -1753  0.78    38331 h5g6 h6g6 g3g6 h8g6 h4h3 f8f6 f1f6 a8a1
 8/16 h5g6 -1574  1.71    85544 h5g6 h6g6 f1b1 e8f7 g3g6 h8g6 h4h6
 9/21 h5g6 -1480  5.51   278570 h5g6 h6g6 g3g6 e8g6 h4f2 h8f7 f1b1 f8b8 f2h4
10/21 Th5g6  -1542  6.01   309248 h5g6 h6g6 g3g6 h8g6 h4f2 g8h8 f1b1 e8f7 f2e2
nps=51490 h/p/q=30.00%/98.00%/0.00% q=69.0% bc=52% br=2.26
mp=2274/1337/-677/-1181
pawnx=2120 recapx=941 qcheckx=0 checkx=11349 qfutilx=59708 onereplyx=1733
mthrx=10395 futilx=0 bmx=11
+ 8.56/20.86 88% 229/258 bf=2.19 h/p/q=32.59%/96.69%/0.00% 1243.64 135781504
526285/5/109181 770039/389310/1229723/4855799/17545280/501892/0/49481
*** Problem   Solution(s): Qh5 (bm)
[D] r1bq1rk1/ppp2ppp/2np4/2bN1PN1/2B1P3/3p4/PPP2nPP/R1BQ1K1R w - - bm Qh5
*** Problem   Solution(s): Qh5 (bm)
BR ** BB BQ -- BR BK **
BP BP BP -- ** BP BP BP
-- ** BN BP -- ** -- **
** -- BB WN ** WP WN --
-- ** WB ** WP ** -- **
** -- ** BP ** -- ** --
WP WP WP ** -- BN WP WP
WR -- WB WQ ** WK ** WR
mv 1 stage 0, white to move, computer plays white
hash=ff3013adedd6fa8
pawnhash=e8634bc9c74460b3
Alpha=-1651 Beta=-850 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 5<c2d3 -1651  0.01      186 c2d3
 1/ 5 g5f7 -3948  0.02      428 g5f7 f8f7
 2/ 8 g5f7 -3948  0.04      805 g5f7 f8f7
 3/ 9<g5f7 -4348  0.07     1697 g5f7 f8f7 c2d3
 3/10 g5e6 -5027  0.11     3171 g5e6 c8e6
 4/10>g5e6 -4626  0.16     4841 g5e6 c8e6 c2d3 f2d1
 4/12 d1h5 -3737  0.32     7964 d1h5 c8f5 e4f5 f2h1 c4d3
 5/16 d1h5 -3338  0.61    19495 d1h5 h7h6 d5c7 h6g5
 6/17 d1h5 -3674  1.63    57984 d1h5 h7h6 h1g1 h6g5 c2d3
 7/20 d1h5 -3794  5.16   191031 d1h5 h7h6 h1g1 h6g5 c1g5 f7f6
 8/20>Td1h5  -3393  6.01   219136 d1h5 h7h6 h1g1 h6g5 c1g5 d3c2 g5d8 c6d8
nps=36438 h/p/q=29.00%/96.00%/0.00% q=86.0% bc=54% br=2.21
mp=825/1975/-1655/-1006
pawnx=2288 recapx=248 qcheckx=0 checkx=3835 qfutilx=62166 onereplyx=653
mthrx=10395 futilx=0 bmx=0
+ 8.56/20.85 88% 230/259 bf=2.19 h/p/q=32.57%/96.69%/0.00% 1249.65 136000640
525099/5/108831 772327/389558/1240118/4859634/17607446/502545/0/49481
*** Problem   Solution(s): Qe6+ (bm)
[D] 2r2b1r/p1Nk2pp/3p1p2/N2Qn3/4P3/q6P/P4PP1/1R3K1R w - - bm Qe6+
*** Problem   Solution(s): Qe6+ (bm)
-- ** BR ** -- BB -- BR
BP -- WN BK ** -- BP BP
-- ** -- BP -- BP -- **
WN -- ** WQ BN -- ** --
-- ** -- ** WP ** -- **
BQ -- ** -- ** -- ** WP
WP ** -- ** -- WP WP **
** WR ** -- ** WK ** WR
mv 1 stage 0, white to move, computer plays white
hash=f7970ee1a1b88985
pawnhash=e41666e9129356ec
Alpha=607 Beta=1408 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 5<d5e5 607  0.05       68 d5e5
 1/ 5 c7e6 430  0.09      164 c7e6
 2/ 8 c7a6 258  0.12      731 c7a6
 3/11 c7e6 247  0.19     2835 c7e6 a3d3 d5d3
 4/12>c7e6 647  0.31     8144 c7e6 a3d3 d5d3 e5d3 f1e2
 4/12 Md5e6  99963  0.32     8640 d5e6 d7c7 b1b7 c7d8 a5c6 c8c6 b7b8 d8c7 e6c8
nps=27256 h/p/q=28.00%/97.00%/0.00% q=77.0% bc=63% br=1.52 mp=0/0/0/-579
pawnx=0 recapx=24 qcheckx=0 checkx=524 qfutilx=1262 onereplyx=57 mthrx=10395
futilx=0 bmx=0
+ 8.54/20.82 88% 231/260 bf=2.19 h/p/q=32.55%/96.69%/0.00% 1249.97 136009280
523113/5/108810 772327/389582/1250513/4860158/17608708/502602/0/49481
*** Problem   Solution(s): Nd4 (bm)
[D] r5k1/1bp3pp/p2p4/1p6/5p2/1PBP1nqP/1PP3Q1/R4R1K b - - bm Nd4
*** Problem   Solution(s): Nd4 (bm)
BR ** -- ** -- ** BK **
** BB BP -- ** -- BP BP
BP ** -- BP -- ** -- **
** BP ** -- ** -- ** --
-- ** -- ** -- BP -- **
** WP WB WP ** BN BQ WP
-- WP WP ** -- ** WQ **
WR -- ** -- ** WR ** WK
mv 1 stage 0, black to move, computer plays black
hash=7d1bfe957d320dd2
pawnhash=9b433a8255004bb0
Alpha=924 Beta=1725 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 5>g3g2 1725  0.00       25 g3g2 h1g2 a8e8
 1/ 5 g3g2 1725  0.01      109 g3g2 h1g2 a8e8
 2/ 7>g3g2 2125  0.01      163 g3g2 h1g2 a8e8 f1f3
 2/ 7 g3g2 3300  0.02      657 g3g2 h1g2 f3d4 g2h2 d4c2
 3/11 g3g2 3271  0.06     2368 g3g2 h1g2 f3d2 g2g1 d2f1 a1f1
 4/12 g3g2 3386  0.17     8385 g3g2 h1g2 f3d2 g2f2 d2f1 a1f1
 5/14>g3g2 3786  0.40    20200 g3g2 h1g2 f3d2 g2h2 d2f1 a1f1 a8f8 f1e1
 5/14 f3d4 3787  0.50    24904 f3d4 g2b7 g3h3 h1g1 d4e2 g1f2 h3e3 f2g2 e3g3
 6/14>f3d4 4187  0.53    25456 f3d4 g2b7 g3h3 h1g1 d4e2 g1f2 h3e3 f2g2 e3g3
 6/15 f3d4 4187  0.98    48543 f3d4 g2b7 g3h3 h1g1 d4e2 g1f2 h3e3 f2g2 e3g3 g2h1
g3h3
 7/15>f3d4 4587  1.05    51103 f3d4 f1f3 d4f3
 7/19 f3d4 12861  2.30   145569 f3d4 f1f2 b7g2 f2g2 g3h3 h1g1 h3e3 g1h2
 8/21<f3d4 12460  3.19   263721 f3d4 f1f2 b7g2 f2g2 g3h3
 8/21 f3d4 12460  3.43   285854 f3d4 f1f2 b7g2 f2g2 g3h3
 9/24<f3d4 12059  5.87   599135 f3d4 f1f2 b7g2 f2g2 g3h3
 9/24 Tf3d4  12059  6.00   612352 f3d4 f1f2 b7g2 f2g2 g3h3
nps=102025 h/p/q=42.00%/99.00%/0.00% q=68.0% bc=56% br=2.13
mp=1240/2413/-1377/-1163
pawnx=9807 recapx=894 qcheckx=0 checkx=28985 qfutilx=53181 onereplyx=3751
mthrx=10395 futilx=0 bmx=38
+ 8.54/20.83 88% 232/261 bf=2.19 h/p/q=32.59%/96.70%/0.00% 1255.97 136621632
523455/5/108778 782134/390476/1260908/4889143/17661888/506353/0/49519
*** Problem   Solution(s): Rh6 (bm)
[D] 6k1/p1B1b2p/2b3r1/2p5/4p3/1PP1N1Pq/P2R1P2/3Q2K1 b - - bm Rh6
*** Problem   Solution(s): Rh6 (bm)
-- ** -- ** -- ** BK **
BP -- WB -- BB -- ** BP
-- ** BB ** -- ** BR **
** -- BP -- ** -- ** --
-- ** -- ** BP ** -- **
** WP WP -- WN -- WP BQ
WP ** -- WR -- WP -- **
** -- ** WQ ** -- WK --
mv 1 stage 0, black to move, computer plays black
hash=bbd32a188ae3b6d5
pawnhash=1566076db3c29ed8
Alpha=-2556 Beta=-1755 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 3>g6g3 -1755  0.00       10 g6g3 f2g3
 1/ 4 c6b5 -939  0.00       99 c6b5
 2/ 6 g8g7 -942  0.01      405 g8g7
 3/ 8<g8g7 -1342  0.02     1367 g8g7 c7e5 g7h6
 3/ 8 g8g7 -2152  0.03     2315 g8g7 d1f1
 4/12 c6b5 -2081  0.07     7092 c6b5 g3g4
 5/14>c6b5 -1680  0.14    15067 c6b5 e3d5 e7g5 d5f4
 5/14 e7f6 -948  0.17    18507 e7f6 e3d5 f6g7
 6/14 h3c8 -1345  0.62    67728 h3c8 c7f4
 7/19 e7f6 -1211  1.31   147802 e7f6 e3d5 c6d5 d2d5 f6c3 d5c5 c3g7
 8/23 g6h6 -1610  5.05   549972 g6h6 d1g4 h3g4 e3g4 h6g6 g4e5 g6g3 g1h2 g3c3
e5c6
 9/28 Tg6h6  -1210  6.00   659464 g6h6 d1g4 h3g4 e3g4 h6g6 g4e5 e4e3 f2e3 g6g3
g1f2 g3g2 f2e1
nps=109856 h/p/q=18.00%/99.00%/0.00% q=75.0% bc=59% br=2.52
mp=855/1196/-1589/-1788
pawnx=5910 recapx=1497 qcheckx=0 checkx=27556 qfutilx=70572 onereplyx=2135
mthrx=10395 futilx=0 bmx=72
+ 8.54/20.86 88% 233/262 bf=2.19 h/p/q=32.53%/96.71%/0.00% 1261.97 137281088
523974/5/108783 788044/391973/1271303/4916699/17732460/508488/0/49591
*** Problem   Solution(s): Qg8+ (bm)
[D] rnbqr2k/pppp1Qpp/8/b2NN3/2B1n3/8/PPPP1PPP/R1B1K2R w KQ - bm Qg8+
*** Problem   Solution(s): Qg8+ (bm)
BR BN BB BQ BR ** -- BK
BP BP BP BP ** WQ BP BP
-- ** -- ** -- ** -- **
BB -- ** WN WN -- ** --
-- ** WB ** BN ** -- **
** -- ** -- ** -- ** --
WP WP WP WP -- WP WP WP
WR -- WB -- WK -- ** WR
mv 1 stage 0, white to move, computer plays white
hash=eada383d0f8474f1
pawnhash=5a0f6ef8578ff88f
Alpha=-166 Beta=634 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 4 f7h5 190  0.01      282 f7h5
 2/ 8 e5d3 162  0.01      977 e5d3
 3/ 9>e5d3 562  0.02     1484 e5d3 e4d2
 3/ 9 Mf7g8  99974  0.04     3637 f7g8 h8g8 d5e7 g8f8 e7g6 h7g6 e5g6
nps=82659 h/p/q=24.00%/90.00%/0.00% q=81.0% bc=64% br=2.03 mp=0/29/-1364/-1298
pawnx=0 recapx=8 qcheckx=0 checkx=113 qfutilx=1071 onereplyx=36 mthrx=10395
futilx=0 bmx=0
+ 8.52/20.81 88% 234/263 bf=2.19 h/p/q=32.50%/96.68%/0.00% 1262.02 137284720
521995/5/108782 788044/391981/1281698/4916812/17733532/508524/0/49591
*** Problem   Solution(s): Qe5 Rab8 (bm)
[D] r2r2k1/1R2qp2/p5pp/2P5/b1PN1b2/P7/1Q3PPP/1B1R2K1 b - - bm Qe5 Rab8
*** Problem   Solution(s): Qe5 Rab8 (bm)
BR ** -- BR -- ** BK **
** WR ** -- BQ BP ** --
BP ** -- ** -- ** BP BP
** -- WP -- ** -- ** --
BB ** WP WN -- BB -- **
WP -- ** -- ** -- ** --
-- WQ -- ** -- WP WP WP
** WB ** WR ** -- WK --
mv 1 stage 0, black to move, computer plays black
hash=ab388d79db66248
pawnhash=9eb68348f8a8f000
Alpha=-2102 Beta=-1301 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 4 e7c5 -1702  0.00      107 e7c5
 2/ 6>f4h2 -1301  0.01      345 f4h2 g1h2 e7h4
 2/ 6 f4h2 -385  0.01      558 f4h2 g1h2 e7h4 h2g1 a4d1
 3/ 9>f4h2 15  0.02     1533 f4h2 g1h1 e7c5 d1d3
 3/ 9 d8d4 560  0.03     2581 d8d4 b2d4 e7b7
 4/12 d8d4 851  0.07     5949 d8d4 b2d4 e7b7 b1e4
 5/12<d8d4 450  0.15    13287 d8d4 b2d4 e7b7 b1e4 a4d1
 5/13 d8d4 138  0.24    22170 d8d4 b2d4 e7b7 b1e4 b7b8
 6/19 d8d4 478  0.56    54922 d8d4 b2d4 e7b7 b1e4 b7b8 e4a8 a4d1
 7/19 e7e5 541  1.39   139547 e7e5 b1c2 a4c2 b2c2 d8d4 c5c6 d4d1 c2d1
 8/20 d8d4 830  4.91   506549 d8d4 b2d4 e7b7 b1e4 b7b8 e4a8 a4d1 d4d1 b8a8
 9/22 Td8d4  704  6.02   627725 d8d4 b2d4 e7b7 d1e1 b7b8 b1e4
nps=104325 h/p/q=26.00%/99.00%/0.00% q=77.0% bc=54% br=2.47
mp=2680/910/-1011/-26738600
pawnx=4655 recapx=1108 qcheckx=0 checkx=14044 qfutilx=107410 onereplyx=2582
mthrx=10609 futilx=0 bmx=120
- 8.52/20.82 88% 234/264 bf=2.19 h/p/q=32.48%/96.69%/0.00% 1268.03 137912448
522396/5/108761 792699/393089/1292307/4930856/17840942/511106/0/49711
*** Problem   Solution(s): exf6 (bm)
[D] 2r1k2r/2pn1pp1/1p3n1p/p3PP2/4q2B/P1P5/2Q1N1PP/R4RK1 w k - bm exf6
*** Problem   Solution(s): exf6 (bm)
-- ** BR ** BK ** -- BR
** -- BP BN ** BP BP --
-- BP -- ** -- BN -- BP
BP -- ** -- WP WP ** --
-- ** -- ** BQ ** -- WB
WP -- WP -- ** -- ** --
-- ** WQ ** WN ** WP WP
WR -- ** -- ** WR WK --
mv 1 stage 0, white to move, computer plays white
hash=d24bc819bba9b8cc
pawnhash=7d4d5cb138c34aa8
Alpha=135 Beta=936 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 4 c2e4 139  0.00      158 c2e4 f6e4
 2/ 6 c2e4 531  0.01      377 c2e4 f6e4 e5e6
 3/ 6>c2e4 931  0.01      543 c2e4 f6e4 e5e6 f7e6
 3/ 7 e5f6 931  0.02     1084 e5f6 e4c2 f6g7 h8f8
 4/ 9<e5f6 530  0.04     3107 e5f6 e4c2 f6g7 h8f8 g7f8Q d7f8 a1d1
 4/ 9 c2e4 257  0.07     5803 c2e4 f6e4 e5e6 d7f6
 5/10>c2e4 657  0.08     6762 c2e4 f6e4 e5e6 d7f6 e6f7 e8f7 f1d1
 5/13 c2e4 727  0.11     9953 c2e4 f6e4 e5e6 d7f6 a1d1
 6/15 c2e4 678  0.23    21902 c2e4 f6e4 e5e6 d7f6 h4f6 e4f6 a1d1
 7/17 c2e4 280  0.62    62239 c2e4 f6e4 f1f4 d7c5 h4f6
 8/19 c2e4 605  1.50   148438 c2e4 f6e4 e5e6 d7c5 e6f7 e8f7 a1d1 c8e8 h4d8
 9/22 c2e4 209  3.56   374404 c2e4 f6e4 a1d1 d7e5 d1d4 e4c5 g1h1 mtmt
10/25 Tc2e4  -2  6.01   649216 c2e4 f6e4 e5e6 d7c5 e6e7 e4g5 e2d4 e8e7 a1d1 c8e8
d4c6 e7f6 h4g3
nps=108023 h/p/q=28.00%/97.00%/0.00% q=74.0% bc=48% br=2.23
mp=2046/964/-1876/-1510
pawnx=10162 recapx=3774 qcheckx=0 checkx=11254 qfutilx=55989 onereplyx=851
mthrx=10634 futilx=0 bmx=0
- 8.53/20.83 88% 234/265 bf=2.19 h/p/q=32.46%/96.69%/0.00% 1274.04 138561664
522874/5/108758 802861/396863/1302941/4942110/17896932/511957/0/49711
*** Problem   Solution(s): Rxh2+ (bm)
[D] r3q2r/2p1k1p1/p5p1/1p2Nb2/1P2nB2/P7/2PNQbPP/R2R3K b - - bm Rxh2+
*** Problem   Solution(s): Rxh2+ (bm)
BR ** -- ** BQ ** -- BR
** -- BP -- BK -- BP --
BP ** -- ** -- ** BP **
** BP ** -- WN BB ** --
-- WP -- ** BN WB -- **
WP -- ** -- ** -- ** --
-- ** WP WN WQ BB WP WP
WR -- ** WR ** -- ** WK
mv 1 stage 0, black to move, computer plays black
hash=d296425d96bd1629
pawnhash=e2bfc7bfc74ed435
Alpha=-1896 Beta=-1095 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 6>e4d2 -1095  0.00       99 e4d2 e2d2
 1/ 6 f2g3 -915  0.01      353 f2g3 d2e4 g3f4
 2/12<f2g3 -1315  0.02     1066 f2g3 d2e4 g3f4
 2/12 f2g3 -1414  0.07     2079 f2g3 e5g4
 3/14>f2g3 -1013  0.12     7178 f2g3 e5f3
 3/14 e4g3 -1012  0.15     9305 e4g3 f4g3 f2g3 d2f1 e7f6
 4/15>e4g3 -611  0.22    16185 e4g3 f4g3 f2g3 d2f1 e7f6
 4/15 e4g3 -611  0.30    22762 e4g3 f4g3 f2g3 d2f1 e7f6 e5d7 f6g5
 5/16>e4g3 -210  0.39    30881 e4g3 f4g3 f2g3 d2f1 e7f6 e5d7 f6g5 f1g3 f5d7
 5/16 Mh8h2  99977  0.40    32397 h8h2 f4h2 e4g3 h2g3 e8h8 e2h5 h8h5 g3h2 mtmt
nps=80390 h/p/q=37.00%/99.00%/0.00% q=82.0% bc=67% br=2.62 mp=135/0/-802/-1163
pawnx=0 recapx=157 qcheckx=0 checkx=877 qfutilx=5190 onereplyx=36 mthrx=10634
futilx=0 bmx=0
+ 8.52/20.82 88% 235/266 bf=2.19 h/p/q=32.48%/96.70%/0.00% 1274.44 138594064
521030/5/108749 802861/397020/1313575/4942987/17902122/511993/0/49711
*** Problem   Solution(s): Nc7+ (bm)
[D] 2r1kb1r/pp3ppp/2n1b3/1q1N2B1/1P2Q3/8/P4PPP/3RK1NR w Kk - bm Nc7+
*** Problem   Solution(s): Nc7+ (bm)
-- ** BR ** BK BB -- BR
BP BP ** -- ** BP BP BP
-- ** BN ** BB ** -- **
** BQ ** WN ** -- WB --
-- WP -- ** WQ ** -- **
** -- ** -- ** -- ** --
WP ** -- ** -- WP WP WP
** -- ** WR WK -- WN WR
mv 1 stage 0, white to move, computer plays white
hash=11b0f486bdebdd54
pawnhash=6886a11e817a02a1
Alpha=-199 Beta=601 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 6 a2a3 197  0.01      178 a2a3
 2/ 7>a2a3 597  0.01      573 a2a3 f8e7
 2/ 7 d5c7 598  0.01      703 d5c7 c8c7 e4c6 c7d7 c6b5
 3/ 8>d5c7 998  0.01      753 d5c7 c8c7 e4c6 c7d7 c6b5 e6a2
 3/ 8 d5c7 5693  0.02     1418 d5c7 c8c7 e4c6 e6d7 c6c7 b5g5 d1d7 f8b4
 4/11>d5c7 6093  0.03     1727 d5c7 c8c7 e4c6 e6d7 c6c7 b5g5 d1d7 f8b4
 4/11 Md5c7  99986  0.04     2532 d5c7 c8c7 e4c6 e6d7 c6c7 b5g5 d1d7 f8b4
nps=70333 h/p/q=51.00%/94.00%/0.00% q=77.0% bc=49% br=1.22 mp=118/0/-162/-966
pawnx=0 recapx=5 qcheckx=0 checkx=94 qfutilx=747 onereplyx=9 mthrx=10634
futilx=0 bmx=0
+ 8.50/20.78 88% 236/267 bf=2.19 h/p/q=32.55%/96.69%/0.00% 1274.48 138596592
519088/5/108747 802861/397025/1324209/4943081/17902868/512002/0/49711
*** Problem   Solution(s): Re8+ (bm)
[D] 2r3kr/ppp2n1p/7B/5q1N/1bp5/2Pp4/PP2RPPP/R2Q2K1 w - - bm Re8+
*** Problem   Solution(s): Re8+ (bm)
-- ** BR ** -- ** BK BR
BP BP BP -- ** BN ** BP
-- ** -- ** -- ** -- WB
** -- ** -- ** BQ ** WN
-- BB BP ** -- ** -- **
** -- WP BP ** -- ** --
WP WP -- ** WR WP WP WP
WR -- ** WQ ** -- WK --
mv 1 stage 0, white to move, computer plays white
hash=f4222f2920fe9541
pawnhash=ccc31ead59a832a9
Alpha=-593 Beta=207 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 5 e2d2 -383  0.00      224 e2d2 f7h6 c3b4
 2/ 8 e2e3 -415  0.01      562 e2e3 f7h6 c3b4
 3/11>e2e3 -14  0.02     1867 e2e3 f7h6 e3g3 h6g4 g3g4
 3/12 e2e8 5110  0.04     2850 e2e8 b4f8 e8c8 f7h6 c8c7
 4/13 e2e8 5183  0.07     6612 e2e8 c8e8 d1g4 f7g5 g4f5 g5f7
 5/15>e2e8 5583  0.09     8787 e2e8 c8e8 d1g4 f7g5 g4f5 g5f7 c3b4
 5/15 e2e8 9052  0.12    12369 e2e8 c8e8 d1g4 f7g5 g4f5 e8a8
 6/16<e2e8 8651  0.20    20085 e2e8 c8e8 d1g4 f7g5 g4f5 e8a8 c3b4 g5f3 g1h1
 6/16 e2e8 5183  0.29    29747 e2e8 c8e8 d1g4 f7g5 g4f5 g5f7
 7/16>e2e8 5583  0.32    32852 e2e8 c8e8 d1g4 f7g5 g4f5 b4c3 f5g5 g8f7 g1h1
 7/21 e2e8 9775  0.90    88916 e2e8 c8e8 d1g4 f7g5 g4f5 g5h3 f5h3 b4a3 g1h1 a3b2
 8/26<e2e8 9374  2.90   299567 e2e8 c8e8 d1g4 f7g5 g4f5 g5f3 f5f3 e8d8 h5f6 g8f7
f6h7 f7g6 c3b4
 8/26 e2e8 9373  3.35   351448 e2e8 c8e8 d1g4 f7g5 g4f5 g5f3 f5f3 e8d8 h5f6 g8f7
f6h7 f7g6 c3b4
 9/26<e2e8 8972  4.85   509103 e2e8 c8e8 d1g4 f7g5 g4f5 b4e7 h6g5 e8d8 h5f6 e7f6
f5e6 g8f8
 9/26 e2e8 8972  4.92   514941 e2e8 c8e8 d1g4 f7g5 g4f5 b4e7 h6g5 e8d8 h5f6 e7f6
f5e6 g8f8
10/27 Te2e8  9371  6.01   621568 e2e8 c8e8 d1g4 f7g5 g4f5 b4e7 h6g5 e8f8 h5f6
e7f6 g5f6 mtmt
nps=103474 h/p/q=34.00%/99.00%/0.00% q=77.0% bc=56% br=2.28
mp=1994/2303/-1574/-1035
pawnx=1559 recapx=632 qcheckx=0 checkx=31523 qfutilx=52769 onereplyx=3760
mthrx=10634 futilx=0 bmx=95
+ 8.50/20.80 88% 237/268 bf=2.19 h/p/q=32.55%/96.70%/0.00% 1280.49 139218160
519471/5/108723 804420/397657/1334843/4974604/17955636/515762/0/49806
*** Problem   Solution(s): axb4 (bm)
[D] 2kr2nr/pp1n1ppp/2p1p3/q7/1b1P1B2/P1N2Q1P/1PP1BPP1/R3K2R w KQ - bm axb4
*** Problem   Solution(s): axb4 (bm)
-- ** BK BR -- ** BN BR
BP BP ** BN ** BP BP BP
-- ** BP ** BP ** -- **
BQ -- ** -- ** -- ** --
-- BB -- WP -- WB -- **
WP -- WN -- ** WQ ** WP
-- WP WP ** WB WP WP **
WR -- ** -- WK -- ** WR
mv 1 stage 0, white to move, computer plays white
hash=e0501afb9c91abe9
pawnhash=ea25d11d9633851d
Alpha=-305 Beta=495 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 3>a3b4 495  0.00        8 a3b4
 1/ 3 e1g1 793  0.00       58 e1g1
 2/ 6 e1d2 678  0.01      258 e1d2
 3/ 8 e1g1 671  0.02     1393 e1g1 b4c3
 4/12>e1g1 1071  0.05     3072 e1g1 b4c3 b2c3 g8f6 f1b1
 4/12 a3b4 1072  0.07     4880 a3b4 a5a1 e1d2 g8f6 h1a1
 5/12>a3b4 1472  0.08     6146 a3b4 a5a1 e1d2 g8f6 h1a1 d7e5
 5/12 a3b4 1472  0.11     8367 a3b4 a5a1 e1d2 g8f6 h1a1 d7e5
 6/13<a3b4 1071  0.21    16987 a3b4 a5a1 e1d2 g8f6 h1a1 f6e4 c3e4 d7e5
 6/14 e1d2 314  0.55    48537 e1d2 b4c3 f3c3 a5c3 d2c3 d7e5 d4e5 g8f6 mtmt
 7/18 e1g1 313  1.42   132358 e1g1 b4c3 b2c3 g8f6 f1b1 h7h5
 8/18 e1g1 294  2.81   261728 e1g1 b4c3 b2c3 g8f6 g2g4 h7h5 g4h5 e6e5
 9/21 Ta3b4  354  6.00   555008 a3b4 a5a1 e1d2 d7e5 h1a1 e5f3 g2f3 d8d4 d2e3
d4b4 e2d3
nps=92440 h/p/q=32.00%/96.00%/0.00% q=77.0% bc=49% br=2.67
mp=1775/1748/-1637/-1728
pawnx=225 recapx=1552 qcheckx=0 checkx=6953 qfutilx=70336 onereplyx=975
mthrx=10634 futilx=0 bmx=0
+ 8.51/20.80 88% 238/269 bf=2.19 h/p/q=32.55%/96.70%/0.00% 1286.49 139773168
519603/5/108647 804645/399209/1345477/4981557/18025972/516737/0/49806
*** Problem   Solution(s): Qg4 (bm)
[D] 2r1r1k1/pp1q1ppp/3p1b2/3P4/3Q4/5N2/PP2RPPP/4R1K1 w - - bm Qg4
*** Problem   Solution(s): Qg4 (bm)
-- ** BR ** BR ** BK **
BP BP ** BQ ** BP BP BP
-- ** -- BP -- BB -- **
** -- ** WP ** -- ** --
-- ** -- WQ -- ** -- **
** -- ** -- ** WN ** --
WP WP -- ** WR WP WP WP
** -- ** -- WR -- WK --
mv 1 stage 0, white to move, computer plays white
hash=42e5187100fc1370
pawnhash=6aa34549bb101668
Alpha=1208 Beta=2009 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 7 d4a7 1605  0.00      105 d4a7
 2/10 e2e8 1268  0.01      494 e2e8 c8e8 e1e8 d7e8 d4a7 e8c8
 3/12 e2e8 1292  0.02     1548 e2e8 c8e8 e1e8 d7e8 d4a7 e8d7
 4/12>e2e8 1692  0.02     2162 e2e8 c8e8 e1e8 d7e8 d4a7 e8d7 f3d4 d7e8
 4/12 e2e8 1692  0.04     3431 e2e8 c8e8 e1e8 d7e8 d4a7 e8d7 f3d4 d7e8
 5/12 e2e8 1773  0.09     9233 e2e8 c8e8 e1e8 d7e8 d4a7 f6b2 a7b7 e8e2
 6/14<e2e8 1372  0.25    29683 e2e8 c8e8 e1e8 d7e8 d4a7 f6b2 a7b7 b2a3 f3g5
 6/14 e2e8 1372  0.25    29727 e2e8 c8e8 e1e8 d7e8 d4a7 f6b2 a7b7 b2a3 f3g5
 7/16>e2e8 1772  0.82    95371 e2e8 c8e8 d4a7 e8c8 f3d4 f6d4 a7d4 c8c2
 7/16 d4g4 5327  0.92   105313 d4g4 d7b5 a2a4 b5e2 e1e2 c8c1 f3e1
 8/16<d4g4 4926  1.27   145092 d4g4 d7b5 a2a4 b5e2 e1e2 c8c1 f3e1 e8e2
 8/20 e2e8 1347  3.35   363452 e2e8 c8e8 d4a7 f6e7 e1e2 d7b5 e2d2 e7f6
 9/20 Te2e8  1274  6.00   677888 e2e8 c8e8 d4a7 e8e1 f3e1 d7c8 b2b3 f6c3 e1d3
c8f5
nps=112925 h/p/q=34.00%/98.00%/0.00% q=70.0% bc=51% br=2.64
mp=1669/1217/-1521/-1591
pawnx=1200 recapx=3288 qcheckx=0 checkx=12059 qfutilx=82105 onereplyx=4094
mthrx=10892 futilx=0 bmx=0
- 8.51/20.80 88% 238/270 bf=2.19 h/p/q=32.56%/96.70%/0.00% 1292.49 140451056
520189/5/108667 805845/402497/1356369/4993616/18108076/520831/0/49806
*** Problem   Solution(s): Rd6 (bm)
[D] 2kr4/ppp3Pp/4RP1B/2r5/5P2/1P6/P2p4/3K4 w - - bm Rd6
*** Problem   Solution(s): Rd6 (bm)
-- ** BK BR -- ** -- **
BP BP BP -- ** -- WP BP
-- ** -- ** WR WP -- WB
** -- BR -- ** -- ** --
-- ** -- ** -- WP -- **
** WP ** -- ** -- ** --
WP ** -- BP -- ** -- **
** -- ** WK ** -- ** --
mv 1 stage 0, white to move, computer plays white
hash=cdbc832bb57b9629
pawnhash=2d3e8953257d8a84
Alpha=-1068 Beta=-267 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 5>b3b4 -267  0.00       31 b3b4
 1/ 5 f6f7 61  0.00       63 f6f7
 2/ 8<f6f7 -339  0.00      206 f6f7 c8d7
 2/ 8 b3b4 -425  0.01      656 b3b4
 3/ 9<b3b4 -825  0.01     1214 b3b4 c8d7 b4c5
 3/ 9 e6d6 -4209  0.04     3968 e6d6 c7d6 g7g8R
 4/12<e6d6 -4609  0.05     4935 e6d6 c7d6 g7g8R d8g8
 4/12 e6d6 -4610  0.06     5908 e6d6 c7d6 g7g8R c5c1 d1d2
 5/12>e6d6 -4209  0.07     7271 e6d6 c7d6 g7g8R c5c1 d1d2 d8g8
 5/12 e6d6 -4208  0.10     9949 e6d6 c7d6 f6f7 c5c1 d1d2
 6/16 e6d6 -3808  0.18    18781 e6d6 c7d6 f6f7 c5c1 d1d2 c1g1
 7/16>e6d6 -3407  0.28    29694 e6d6 c7d6 f6f7 c5c1 d1d2 c1g1 h6g5 c8d7
 7/17 e6d6 1719  0.64    68024 e6d6 d8d6 g7g8Q d6d8 g8d8 c8d8 f6f7 c5f5 f7f8R
f5f8 h6f8 d8e8
 8/22<e6d6 1318  0.96   101347 e6d6 d8d6 g7g8Q d6d8 g8d8 c8d8 f6f7 c5f5 f7f8R
f5f8 h6f8 d8e8 f8c5
 8/22 e6d6 1316  1.38   142782 e6d6 c7d6 f6f7 c5c1 d1d2 c1a1 g7g8Q a1a2 d2e3
d8g8
 9/24>e6d6 1716  2.16   230743 e6d6 c7d6 f6f7 c5c1 d1d2 c1a1 g7g8Q a1a2 d2e3
d8g8 f7g8R c8d7
 9/25 e6d6 1716  3.39   357953 e6d6 c7d6 f6f7 c5c1 d1d2 c1a1 g7g8Q a1a2 d2e3
d8g8 f7g8R
10/25>e6d6 2116  5.29   564819 e6d6 c7d6 f6f7 c5c1 d1d2 c1a1 g7g8Q a1a2 d2e3
d8g8 f7g8R c8d7 b3b4
10/25 e6d6 2116  5.94   633110 e6d6 c7d6 f6f7 c5c1 d1d2 c1a1 g7g8Q a1a2 d2e3
d8g8 f7g8R c8d7 b3b4
11/25>Te6d6  2516  6.01   641035 e6d6 c7d6 f6f7 c5c1 d1d2 c1a1 g7g8Q a1a2 d2e3
d8g8 f7g8R c8d7 f4f5
nps=106590 h/p/q=28.00%/98.00%/0.00% q=80.0% bc=54% br=2.27
mp=3390/1427/-863/-766
pawnx=3283 recapx=1438 qcheckx=0 checkx=22821 qfutilx=56454 onereplyx=3343
mthrx=11022 futilx=0 bmx=53
+ 8.52/20.82 88% 239/271 bf=2.19 h/p/q=32.54%/96.70%/0.00% 1298.51 141092096
520635/5/108657 809128/403935/1367391/5016437/18164530/524174/0/49859
*** Problem   Solution(s): Bxc5 (bm)
[D] nrq4r/2k1p3/1p1pPnp1/pRpP1p2/P1P2P2/2P1BB2/1R2Q1P1/6K1 w - - bm Bxc5
*** Problem   Solution(s): Bxc5 (bm)
BN BR BQ ** -- ** -- BR
** -- BK -- BP -- ** --
-- BP -- BP WP BN BP **
BP WR BP WP ** BP ** --
WP ** WP ** -- WP -- **
** -- WP -- WB WB ** --
-- WR -- ** WQ ** WP **
** -- ** -- ** -- WK --
mv 1 stage 0, white to move, computer plays white
hash=b734141221aa7c75
pawnhash=b232833e715114b3
Alpha=370 Beta=1171 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 6 e2d1 1152  0.00       54 e2d1
 2/ 6 e2d1 842  0.00      177 e2d1 c8d8
 3/ 8 e2d1 876  0.01      560 e2d1 c8d8 g2g3
 4/10 e2d1 826  0.02     1824 e2d1 c8d8 e3f2
 5/13>e2d1 1226  0.15     9322 e2d1 c8d8 f3e2 c7b7
 5/13 e3c5 1227  0.18    12442 e3c5 d6c5 b5c5 b6c5 e2e5 c7d8 b2b8 f6d5
 6/14>e3c5 1627  0.24    17532 e3c5 d6c5 b5c5 b6c5 e2e5 c7d8 b2b8 f6d5 e5h8
 6/16 e3c5 1760  0.40    32209 e3c5 c8f8 c5f2 c7b7 e2e5
 7/18 e3c5 1830  0.77    66148 e3c5 f6h5 f3h5 h8h5 c5e3 c8h8
 8/23>e3c5 2230  1.33   122898 e3c5 f6h5 f3h5 h8h5 c5d4 c7d8 e2f1
 8/23 e3c5 2297  1.97   185958 e3c5 c7d8 c5d4 h8f8 d4f6 f8f6 b2b1
 9/25 e3c5 2276  3.71   362086 e3c5 c7d8 c5d4 h8f8 d4f6 f8f6 b2b1 c8c7 e2f1
10/27 Te3c5  2158  6.01   596992 e3c5 c7d8 c5d4 h8f8 d4b6 a8b6 b5b6 b8b6 b2b6
nps=99383 h/p/q=33.00%/98.00%/0.00% q=76.0% bc=50% br=2.76
mp=3995/1620/-1471/-1645
pawnx=4747 recapx=3096 qcheckx=0 checkx=18993 qfutilx=141440 onereplyx=1235
mthrx=11022 futilx=0 bmx=30
+ 8.52/20.84 88% 240/272 bf=2.19 h/p/q=32.54%/96.71%/0.00% 1304.52 141689088
520916/5/108614 813875/407031/1378413/5035430/18305970/525409/0/49889
*** Problem   Solution(s): Ng3+ g3 (bm)
[D] 2k4B/bpp1qp2/p1b5/7p/1PN1n1p1/2Pr4/P5PP/R3QR1K b - - bm Ng3+ g3
*** Problem   Solution(s): Ng3+ g3 (bm)
-- ** BK ** -- ** -- WB
BB BP BP -- BQ BP ** --
BP ** BB ** -- ** -- **
** -- ** -- ** -- ** BP
-- WP WN ** BN ** BP **
** -- WP BR ** -- ** --
WP ** -- ** -- ** WP WP
WR -- ** -- WQ WR ** WK
mv 1 stage 0, black to move, computer plays black
hash=18f34101de14e495
pawnhash=48b5c944b3333dfa
Alpha=-1326 Beta=-525 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 5 c8b8 -694  0.00       78 c8b8
 2/ 6>e7d8 -293  0.01      339 e7d8
 2/ 9 e4g3 238  0.01      627 e4g3 e1g3 d3g3 h2g3
 3/12 e4g3 238  0.03     2123 e4g3 e1g3 d3g3 h2g3
 4/14 e4g3 216  0.09     8061 e4g3 e1g3 d3g3 h2g3 b7b5
 5/14>e4g3 616  0.10     8490 e4g3 e1g3 d3g3 h2g3 b7b5 f1f7
 5/16 e4g3 1302  0.26    24887 e4g3 e1g3 d3g3 h2g3 c6g2 h1g2 e7e2 g2h1 e2c4
 6/16 e4g3 1304  0.64    66539 e4g3 e1g3 d3g3 h2g3 e7e2 c4e5 e2g2
 7/16>e4g3 1704  0.67    69174 e4g3 e1g3 d3g3 h2g3 e7e2 c4d6 c7d6 f1f7 mtmt
 7/19 e4g3 4489  1.36   145678 e4g3 e1g3 d3g3 h2g3 e7e2 c4d6 c7d6 f1f7 c6g2
 8/19>e4g3 4889  1.42   151806 e4g3 e1g3 d3g3 h2g3 e7e2 c4d6 c7d6 f1f7 c6g2
 8/22 e4g3 5010  3.59   390250 e4g3 e1g3 d3g3 h2g3 e7e2 c4e3 a7e3 f1f7 e2g2
 9/22>e4g3 5410  3.75   407746 e4g3 e1g3 d3g3 h2g3 e7e2 c4e3 a7e3 f1f3 g4f3
 9/28 Te4g3  5411  6.00   648192 e4g3 e1g3 d3g3 h2g3 e7e2 c4e3 a7e3 f1f3 c6f3
g2f3
nps=107978 h/p/q=21.00%/98.00%/0.00% q=74.0% bc=56% br=2.38
mp=1122/2433/-1612/-1420
pawnx=6310 recapx=1381 qcheckx=0 checkx=23303 qfutilx=94130 onereplyx=3182
mthrx=11233 futilx=0 bmx=785
+ 8.52/20.86 88% 241/273 bf=2.19 h/p/q=32.50%/96.71%/0.00% 1310.52 142337280
521382/5/108611 820185/408412/1389646/5058733/18400100/528591/0/50674
*** Problem   Solution(s): Rd6 (am)
[D] 8/1p6/p5R1/k7/Prpp4/K7/1NP5/8 w - - am Rd6
*** Problem   Solution(s): Rd6 (am)
-- ** -- ** -- ** -- **
** BP ** -- ** -- ** --
BP ** -- ** -- ** WR **
BK -- ** -- ** -- ** --
WP BR BP BP -- ** -- **
WK -- ** -- ** -- ** --
-- WN WP ** -- ** -- **
** -- ** -- ** -- ** --
mv 1 stage 0, white to move, computer plays white
hash=33fddcf1b75ba799
pawnhash=2ace74a8e5ccff9d
Alpha=768 Beta=1569 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 4>b2c4 1569  0.00       31 b2c4 b4c4 g6a6 b7a6
 1/ 4 g6g7 3028  0.00       64 g6g7
 2/ 6 g6g5 2894  0.00      240 g6g5 b7b5 g5h5
 3/ 9 g6g5 2894  0.01      700 g6g5 b7b5 g5f5
 4/10 g6b6 2879  0.01     1753 g6b6 a5b6 a3b4
 5/12 g6b6 3045  0.02     3384 g6b6 a5b6 a3b4 c4c3 b2d3
 6/14 g6b6 2974  0.05     9437 g6b6 a5b6 a3b4 c4c3 a4a5 b6c6 b2d3
 7/16 g6b6 2914  0.09    18057 g6b6 a5b6 a3b4 c4c3 b2c4 b6c6 b4b3
 8/18 g6g5 2977  0.20    47142 g6g5 b7b5 a4b5 a6b5 g5g8 b4b2 a3b2 a5b6 mtmt
 9/21 g6b6 2976  0.38    92077 g6b6 a5b6 a3b4 c4c3 b2c4 b6c6 c4a5 c6b6 a5b3
10/24 g6b6 3372  1.11   250659 g6b6 a5b6 a3b4 c4c3 b2d3 a6a5 b4c4 b6c6 c4d4 b7b5
d4c3
11/26 g6b6 3771  1.80   419863 g6b6 a5b6 a3b4 c4c3 b2d3 b6c6 d3c5 a6a5 b4c4 b7b6
c5e4
12/27 g6b6 3771  4.17   980746 g6b6 a5b6 a3b4 c4c3 b2d3 b6c6 b4c4 c6b6 c4b4 b6c6
b4c4 c6b6 c4b4 b6c6 b4c4 c6b6 c4b4
13/32 Tg6b6  3873  6.00  1475584 g6b6 a5b6 a3b4 c4c3 b2d3 b6c6 b4c4 c6b6 c4d4
b6a5 d4c3 a5a4 d3c5 a4a5 c5b7 a5a4
nps=245931 h/p/q=32.00%/98.00%/0.00% q=69.0% bc=53% br=1.90
mp=882/2031/-1704565095/-1081
pawnx=18276 recapx=3584 qcheckx=0 checkx=70023 qfutilx=194792 onereplyx=5232
mthrx=11251 futilx=0 bmx=3190
+ 8.54/20.91 88% 242/274 bf=2.19 h/p/q=32.50%/96.72%/0.00% 1316.52 143812864
524864/5/109237 838461/411996/1400897/5128756/18594892/533823/0/53864
*** Problem   Solution(s): Nc5 Nxg2 b5 (bm)
[D] r1b2rk1/1p1n1ppp/p1p2q2/4p3/P1B1Pn2/1QN2N2/1P3PPP/3R1RK1 b - - bm Nc5 Nxg2
b5
*** Problem   Solution(s): Nc5 Nxg2 b5 (bm)
BR ** BB ** -- BR BK **
** BP ** BN ** BP BP BP
BP ** BP ** -- BQ -- **
** -- ** -- BP -- ** --
WP ** WB ** WP BN -- **
** WQ WN -- ** WN ** --
-- WP -- ** -- WP WP WP
** -- ** WR ** WR WK --
mv 1 stage 0, black to move, computer plays black
hash=8b89f9be0e091aa7
pawnhash=cfd27eddcef32609
Alpha=271 Beta=1072 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 3 f6d8 954  0.00       50 f6d8
 2/ 6 c6c5 723  0.01      330 c6c5
 3/ 8 g8h8 656  0.03     2129 g8h8 g2g3
 4/16 g8h8 732  0.07     4518 g8h8 g2g3 f4h3 g1g2 d7c5
 5/16 b7b5 924  0.19    14807 b7b5 a4b5 c6b5 c4e2 f4e2 c3e2
 6/16>b7b5 1324  0.41    33539 b7b5 a4b5 c6b5 c4d5 d7c5
 6/16 b7b5 1586  0.63    53003 b7b5 a4b5 a6b5 c4d3 c8b7
 7/17 b7b5 1770  1.08    94420 b7b5 a4b5 a6b5 c4e2 f6g6 f3h4
 8/20 b7b5 1886  2.23   200750 b7b5 a4b5 a6b5 c4e2 f6g6 g2g3 f4e2 c3e2 g6e4 f1e1
 9/22 b7b5 2128  5.24   476061 b7b5 a4b5 a6b5 c4e2 f6g6 f3e1 f4e2 c3e2 g6e4 b3f3
10/22>Tb7b5  2528  6.00   552960 b7b5 a4b5 a6b5 c4e2 f6g6 f3e1 f4e2 c3e2 g6e4
b3f3 e4f3 g2f3 g8h8 g1g2
nps=92129 h/p/q=30.00%/97.00%/0.00% q=79.0% bc=52% br=2.43
mp=1462/1081/-862/-921
pawnx=971 recapx=1457 qcheckx=0 checkx=10718 qfutilx=135529 onereplyx=965
mthrx=11252 futilx=0 bmx=0
+ 8.55/20.91 88% 243/275 bf=2.19 h/p/q=32.49%/96.72%/0.00% 1322.52 144365824
524967/5/109160 839432/413453/1412149/5139474/18730420/534788/0/53864
*** Problem   Solution(s): Qd5+ (bm)
[D] r5k1/pp1RR1pp/1b6/6r1/2p5/B6P/P4qPK/3Q4 w - - bm Qd5+
*** Problem   Solution(s): Qd5+ (bm)
BR ** -- ** -- ** BK **
BP BP ** WR WR -- BP BP
-- BB -- ** -- ** -- **
** -- ** -- ** -- BR --
-- ** BP ** -- ** -- **
WB -- ** -- ** -- ** WP
WP ** -- ** -- BQ WP WK
** -- ** WQ ** -- ** --
mv 1 stage 0, white to move, computer plays white
hash=2bf4bfa70ebb0c66
pawnhash=4f4f67fc98d7b2b7
Alpha=-3404 Beta=-2603 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 5 d1f3 -3250  0.00      126 d1f3
 2/ 8<d1f3 -3650  0.01      533 d1f3 f2a2
 2/ 8 e7e2 -4195  0.02     1037 e7e2 g5g2 h2h1
 3/11>e7e2 -3794  0.03     2243 e7e2 g5g2 h2h1 f2g1
 3/11 d1d5 4118  0.05     3713 d1d5 g8h8 d5g5 f2g1 h2g3 b6f2 g3g4
 4/13>d1d5 4518  0.07     4867 d1d5 g8h8 d5g5 f2g1 h2g3 b6f2 g3f3 a8f8 e7f7
 4/13 d1d5 4519  0.10     7988 d1d5 g8h8 d7d8 a8d8 d5d8 b6d8 e7e8 f2f8 e8f8
 5/14>d1d5 4919  0.12    10019 d1d5 g8h8 d7d8 b6d8 e7e8
 5/14 d1d5 9775  0.19    18774 d1d5 g8h8 d7d8 f2f8 d8f8 a8f8 d5g5 b6g1
 6/16<d1d5 9374  0.35    38967 d1d5 g8h8 d7d8 f2f8 d8f8 a8f8 d5g5 b6g1 h2g1 h8g8
e7g7
 6/16 d1d5 9374  0.35    38986 d1d5 g8h8 d7d8 f2f8 d8f8 a8f8 d5g5 b6g1 h2g1 h8g8
e7g7
 7/19 d1d5 8974  0.97   113918 d1d5 g8h8 d7d8 f2f8 d8a8 g5f5 a8f8 f5f8 d5c4
 8/22 d1d5 8574  2.67   329201 d1d5 g8h8 d7d8 f2f8 d8f8 a8f8
 9/31 Td1d5  8970  6.00   733184 d1d5 g8h8 d7d8 f2f8 d8f8 a8f8 d5g5 b6d4 g5d5
d4a1 e7g7
nps=122116 h/p/q=21.00%/99.00%/0.00% q=72.0% bc=57% br=2.31
mp=2820/26843596/-1179/-26738600
pawnx=2602 recapx=1515 qcheckx=0 checkx=39330 qfutilx=75017 onereplyx=4563
mthrx=11295 futilx=0 bmx=1145
+ 8.55/20.95 88% 244/276 bf=2.19 h/p/q=32.45%/96.73%/0.00% 1328.53 145099008
525721/5/109218 842034/414968/1423444/5178804/18805436/539351/0/55009
*** Problem   Solution(s): Rg3 Rxg2 (bm)
[D] 1r4r1/p2kb2p/bq2p3/3p1p2/5P2/2BB3Q/PP4PP/3RKR2 b - - bm Rg3 Rxg2
*** Problem   Solution(s): Rg3 Rxg2 (bm)
-- BR -- ** -- ** BR **
BP -- ** BK BB -- ** BP
BB BQ -- ** BP ** -- **
** -- ** BP ** BP ** --
-- ** -- ** -- WP -- **
** -- WB WB ** -- ** WQ
WP WP -- ** -- ** WP WP
** -- ** WR WK WR ** --
mv 1 stage 0, black to move, computer plays black
hash=dd1ff9cbd2cf6f02
pawnhash=1bfe7575f239c047
Alpha=294 Beta=1095 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 5>a6b7 1095  0.00      106 a6b7
 1/ 5 b8c8 1193  0.01      203 b8c8 d3a6 b6a6
 2/ 7 a6d3 1273  0.01      621 a6d3 d1d3 b8c8
 3/11 a6d3 1193  0.03     2115 a6d3 d1d3 b6c5
 4/14<a6d3 792  0.09     7983 a6d3 d1d3 b6c5 h3h7 g8g2
 4/14 a6d3 715  0.18    13912 a6d3 d1d3 b8c8 d3d4
 5/15>a6d3 1115  0.30    24146 a6d3 d1d3 b8c8 h3h7 g8g2 c3d4
 5/15 g8g2 2058  0.47    41068 g8g2 h3g2 b6e3 g2e2 e7h4 f1f2 h4f2 e1f1 a6d3 d1d3
 6/18 g8g2 2312  0.82    77416 g8g2 h3g2 b6e3 g2e2 e7h4 f1f2 h4f2 e1f1 a6d3 d1d3
e3e2 f1e2 f2c5
 7/22<g8g2 1911  1.70   168082 g8g2 h3g2 b6e3 g2e2 e7h4 f1f2 h4f2 e1f1 a6d3 d1d3
e3e2 f1e2 f2c5
 7/22 g8g2 1911  1.93   188033 g8g2 h3g2 b6e3 g2e2 e7h4 f1f2 h4f2 e1f1 a6d3 d1d3
e3e2 f1e2 f2c5
 8/24 g8g2 1739  4.52   461723 g8g2 h3g2 b6e3 g2e2 e7h4 f1f2 h4f2 e1f1 a6d3 d1d3
e3e2 f1e2 f2g1 d3h3
 9/28 Tg8g2  1350  6.02   606208 g8g2 h3g2 b6e3 g2e2 e7h4 f1f2 h4f2 e1f1 a6d3
d1d3 e3e2 f1e2 f2b6 d3h3 b8g8 h3h7
nps=100749 h/p/q=33.00%/99.00%/0.00% q=77.0% bc=58% br=2.43
mp=839/2389/-1409/-1102
pawnx=169 recapx=2480 qcheckx=0 checkx=20266 qfutilx=89916 onereplyx=1235
mthrx=11295 futilx=0 bmx=0
+ 8.55/20.97 88% 245/277 bf=2.19 h/p/q=32.45%/96.74%/0.00% 1334.54 145705216
526012/5/109180 842203/417448/1434739/5199070/18895352/540586/0/55009
*** Problem   Solution(s): Bf7+ (bm)
[D] r2qkb1r/pppb2pp/2np1n2/5pN1/2BQP3/2N5/PPP2PPP/R1B1K2R w KQkq - bm Bf7+
*** Problem   Solution(s): Bf7+ (bm)
BR ** -- BQ BK BB -- BR
BP BP BP BB ** -- BP BP
-- ** BN BP -- BN -- **
** -- ** -- ** BP WN --
-- ** WB WQ WP ** -- **
** -- WN -- ** -- ** --
WP WP WP ** -- WP WP WP
WR -- WB -- WK -- ** WR
mv 1 stage 0, white to move, computer plays white
hash=85b5657d2afa2042
pawnhash=31c3057c296d921a
Alpha=-403 Beta=397 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 7>d4d2 397  0.00      259 d4d2
 1/ 7 d4d1 399  0.01      338 d4d1
 2/10 c4f7 103  0.02     1231 c4f7 e8e7 d4d1 f6e4
 3/13 c4f7 97  0.07     5267 c4f7 e8e7 c3d5 f6d5 d4d5 h7h6 g5e6 d7e6 d5e6
 4/17>Mc4f7  99954  0.14    11269 c4f7 e8e7 d4f6 e7f6 c3d5 f6e5 g5f3 e5e4 d5c3
nps=83474 h/p/q=31.00%/92.00%/0.00% q=79.0% bc=61% br=2.07 mp=303/66/-1027/-1270
pawnx=5 recapx=42 qcheckx=0 checkx=144 qfutilx=2999 onereplyx=32 mthrx=11295
futilx=0 bmx=0
+ 8.53/20.96 88% 246/278 bf=2.19 h/p/q=32.44%/96.72%/0.00% 1334.68 145716480
524160/5/109177 842208/417490/1446034/5199214/18898352/540618/0/55009
*** Problem   Solution(s): Nxf5 Rc3 (bm)
[D] r7/4b3/2p1r1k1/1p1pPp1q/1P1P1P1p/PR2NRpP/2Q3K1/8 w - - bm Nxf5 Rc3
*** Problem   Solution(s): Nxf5 Rc3 (bm)
BR ** -- ** -- ** -- **
** -- ** -- BB -- ** --
-- ** BP ** BR ** BK **
** BP ** BP WP BP ** BQ
-- WP -- WP -- WP -- BP
WP WR ** -- WN WR BP WP
-- ** WQ ** -- ** WK **
** -- ** -- ** -- ** --
mv 1 stage 0, white to move, computer plays white
hash=dc455a8b3e743952
pawnhash=d5182bfaeee828ac
Alpha=-572 Beta=228 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 4>f3f1 228  0.00       53 f3f1
 1/ 4 e3g4 410  0.00       98 e3g4
 2/ 5 f3f1 154  0.01      228 f3f1
 3/ 8 f3f1 -136  0.01      671 f3f1 a8f8
 4/ 8>f3f1 264  0.02     1330 f3f1 a8f8 b3b1
 4/11 f3f1 270  0.03     2452 f3f1 a8f8 e3g4
 5/11>f3f1 670  0.06     5356 f3f1 a8f8 e3g4 e7f6 e5f6
 5/13 e3f5 2847  0.12    10438 e3f5 g6f7 f5e7 f7e7 f4f5
 6/15 e3f5 3164  0.25    22234 e3f5 g6f7 f5d6 e7d6 c2c6 a8e8 e5d6
 7/19 e3f5 3079  0.50    47162 e3f5 g6f7 f5d6 e7d6 c2c6 a8e8 c6b5 e6g6 e5d6 g6d6
 8/22 e3f5 3287  1.35   131483 e3f5 g6f7 f5e7 f7e7 f4f5 e6h6 f5f6 e7d7 f6f7
 9/22 e3f5 3682  2.59   258846 e3f5 g6f7 f5e7 f7e7 f4f5 e6h6 f5f6 e7d7 e5e6 d7c7
f6f7
10/25 Te3f5  3953  6.02   603136 e3f5 g6f7 f5d6 e7d6 c2c6 a8a7 f4f5 e6h6 c6d5
f7e7 e5d6 h6d6 d5b5 d6d4
nps=100172 h/p/q=33.00%/98.00%/0.00% q=74.0% bc=58% br=2.23
mp=4277/26843596/-1154/-26738600
pawnx=7648 recapx=1203 qcheckx=0 checkx=18169 qfutilx=201676 onereplyx=352
mthrx=11295 futilx=0 bmx=106
+ 8.54/20.97 88% 247/279 bf=2.19 h/p/q=32.44%/96.72%/0.00% 1340.70 146319616
524443/5/109137 849856/418693/1457329/5217383/19100028/540970/0/55115
*** Problem   Solution(s): Bxa3 (bm)
[D] r1r2bk1/5p1p/pn4p1/N2b4/3Pp3/B3P3/2q1BPPP/RQ3RK1 b - - bm Bxa3
*** Problem   Solution(s): Bxa3 (bm)
BR ** BR ** -- BB BK **
** -- ** -- ** BP ** BP
BP BN -- ** -- ** BP **
WN -- ** BB ** -- ** --
-- ** -- WP BP ** -- **
WB -- ** -- WP -- ** --
-- ** BQ ** WB WP WP WP
WR WQ ** -- ** WR WK --
mv 1 stage 0, black to move, computer plays black
hash=f8a9bc89ccf0ed60
pawnhash=bada79da11a730fc
Alpha=-333 Beta=467 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 6 c2c7 259  0.00      204 c2c7
 2/ 8 f8g7 219  0.01      600 f8g7 b1b6 c2e2
 3/ 9 c2e2 235  0.02     1623 c2e2 b1b6 c8c2
 4/11 c2e2 453  0.05     4233 c2e2 b1b6 f8a3 a1a3 c8c2
 5/13 f8a3 453  0.17    15377 f8a3 a1a3 c2e2 b1b6 c8c2
 6/15 f8a3 65  0.44    41466 f8a3 a1a3 c2e2 b1b6 a8b8 b6f6
 7/15>f8a3 465  0.53    51660 f8a3 a1a3 c2e2 b1b6 a8b8 b6f6 e2f1 g1f1 c8f8 f6a6
 7/15 c2e2 466  0.84    83230 c2e2 b1b6 f8a3 a1a3 a8b8 b6f6 e2f1 g1f1 b8b1
 8/17>c2e2 866  1.94   197800 c2e2 a3f8 b6c4 f1e1 e2g4 a5c4 d5c4
 8/18 f8a3 2206  4.63   468395 f8a3 e2g4 a3b2 g4c8 a8c8 b1c2 c8c2 a1b1
 9/19>f8a3 2606  5.46   552828 f8a3 e2g4 a3b2 g4c8 a8c8 b1c2 c8c2 a1b1
 9/19 Tf8a3  2828  6.02   610304 f8a3 e2g4 a3b2 g4c8 a8c8 b1c2 c8c2 a1b1 g8g7
nps=101430 h/p/q=42.00%/99.00%/0.00% q=77.0% bc=49% br=2.55
mp=1173/1335/-385/-1110
pawnx=379 recapx=2173 qcheckx=0 checkx=5993 qfutilx=106671 onereplyx=934
mthrx=11295 futilx=0 bmx=7
+ 8.54/20.96 88% 248/280 bf=2.20 h/p/q=32.48%/96.73%/0.00% 1346.71 146929920
524750/5/109102 850235/420866/1468624/5223376/19206700/541904/0/55122
*** Problem   Solution(s): Rxh7+ (bm)
[D] 2R5/2R4p/5p1k/6n1/8/1P2QPPq/r7/6K1 w - - bm Rxh7+
*** Problem   Solution(s): Rxh7+ (bm)
-- ** WR ** -- ** -- **
** -- WR -- ** -- ** BP
-- ** -- ** -- BP -- BK
** -- ** -- ** -- BN --
-- ** -- ** -- ** -- **
** WP ** -- WQ WP WP BQ
BR ** -- ** -- ** -- **
** -- ** -- ** -- WK --
mv 1 stage 0, white to move, computer plays white
hash=b3180bed65e89098
pawnhash=dbd88c8592c1a35d
Alpha=4408 Beta=5209 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 2 f3f4 4832  0.00       48 f3f4
 2/ 7<f3f4 4431  0.00      279 f3f4 h3c8
 2/ 7 e3f4 4409  0.01      494 e3f4
 3/ 9<e3f4 4008  0.02     1193 e3f4 h3c8 c7c8
 3/10 c7c2 2281  0.03     2050 c7c2 h3g3 g1f1 a2c2 c8c2
 4/12 c7c2 2133  0.07     6015 c7c2 a2a1 c2c1 h3g3 g1f1 a1c1 c8c1 h6g7
 5/14>c7c2 2533  0.10     8934 c7c2 a2a1 c2c1 h3g3 g1f1 a1c1 c8c1 h6g7 f1e2
 5/14 c7h7 5240  0.17    15544 c7h7 h6h7 e3e7 h7g6 c8g8 g6f5 g3g4 f5f4 e7f6 f4g3
g8g5
 6/16>c7h7 5640  0.20    19639 c7h7 h6h7 e3e7 h7g6 c8g8 g6f5 g3g4 f5f4 e7f6 f4g3
g8g5
 6/18 c7h7 10384  0.45    49344 c7h7 h6h7 e3e7 h7g6 c8g8 g6f5 g8g5 f5g5 e7g7
g5f5 g7d7 f5e5 d7h3
 7/19 c7h7 10384  0.89   105716 c7h7 h6h7 e3e7 h7g6 c8g8 g6f5 e7c5 f5e6 g8e8
e6f7 c5e7 f7g6 e8g8 g6f5 e7c5 f5e6 g8e8 e6f7 c5e7 f7g6 e8g8 g6f5 e7c5 f5e6 g8e8
e6f7 c5e7 f7g6 e8g8
 8/22 c7h7 10384  2.18   261989 c7h7 h6h7 e3e7 h7g6 c8g8 g6f5 e7c5 f5e6 g8e8
e6f7 c5e7 f7g6 e8g8 g6f5 e7c5 f5e6 g8e8 e6f7 c5e7 f7g6 e8g8 g6f5 e7c5 f5e6 g8e8
e6f7 c5e7 f7g6 e8g8
 9/26 c7h7 10384  5.32   685366 c7h7 h6h7 e3e7 h7g6 c8g8 g6f5 e7c5 f5e6 g8e8
e6f7 c5e7 f7g6 e8g8 g6f5 e7c5 f5e6 g8e8 e6f7 c5e7 f7g6 e8g8 g6f5 e7c5 f5e6 g8e8
e6f7 c5e7 f7g6 e8g8
10/26>Tc7h7  10784  6.00   771093 c7h7 h6h7 e3e7 h7g6 c8g8 g6f5 e7c5 f5e6 g8e8
e6f7 c5e7 f7g6 e8g8 g6f5 e7c5 f5e6 g8e8 e6f7 c5e7 f7g6 e8g8 g6f5 e7c5 f5e6 g8e8
e6f7 c5e7 f7g6 e8g8
nps=128451 h/p/q=30.00%/99.00%/0.00% q=65.0% bc=62% br=2.54 mp=770/264/0/-429
pawnx=154 recapx=1010 qcheckx=0 checkx=82367 qfutilx=41360 onereplyx=4108
mthrx=11431 futilx=0 bmx=379
+ 8.54/20.98 88% 249/281 bf=2.20 h/p/q=32.47%/96.74%/0.00% 1352.72 147701008
525626/5/109188 850389/421876/1480055/5305743/19248060/546012/0/55501
*** Problem   Solution(s): Rh8+ (bm)
[D] 6k1/2p3p1/1p1p1nN1/1B1P4/4PK2/8/2r3b1/7R w - - bm Rh8+
*** Problem   Solution(s): Rh8+ (bm)
-- ** -- ** -- ** BK **
** -- BP -- ** -- BP --
-- BP -- BP -- BN WN **
** WB ** WP ** -- ** --
-- ** -- ** WP WK -- **
** -- ** -- ** -- ** --
-- ** BR ** -- ** BB **
** -- ** -- ** -- ** WR
mv 1 stage 0, white to move, computer plays white
hash=4bc1a0405584e0fe
pawnhash=c1e113866c3b1ed8
Alpha=-3224 Beta=-2423 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 5 g6e7 -3034  0.00       84 g6e7 g8f7
 2/ 8<g6e7 -3434  0.01      358 g6e7 g8f7
 2/ 8 g6e7 -3434  0.01      362 g6e7 g8f7
 3/11 h1h8 -3752  0.02     1590 h1h8 g8f7 b5d3 c2f2 f4g3 f2f3 g3g2 f3d3
 4/12<h1h8 -4152  0.07     6696 h1h8 g8f7 b5d3 c2a2 f4f5
 4/12 h1h8 -4152  0.11     6728 h1h8 g8f7 b5d3 c2a2 f4f5
 5/13<h1h8 -4552  0.20    17225 h1h8 g8f7 b5d3 c2b2 g6h4 f6d5 e4d5
 5/13 h1h8 -4552  0.22    19378 h1h8 g8f7 b5d3 c2b2 g6h4 f6d5 e4d5
 6/15>h1h8 -4151  0.40    40399 h1h8 g8f7 e4e5 f6d5 f4g5 d6e5 g6e5 f7e6 h8e8
e6d6
 6/15 Mh1h8  99991  0.41    41550 h1h8 g8f7 e4e5 f6d5 f4g5 d6e5 g6e5 f7e6 h8e8
e6d6
nps=101838 h/p/q=33.00%/99.00%/0.00% q=73.0% bc=55% br=2.34 mp=0/117/-860/-430
pawnx=233 recapx=152 qcheckx=0 checkx=2243 qfutilx=4856 onereplyx=159
mthrx=11450 futilx=0 bmx=108
+ 8.54/20.96 88% 250/282 bf=2.20 h/p/q=32.47%/96.75%/0.00% 1353.13 147742560
523910/5/109186 850622/422028/1491505/5307986/19252916/546171/0/55609
*** Problem   Solution(s): Ng5 (bm)
[D] 3q1rk1/4bp1p/1n2P2Q/3p1p2/6r1/Pp2R2N/1B4PP/7K w - - bm Ng5
*** Problem   Solution(s): Ng5 (bm)
-- ** -- BQ -- BR BK **
** -- ** -- BB BP ** BP
-- BN -- ** WP ** -- WQ
** -- ** BP ** BP ** --
-- ** -- ** -- ** BR **
WP BP ** -- WR -- ** WN
-- WB -- ** -- ** WP WP
** -- ** -- ** -- ** WK
mv 1 stage 0, white to move, computer plays white
hash=6642c661f6b93524
pawnhash=b67715350b6ebc5b
Alpha=-6701 Beta=-5900 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 5 e6f7 -6301  0.01      233 e6f7 f8f7 e3b3
 2/ 8 e6f7 -6676  0.01      845 e6f7 f8f7 e3b3 b6c4
 3/11 e3b3 -6676  0.03     2757 e3b3 b6c4 e6f7 f8f7
 4/11>e3b3 -6275  0.04     3598 e3b3 b6c4 e6f7 f8f7 b2c3 c4a3
 4/12 e6f7 -6204  0.08     7789 e6f7 f8f7 e3b3 b6a4 h3f2
 5/13 e3b3 -6602  0.20    20740 e3b3 b6c4 h3f2 c4b2 f2g4
 6/14 e3b3 -6997  0.77    80879 e3b3 b6c4 b2a1 c4a3 b3a3
 7/17>e3b3 -6596  1.00   104378 e3b3 b6c4 b2a1 c4a3 e6f7 f8f7 h3g1 g4g2
 7/18 e3b3 -6596  1.46   161466 e3b3 b6c4 e6f7 f8f7 h6c1 c4b2 c1b2 g4g2 b2g2
 8/21 e3b3 -6630  3.67   415541 e3b3 b6c4 b2c1 f7e6 h6e6 f8f7 e6e5
 9/21 Te3b3  -6770  6.00   662528 e3b3 b6c4 h3f2 g4g6 e6f7 f8f7 h6h3 c4b2 b3b2
e7a3 h3a3 g6g2
nps=110403 h/p/q=31.00%/99.00%/0.00% q=73.0% bc=53% br=2.28
mp=1578/26843615/-1450/-1337
pawnx=5129 recapx=4694 qcheckx=0 checkx=18435 qfutilx=108869 onereplyx=1591
mthrx=11450 futilx=0 bmx=184
- 8.54/20.96 88% 250/283 bf=2.20 h/p/q=32.47%/96.76%/0.00% 1359.13 148405088
524400/5/109191 855751/426722/1502955/5326421/19361784/547762/0/55793
*** Problem   Solution(s): Nf5 (bm)
[D] 3r3k/pp4pp/8/1P6/3N4/Pn2P1qb/1B1Q2B1/2R3K1 w - - bm Nf5
*** Problem   Solution(s): Nf5 (bm)
-- ** -- BR -- ** -- BK
BP BP ** -- ** -- BP BP
-- ** -- ** -- ** -- **
** WP ** -- ** -- ** --
-- ** -- WN -- ** -- **
WP BN ** -- WP -- BQ BB
-- WB -- WQ -- ** WB **
** -- WR -- ** -- WK --
mv 1 stage 0, white to move, computer plays white
hash=94f8be7cab936e1f
pawnhash=e350aca29f454121
Alpha=1466 Beta=2267 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 4>d4b3 2267  0.00       31 d4b3
 1/ 5 d4b3 2267  0.01      155 d4b3
 2/ 7 d2f2 1867  0.01      295 d2f2
 3/ 9 d2f2 1525  0.01      896 d2f2 g3f2 g1f2 b3c1 g2h3
 4/12<d2f2 1124  0.03     2293 d2f2 g3f2 g1f2 b3c1 g2h3 d8d4
 4/12 d2f2 1124  0.04     3204 d2f2 g3f2 g1f2 b3c1 g2h3 d8d4
 5/14<d2f2 723  0.06     6076 d2f2 g3f2 g1f2 b3c1 g2h3 d8d4 e3d4
 5/15 d2f2 -102  0.12    11746 d2f2 g3f2 g1f2 b3c1 b2c1 d8c8 g2h3 c8c1
 6/16 d4f5 31  0.32    33831 d4f5 g3g5 b2g7 h8g8 f5e7 g5e7
 7/20>d4f5 431  0.66    71681 d4f5 g3g5 b2g7 h8g8 d2e2 g5g2 e2g2 h3g2 c1c7 g2e4
f5e7 g8g7 e7c6
 7/20 d4f5 3910  1.02   112370 d4f5 b3d2 f5g3 h3d7 c1c5
 8/20<d4f5 3509  1.35   145263 d4f5 b3d2 f5g3 h3d7 c1c5 d8f8 g1h2
 8/20 d4f5 3509  1.59   172704 d4f5 b3d2 f5g3 h3e6 c1c7 b7b6
 9/20<d4f5 3108  2.27   242694 d4f5 b3d2 f5g3 h3e6 c1c7 b7b6
 9/20 d4f5 2730  3.61   389962 d4f5 b3d2 f5g3 h3g2 g1g2 d2b3 c1f1 b3c5
10/23>d4f5 3130  5.41   599075 d4f5 b3d2 f5g3 h3g2 g1g2 d2b3 c1f1 b3c5 f1f7
10/23 Td4f5  3131  6.01   671744 d4f5 b3d2 f5g3 h3g2 g1g2 d2b3 c1c7 d8d2 g2f3
h8g8 b2g7
nps=111827 h/p/q=38.00%/99.00%/0.00% q=74.0% bc=53% br=2.42
mp=1835/1334/-1322/-26738600
pawnx=6869 recapx=853 qcheckx=0 checkx=20031 qfutilx=61085 onereplyx=2211
mthrx=11486 futilx=0 bmx=403
+ 8.54/20.97 88% 251/284 bf=2.20 h/p/q=32.49%/96.76%/0.00% 1365.13 149076832
524918/5/109203 862620/427575/1514441/5346452/19422868/549973/0/56196
*** Problem   Solution(s): Qxg7+ (bm)
[D] 2rr3k/1b2bppP/p2p1n2/R7/3P4/1qB2P2/1P4Q1/1K5R w - - bm Qxg7+
*** Problem   Solution(s): Qxg7+ (bm)
-- ** BR BR -- ** -- BK
** BB ** -- BB BP BP WP
BP ** -- BP -- BN -- **
WR -- ** -- ** -- ** --
-- ** -- WP -- ** -- **
** BQ WB -- ** WP ** --
-- WP -- ** -- ** WQ **
** WK ** -- ** -- ** WR
mv 1 stage 0, white to move, computer plays white
hash=48ea2db1a6a0c1c5
pawnhash=b49801eba6bc1113
Alpha=-8376 Beta=-7575 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 5>a5a6 -7575  0.00       66 a5a6
 1/ 7 a5a2 -7318  0.01      181 a5a2
 2/ 7 g2d2 -7318  0.01      469 g2d2
 3/10 a5a3 -7717  0.02     1543 a5a3 f6h7
 4/10>a5a3 -7316  0.04     2560 a5a3 f6h7 a3b3 c8c3
 4/14 Mg2g7  99968  0.08     7190 g2g7 h8g7 h7h8Q g7g6 h1g1 f6g4 g1g4 e7g5 a5g5
nps=87683 h/p/q=25.00%/97.00%/0.00% q=77.0% bc=64% br=1.95 mp=477/319/-807/-766
pawnx=0 recapx=4 qcheckx=0 checkx=339 qfutilx=1235 onereplyx=33 mthrx=11486
futilx=0 bmx=0
+ 8.53/20.94 88% 252/285 bf=2.20 h/p/q=32.46%/96.76%/0.00% 1365.22 149084016
523102/5/109202 862620/427579/1525927/5346791/19424104/550006/0/56196
*** Problem   Solution(s): Rxd5+ (bm)
[D] 3r1k2/1p6/p4P2/2pP2Qb/8/1P1KB3/P6r/8 b - - bm Rxd5+
*** Problem   Solution(s): Rxd5+ (bm)
-- ** -- BR -- BK -- **
** BP ** -- ** -- ** --
BP ** -- ** -- WP -- **
** -- BP WP ** -- WQ BB
-- ** -- ** -- ** -- **
** WP ** WK WB -- ** --
WP ** -- ** -- ** -- BR
** -- ** -- ** -- ** --
mv 1 stage 0, black to move, computer plays black
hash=183de269054a1575
pawnhash=bc05b1a7ebe9d176
Alpha=-1206 Beta=-405 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 3 b7b6 -508  0.00       64 b7b6
 2/ 6 h5e2 -882  0.01      380 h5e2 d3d2
 3/ 7>h5e2 -481  0.01      848 h5e2 d3c3 d8c8
 3/ 9 d8d5 3113  0.02     1413 d8d5 g5d5 h5g6 d5e4 g6e4 d3e4
 4/ 9>d8d5 3513  0.02     1548 d8d5 g5d5 h5g6 d5e4 g6e4 d3e4 h2a2
 4/ 9 d8d5 3513  0.03     3089 d8d5 g5d5 h5g6 d5e4 g6e4 d3e4 h2a2
 5/13 d8d5 3113  0.05     6601 d8d5 g5d5 h5g6 d5e4 g6e4 d3e4 h2e2
 6/14 d8d5 3115  0.10    14431 d8d5 g5d5 h5g6 d5e4 g6e4 d3e4 h2h4 e4d3 h4h3
 7/16 d8d5 3113  0.26    38313 d8d5 g5d5 h5g6 d5e4 g6e4 d3e4 b7b6 a2a4
 8/20 d8d5 3115  0.72   105466 d8d5 g5d5 h5g6 d5e4 g6e4 d3e4 b7b6 a2a4 h2h4 e3f4
f8f7
 9/20 d8d5 3117  1.81   264058 d8d5 g5d5 h5g6 d5e4 g6e4 d3e4 b7b6 a2a3 h2h4 e4d3
f8f7 e3f2
10/20>d8d5 3517  1.86   275309 d8d5 g5d5 h5g6 d5e4 g6e4 d3e4 b7b6 a2a3 h2h4 e4f5
f8f7 f5e5
10/24 d8d5 4721  3.63   554819 d8d5 g5d5 h5g6 d5e4 g6e4 d3e4 b7b6 a2a4 h2b2 e3h6
f8f7 e4f4
11/25<Td8d5  4320  6.01   955392 d8d5 g5d5 h5g6 d5e4 g6e4 d3e4 b7b6 a2a4 h2b2
e4f3 b2b3
nps=158941 h/p/q=34.00%/99.00%/0.00% q=64.0% bc=55% br=2.20
mp=1307/828/-1205/-26738637
pawnx=5482 recapx=333 qcheckx=0 checkx=56924 qfutilx=105768 onereplyx=1808
mthrx=11531 futilx=0 bmx=961
+ 8.53/20.96 88% 253/286 bf=2.20 h/p/q=32.47%/96.77%/0.00% 1371.23 150039408
524613/5/109420 868102/427912/1537458/5403715/19529872/551814/0/57157
*** Problem   Solution(s): Qg4 Qh5 (bm)
[D] rn3k1r/pp2bBpp/2p2n2/q5N1/3P4/1P6/P1P3PP/R1BQ1RK1 w - - bm Qg4 Qh5
*** Problem   Solution(s): Qg4 Qh5 (bm)
BR BN -- ** -- BK -- BR
BP BP ** -- BB WB BP BP
-- ** BP ** -- BN -- **
BQ -- ** -- ** -- WN --
-- ** -- WP -- ** -- **
** WP ** -- ** -- ** --
WP ** WP ** -- ** WP WP
WR -- WB WQ ** WR WK --
mv 1 stage 0, white to move, computer plays white
hash=d85d299678b511b4
pawnhash=38500eb4ef1cf128
Alpha=2146 Beta=2947 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 5 c2c4 2645  0.00      102 c2c4
 2/ 7 a2a4 2595  0.01      421 a2a4
 3/ 9 c1f4 2312  0.03     2201 c1f4 a5d8
 4/11 c1d2 2709  0.07     6305 c1d2 a5c7
 5/14 c1d2 2776  0.18    16621 c1d2 a5b6 c2c3
 6/16 d1h5 2729  0.94    85767 d1h5 e7d8 g5e6 f8e7 c1g5 e7d7
 7/20 d1h5 2754  2.52   234899 d1h5 e7b4 g5e6 f8e7 c1g5 b4d2 e6c5
 8/20 d1h5 3126  5.19   508225 d1h5 e7d8 f7g8 g7g6 g5h7
 9/23 Td1h5  3525  6.00   580633 d1h5 e7d8 f7g8 g7g6 g5h7
nps=96724 h/p/q=22.00%/99.00%/0.00% q=76.0% bc=62% br=2.37
mp=1581/328/-1436/-2325
pawnx=138 recapx=1362 qcheckx=0 checkx=27313 qfutilx=77409 onereplyx=2094
mthrx=11531 futilx=0 bmx=0
+ 8.54/20.97 88% 254/287 bf=2.20 h/p/q=32.43%/96.78%/0.00% 1377.23 150620048
524808/5/109364 868240/429274/1548989/5431028/19607280/553908/0/57157
*** Problem   Solution(s): Nf6+ (bm)
[D] r1b2rk1/p4ppp/1p1Qp3/4P2N/1P6/8/P3qPPP/3R1RK1 w - - bm Nf6+
*** Problem   Solution(s): Nf6+ (bm)
BR ** BB ** -- BR BK **
BP -- ** -- ** BP BP BP
-- BP -- WQ BP ** -- **
** -- ** -- WP -- ** WN
-- WP -- ** -- ** -- **
** -- ** -- ** -- ** --
WP ** -- ** BQ WP WP WP
** -- ** WR ** WR WK --
mv 1 stage 0, white to move, computer plays white
hash=4bd1a28f50115539
pawnhash=3cc6d54d6269396a
Alpha=194 Beta=995 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 5 d6c6 299  0.00      119 d6c6
 2/ 9 d6c6 250  0.01      441 d6c6 c8a6
 3/10<d6c6 -150  0.02     1362 d6c6 c8a6 h5g7
 3/11 h5f4 -833  0.03     2430 h5f4 e2a2
 4/13 h5f4 -629  0.07     7113 h5f4 e2a2 d6c6
 5/14 f2f3 -680  0.16    16738 f2f3 e2a2 d6e7
 6/15>f2f3 -279  0.30    33341 f2f3 e2a2 f1f2 a2c4
 6/15 h5f6 3023  0.34    37721 h5f6 g7f6 e5f6 e2f1 d1f1 f8e8
 7/15>h5f6 3423  0.36    39726 h5f6 g7f6 e5f6 e2f1 d1f1 f8e8 f2f3 g8h8
 7/18 h5f6 3522  0.53    60777 h5f6 g7f6 e5f6 e2f1 d1f1 h7h6 f1c1
 8/21 h5f6 3776  0.96   111324 h5f6 g7f6 e5f6 e2f1 d1f1 e6e5 d6e5 c8h3
 9/21>h5f6 4176  1.02   117932 h5f6 g7f6 e5f6 e2f1 d1f1 e6e5 d6e5 c8h3 g2h3 f8e8
e5e8 a8e8 g1g2
 9/24 h5f6 4704  1.85   224370 h5f6 g7f6 e5f6 e2f1 d1f1 e6e5 d6e5 c8h3 g2h3
10/26<h5f6 4303  3.59   451832 h5f6 g7f6 e5f6 e2f1 d1f1 e6e5 d6e5 f8d8 f2f3 mtmt
10/26 h5f6 4303  3.60   452781 h5f6 g7f6 e5f6 e2f1 d1f1 e6e5 d6e5 f8d8 f2f3 mtmt
11/28<Th5f6  3902  6.00   776192 h5f6 g7f6 e5f6 e2f1 d1f1 e6e5 d6e5 f8d8 f2f3
c8d7 e5e8 d7e8 f1c1
nps=129279 h/p/q=43.00%/98.00%/0.00% q=67.0% bc=51% br=2.06
mp=1750/775/-1331/-1527
pawnx=2921 recapx=698 qcheckx=0 checkx=24559 qfutilx=88583 onereplyx=4365
mthrx=12053 futilx=0 bmx=7
+ 8.55/20.99 88% 255/288 bf=2.20 h/p/q=32.47%/96.78%/0.00% 1383.23 151396240
525681/5/109451 871161/429972/1561042/5455587/19695864/558273/0/57164
*** Problem   Solution(s): Qe5 (bm)
[D] 2r3k1/5p1p/p3q1p1/2n3P1/1p1QP2P/1P4N1/PK6/2R5 b - - bm Qe5
*** Problem   Solution(s): Qe5 (bm)
-- ** BR ** -- ** BK **
** -- ** -- ** BP ** BP
BP ** -- ** BQ ** BP **
** -- BN -- ** -- WP --
-- BP -- WQ WP ** -- WP
** WP ** -- ** -- WN --
WP WK -- ** -- ** -- **
** -- WR -- ** -- ** --
mv 1 stage 0, black to move, computer plays black
hash=92580e9adb4c3849
pawnhash=d928bf42d24d116e
Alpha=-258 Beta=542 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 5 e6b6 158  0.00       95 e6b6
 2/ 7 e6b6 -21  0.01      475 e6b6 d4f6
 3/ 9 e6b6 18  0.02     1570 e6b6 e4e5
 4/11 e6b6 142  0.05     4836 e6b6 b2b1 a6a5
 5/13>e6b6 542  0.13    10155 e6b6 b2b1 a6a5 d4f6 b6f6 g5f6
 5/13 e6e5 1777  0.15    12774 e6e5 c1c4 e5g3 c4c5 c8c5 d4c5 g3h4
 6/14>e6e5 2177  0.18    15450 e6e5 c1c4 e5g3 c4c5 c8c5 d4c5 g3h4
 6/16 e6e5 5071  0.27    27117 e6e5 c1d1 e5g3 d4g1 c5e4
 7/18 e6e5 5347  0.46    50499 e6e5 c1d1 e5g3 e4e5 c5e6
 8/22<e6e5 4946  1.06   125003 e6e5 c1d1 e5g3 d4f6 g3g2 b2a1 c5e4 d1d8 c8d8 f6d8
g8g7 d8h8 g7h8
 8/22 e6e5 4945  1.43   171616 e6e5 c1c4 c5d3 b2b1 e5d4 c4c8 g8g7 mtmt
 9/22 e6e5 5179  2.36   288902 e6e5 c1d1 e5g3 e4e5 c5e6 d4e4 a6a5
10/24 e6e5 5291  5.42   680656 e6e5 c1d1 e5g3 e4e5 c5e6 d1d3 g3h4
11/27 Te6e5  5291  6.01   747520 e6e5 c1d1 e5g3 e4e5 c5e6 d4e4 c8c5 e4a8 g8g7
a8e4 c5e5
nps=124421 h/p/q=36.00%/99.00%/0.00% q=68.0% bc=57% br=2.02
mp=1065/1714/-1288/-1061
pawnx=5438 recapx=1773 qcheckx=0 checkx=37352 qfutilx=85966 onereplyx=4283
mthrx=12352 futilx=0 bmx=52
+ 8.55/21.01 88% 256/289 bf=2.20 h/p/q=32.48%/96.79%/0.00% 1389.24 152143760
526449/5/109516 876599/431745/1573394/5492939/19781830/562556/0/57216
*** Problem   Solution(s): Ne2+ (bm)
[D] 2k2r2/2p5/1pq5/p1p1n3/P1P2n1B/1R4Pp/2QR4/6K1 b - - bm Ne2+
*** Problem   Solution(s): Ne2+ (bm)
-- ** BK ** -- BR -- **
** -- BP -- ** -- ** --
-- BP BQ ** -- ** -- **
BP -- BP -- BN -- ** --
WP ** WP ** -- BN -- WB
** WR ** -- ** -- WP BP
-- ** WQ WR -- ** -- **
** -- ** -- ** -- WK --
mv 1 stage 0, black to move, computer plays black
hash=c56b44e8893881d9
pawnhash=c9a27fa0047715e1
Alpha=824 Beta=1625 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 6<c6a4 824  0.00      118 c6a4
 1/ 7 e5f3 710  0.00      271 e5f3 b3f3 c6f3 g3f4 f3f4
 2/ 7>e5f3 1110  0.01      292 e5f3 b3f3 c6f3 g3f4 f3f4
 2/ 7 e5f3 1110  0.01      778 e5f3 b3f3 c6f3 g3f4 f3f4
 3/ 9>e5f3 1510  0.03     2412 e5f3 b3f3 c6f3 g3f4 f3f4
 3/10 f4e2 1511  0.04     2903 f4e2 d2e2 f8f1 g1f1 c6h1 f1f2 e5g4
 4/11>f4e2 1911  0.04     3484 f4e2 g1h2 e2d4 h2h3
 4/12 Mf4e2  99976  0.06     4944 f4e2 d2e2 f8f1 g1f1 c6h1 f1f2 e5g4
nps=82400 h/p/q=43.00%/97.00%/0.00% q=78.0% bc=61% br=1.64 mp=594/1130/-947/0
pawnx=55 recapx=2 qcheckx=0 checkx=259 qfutilx=619 onereplyx=34 mthrx=12352
futilx=0 bmx=0
+ 8.54/20.98 88% 257/290 bf=2.19 h/p/q=32.51%/96.79%/0.00% 1389.30 152148704
524651/5/109514 876654/431747/1585746/5493198/19782448/562590/0/57216
*** Problem   Solution(s): h3 (bm)
[D] 5r1k/3b2p1/p6p/1pRpR3/1P1P2q1/P4pP1/5QnP/1B4K1 w - - bm h3
*** Problem   Solution(s): h3 (bm)
-- ** -- ** -- BR -- BK
** -- ** BB ** -- BP --
BP ** -- ** -- ** -- BP
** BP WR BP WR -- ** --
-- WP -- WP -- ** BQ **
WP -- ** -- ** BP WP --
-- ** -- ** -- WQ BN WP
** WB ** -- ** -- WK --
mv 1 stage 0, white to move, computer plays white
hash=50ad45e0995c3379
pawnhash=cbc5549972231f5d
Alpha=2060 Beta=2861 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 3 c5d5 2461  0.00       51 c5d5
 2/ 4 c5d5 2463  0.00      168 c5d5 h6h5
 3/ 6 c5d5 2532  0.01      635 c5d5 g7g5
 4/ 9 e5d5 2525  0.04     3374 e5d5 g4e6 d5f5
 5/ 9 e5d5 2472  0.07     6506 e5d5 g2f4 d5e5
 6/16<e5d5 2071  0.23    21992 e5d5 g2f4 d5e5 f8g8 e5e7
 6/16 c5c1 2071  0.66    59659 c5c1 g2f4 mtmt
 7/22 g1h1 2160  1.40   133515 g1h1 h6h5 c5d5 g4h3
 8/22 c5c3 2424  2.37   234428 c5c3 h6h5 e5d5 g4h3 mtmt
 9/24>g1h1 2824  5.37   538819 g1h1 h8g8 e5d5 g4e6 d5e5
 9/24 h2h3 2825  5.88   591759 h2h3 g4h3 f2f3 g2f4 f3f4 f8f4 c5c8 d7c8 e5e8 f4f8
10/24<Th2h3  2424  6.00   604199 h2h3 g4h3 f2f3 g2f4 f3f4 h3g3 f4g3 d7e6 mtmt
nps=100650 h/p/q=28.00%/99.00%/0.00% q=76.0% bc=58% br=3.41
mp=1498/1993/-1356/-1290
pawnx=1922 recapx=1126 qcheckx=0 checkx=13222 qfutilx=146195 onereplyx=1751
mthrx=12661 futilx=0 bmx=54
+ 8.54/20.99 88% 258/291 bf=2.20 h/p/q=32.50%/96.80%/0.00% 1395.31 152752896
524924/5/109476 878576/432873/1598407/5506420/19928644/564341/0/57270
*** Problem   Solution(s): d6+ (bm)
[D] 4r3/1Q1qk2p/p4pp1/3Pb3/P7/6PP/5P2/4R1K1 w - - bm d6+
*** Problem   Solution(s): d6+ (bm)
-- ** -- ** BR ** -- **
** WQ ** BQ BK -- ** BP
BP ** -- ** -- BP BP **
** -- ** WP BB -- ** --
WP ** -- ** -- ** -- **
** -- ** -- ** -- WP WP
-- ** -- ** -- WP -- **
** -- ** -- WR -- WK --
mv 1 stage 0, white to move, computer plays white
hash=56ea5a7a1ebbd1a
pawnhash=b38191c2f171fb53
Alpha=-3071 Beta=-2270 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 4 e1b1 -2741  0.00      104 e1b1
 2/ 6 d5d6 -2416  0.01      659 d5d6 e7e6
 3/12 d5d6 -2487  0.02     1863 d5d6 e7e6 b7b3 e6f5 b3f3 f5e6
 4/12 d5d6 -2487  0.05     4917 d5d6 e7e6 b7b3 e6f5 b3d3 f5e6 d3b3 e6f5 b3d3
f5e6 d3b3 e6f5 b3d3 f5e6 d3b3
 5/14>d5d6 -2086  0.07     6367 d5d6 e7e6 b7b3 e6f5 b3d3 f5e6 d3b3 e6f5 b3d3
f5e6 d3b3 e6f5 b3d3 f5e6 d3b3
 5/15 d5d6 2889  0.15    15448 d5d6 e7e6 b7b3 e6d6 e1d1 d6c7 d1d7 c7d7 b3d3 d7e6
d3a6
 6/16 d5d6 3035  0.24    27209 d5d6 e7e6 b7b3 e6d6 e1d1 d6c7 d1d7 c7d7 b3d3 e5d6
d3a6
 7/21 d5d6 2927  0.64    77718 d5d6 e7e6 b7b3 e6d6 e1d1 d6c7 d1d7 c7d7 b3d3 e5d6
d3a6 f6f5
 8/21 d5d6 3016  1.28   156648 d5d6 e7e6 b7b3 e6d6 e1d1 d6c7 d1d7 c7d7 b3b7 e5c7
b7a6 e8e1 g1g2 f6f5
 9/27 d5d6 3128  4.22   509384 d5d6 e7e6 b7b3 e6d6 e1d1 d6c7 d1d7 c7d7 b3b7 d7e6
b7a6 e6f7 a6b7 e8e7 b7d5 f7g7 g1g2
10/27 Td5d6  3351  6.01   715776 d5d6 e7e6 b7b3 e6d6 e1d1 d6c7 d1d7 c7d7 b3b7
e5c7 b7a6 d7e7 a6c6 c7a5
nps=119117 h/p/q=33.00%/99.00%/0.00% q=68.0% bc=59% br=2.29
mp=1263/444/-1379/-1313
pawnx=1902 recapx=1916 qcheckx=0 checkx=55257 qfutilx=55683 onereplyx=1490
mthrx=12662 futilx=0 bmx=243
+ 8.55/21.01 88% 259/292 bf=2.20 h/p/q=32.50%/96.81%/0.00% 1401.31 153468672
525578/5/109518 880478/434789/1611069/5561677/19984328/565831/0/57513
*** Problem   Solution(s): Nfg5 (bm)
[D] 1nbq1r1k/3rbp1p/p1p1pp1Q/1p6/P1pPN3/5NP1/1P2PPBP/R4RK1 w - - bm Nfg5
*** Problem   Solution(s): Nfg5 (bm)
-- BN BB BQ -- BR -- BK
** -- ** BR BB BP ** BP
BP ** BP ** BP BP -- WQ
** BP ** -- ** -- ** --
WP ** BP WP WN ** -- **
** -- ** -- ** WN WP --
-- WP -- ** WP WP WB WP
WR -- ** -- ** WR WK --
mv 1 stage 0, white to move, computer plays white
hash=cbafde8a2672fe79
pawnhash=1fcc07035b3b04b
Alpha=-690 Beta=110 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 5>e4f6 110  0.00        2 e4f6
 1/ 5 a4b5 111  0.01      150 a4b5
 2/ 5>a4b5 511  0.01      222 a4b5 a6b5 e4f6
 2/ 7 a4b5 511  0.02      552 a4b5 a6b5 e4f6
 3/ 9<a4b5 110  0.05     2269 a4b5 a6b5 e4f6 e7f6
 3/ 9 e2e3 -297  0.10     5192 e2e3 f6f5
 4/11 h6f4 -389  0.23    12940 h6f4 f6f5
 5/17 h6f4 -395  0.51    30432 h6f4 c8b7 a4a5
 6/20 e4d2 -444  2.89   116329 e4d2 f8g8 e2e4
 7/20 Tg1h1  -210  6.01   231424 g1h1 b5a4 a1a4 f8g8 a4c4 d7d5
nps=38500 h/p/q=30.00%/95.00%/0.00% q=79.0% bc=53% br=3.11
mp=1492/2377/-1236/-1870
pawnx=918 recapx=594 qcheckx=0 checkx=5032 qfutilx=54805 onereplyx=1140
mthrx=12662 futilx=0 bmx=0
- 8.54/21.01 88% 259/293 bf=2.20 h/p/q=32.49%/96.80%/0.00% 1407.33 153700096
524574/5/109214 881396/435383/1623731/5566709/20039132/566971/0/57513
*** Problem   Solution(s): Bf8 Nf5 Qf4 (bm)
[D] 3r3k/1r3p1p/p1pB1p2/8/p1qNP1Q1/P6P/1P4P1/3R3K w - - bm Bf8 Nf5 Qf4
*** Problem   Solution(s): Bf8 Nf5 Qf4 (bm)
-- ** -- BR -- ** -- BK
** BR ** -- ** BP ** BP
BP ** BP WB -- BP -- **
** -- ** -- ** -- ** --
BP ** BQ WN WP ** WQ **
WP -- ** -- ** -- ** WP
-- WP -- ** -- ** WP **
** -- ** WR ** -- ** WK
mv 1 stage 0, white to move, computer plays white
hash=f94723bf47662217
pawnhash=a007cf66acd4bd4f
Alpha=1787 Beta=2588 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 4<d4c6 1787  0.00       97 d4c6
 1/ 4 e4e5 3  0.01      203 e4e5 b7b2
 2/ 7 g4f4 -278  0.01      500 g4f4
 3/ 8>g4f4 122  0.01      577 g4f4 b7b2 f4f6
 3/ 8 g4f4 2002  0.07     1575 g4f4 b7d7
 4/10 g4f4 2151  0.14     5442 g4f4 f6f5 f4e5 h8g8
 5/16 g4f4 2291  0.21    10956 g4f4 h8g7 f4g3 g7h8 b2b4
 6/17 g4f4 2291  0.61    39460 g4f4 h8g7 f4g3 g7h8 g3f4 h8g7 f4g3 g7h8 g3f4 h8g7
f4g3 g7h8 g3f4
 7/21>g4f4 2691  0.76    48904 g4f4 h8g7 f4g3 g7h8 g3f4 h8g7 f4g3 g7h8 g3f4 h8g7
f4g3 g7h8 g3f4
 7/21 g4f4 3510  1.40    99271 g4f4 h8g8 f4f6 d8e8 f6g5 g8h8 d6e5 f7f6 e5f6
 8/21>g4f4 3910  3.30   246050 g4f4 h8g7 d4f5 g7h8 f5d4 h8g7 d4f5 g7h8 f5d4 h8g7
d4f5 g7h8 f5d4
 8/22 Td6f8  4294  6.02   454678 g4f4 h8g8 f4f6 d8e8 f6g5 g8h8 d6e5 f7f6 e5f6
nps=75528 h/p/q=31.00%/98.00%/0.00% q=72.0% bc=57% br=3.15
mp=1225/1637/-2129/-26738600
pawnx=989 recapx=757 qcheckx=0 checkx=18915 qfutilx=44747 onereplyx=4196
mthrx=12777 futilx=0 bmx=22
+ 8.54/21.01 88% 260/294 bf=2.21 h/p/q=32.49%/96.81%/0.00% 1413.35 154154768
524336/5/109071 882385/436140/1636508/5585624/20083880/571167/0/57535
*** Problem   Solution(s): Rxd5+ (bm)
[D] 4r3/p4r1p/R1p2pp1/1p1bk3/4pNPP/2P1K3/2P2P2/3R4 w - - bm Rxd5+
*** Problem   Solution(s): Rxd5+ (bm)
-- ** -- ** BR ** -- **
BP -- ** -- ** BR ** BP
WR ** BP ** -- BP BP **
** BP ** BB BK -- ** --
-- ** -- ** BP WN WP WP
** -- WP -- WK -- ** --
-- ** WP ** -- WP -- **
** -- ** WR ** -- ** --
mv 1 stage 0, white to move, computer plays white
hash=da1905505f8434ca
pawnhash=a8a2e74ddbf6e5b1
Alpha=-4474 Beta=-3673 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 6>f4g6 -3673  0.00       81 f4g6 h7g6
 1/ 6 a6a1 -2278  0.01      131 a6a1
 2/ 9>Md1d5  99984  0.01      432 d1d5 c6d5 f4d3 e4d3 f2f4
nps=43200 h/p/q=30.00%/78.00%/0.00% q=81.0% bc=60% br=0.33 mp=412/893/-339/-393
pawnx=3 recapx=3 qcheckx=0 checkx=22 qfutilx=148 onereplyx=7 mthrx=12777
futilx=0 bmx=0
+ 8.52/20.97 88% 261/295 bf=2.20 h/p/q=32.48%/96.74%/0.00% 1413.36 154155200
522560/5/109070 882388/436143/1649285/5585646/20084028/571174/0/57535
*** Problem   Solution(s): Rd4+ Rf8 (bm)
[D] 3r4/1p2k2p/p1b1p1p1/4Q1Pn/2B3KP/4pP2/PP2R1N1/6q1 b - - bm Rd4+ Rf8
*** Problem   Solution(s): Rd4+ Rf8 (bm)
-- ** -- BR -- ** -- **
** BP ** -- BK -- ** BP
BP ** BB ** BP ** BP **
** -- ** -- WQ -- WP BN
-- ** WB ** -- ** WK WP
** -- ** -- BP WP ** --
WP WP -- ** WR ** WN **
** -- ** -- ** -- BQ --
mv 1 stage 0, black to move, computer plays black
hash=3018f33d1f47e1da
pawnhash=387ad91b00b242fd
Alpha=1271 Beta=2072 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 6<c6f3 1271  0.01      137 c6f3 g4f3
 1/ 6 c6e8 622  0.01      305 c6e8
 2/ 6>d8d6 1022  0.01      474 d8d6
 2/ 6 d8d2 1024  0.02      687 d8d2
 3/ 9<c6f3 623  0.04     1725 c6f3 g4f3 g1g2 f3g2 e7f8
 3/ 9 c6d5 -53  0.08     3676 c6d5 e5e3
 4/10>c6d5 347  0.10     4921 c6d5 e5e3 g1h1
 4/11 d8d6 1568  0.17     9286 d8d6 b2b4
 5/14 d8f8 1955  0.53    29808 d8f8 e5c7 e7e8 c7c8 e8e7 c8c7 e7e8 c4e6 c6f3
 6/20<d8f8 1554  1.56    96772 d8f8 e5c7 e7e8 c7b8 e8e7 b8c7 e7e8 c7b8 e8e7 b8c7
e7e8 c7b8 e8e7 b8c7
 6/20 d8d2 1554  2.02   124924 d8d2 e5e6 e7d8 e6g8 d8c7 g4h3 g1h1
 7/21 d8f8 1553  4.86   309807 d8f8 e5c5 e7e8 c5e3 c6f3 e3f3 f8f3
 8/24>Td8f8  1953  6.00   396288 d8f8 e5c5 e7e8 c5e3 c6f3 e3f3 f8f3 e2e6
nps=65993 h/p/q=24.00%/98.00%/0.00% q=73.0% bc=63% br=2.49
mp=915/1638/-974/-1046
pawnx=3585 recapx=740 qcheckx=0 checkx=26673 qfutilx=83098 onereplyx=2888
mthrx=12777 futilx=0 bmx=0
+ 8.52/20.98 88% 262/296 bf=2.20 h/p/q=32.45%/96.75%/0.00% 1419.36 154551488
522133/5/108888 885973/436883/1662062/5612319/20167126/574062/0/57535
*** Problem   Solution(s): Bxg2 Bxh2+ (bm)
[D] 3r1rk1/p3qp1p/2bb2p1/2p5/3P4/1P6/PBQN1PPP/2R2RK1 b - - bm Bxg2 Bxh2+
*** Problem   Solution(s): Bxg2 Bxh2+ (bm)
-- ** -- BR -- BR BK **
BP -- ** -- BQ BP ** BP
-- ** BB BB -- ** BP **
** -- BP -- ** -- ** --
-- ** -- WP -- ** -- **
** WP ** -- ** -- ** --
WP WB WQ WN -- WP WP WP
** -- WR -- ** WR WK --
mv 1 stage 0, black to move, computer plays black
hash=da773d85a958e4e8
pawnhash=c2b7fc76c65f3171
Alpha=-1705 Beta=-904 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 7>e7e2 -904  0.01      122 e7e2 d4c5
 1/ 7 e7g5 -829  0.01      222 e7g5 d4c5 g5g2
 2/ 7 c6b5 -1088  0.01      507 c6b5 d4c5 b5f1 c5d6
 3/10 e7e2 -1381  0.03     1503 e7e2 d4c5
 4/12 e7h4 -1321  0.12     6899 e7h4 h2h3
 5/14 e7g5 -1222  0.31    18232 e7g5 d2e4 g5g4 e4d6 d8d6 c2c5 g4g2
 6/16 e7g5 -1222  0.85    55405 e7g5 d2e4 c6e4 c2e4 c5d4 f2f4
 7/18 a7a5 -1408  3.56   234932 a7a5 d2e4 c6e4 c2e4 e7e4 f2f4 mtmt
 8/20 Te7h4  -1346  6.08   417792 e7h4 g2g3 h4h6 d4c5 d6g3 f2g3 d8d2
nps=68682 h/p/q=28.00%/97.00%/0.00% q=79.0% bc=50% br=2.46
mp=1934/1981/-1051/-1036
pawnx=1062 recapx=912 qcheckx=0 checkx=10401 qfutilx=79612 onereplyx=1690
mthrx=12780 futilx=0 bmx=0
- 8.52/20.98 88% 262/297 bf=2.20 h/p/q=32.43%/96.75%/0.00% 1425.44 154969280
521782/5/108717 887035/437795/1674842/5622720/20246738/575752/0/57535
*** Problem   Solution(s): Qh8+ (bm)
[D] 3Q4/p3b1k1/2p2rPp/2q5/4B3/P2P4/7P/6RK w - - bm Qh8+
*** Problem   Solution(s): Qh8+ (bm)
-- ** -- WQ -- ** -- **
BP -- ** -- BB -- BK --
-- ** BP ** -- BR WP BP
** -- BQ -- ** -- ** --
-- ** -- ** WB ** -- **
WP -- ** WP ** -- ** --
-- ** -- ** -- ** -- WP
** -- ** -- ** -- WR WK
mv 1 stage 0, white to move, computer plays white
hash=5b0af3a6d6bd4bfa
pawnhash=9dc9d69686dae8ce
Alpha=2263 Beta=3064 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 4<e4c6 2263  0.00       96 e4c6
 1/ 5 d8e8 2243  0.01      253 d8e8
 2/ 8 d8e8 2596  0.01      579 d8e8 e7f8
 3/10>Md8h8  99971  0.02     1335 d8h8 g7h8 g6g7 h8g8 e4h7 g8h7 g7g8Q
nps=66750 h/p/q=28.00%/93.00%/0.00% q=75.0% bc=53% br=1.18 mp=942/173/-618/-1141
pawnx=10 recapx=0 qcheckx=0 checkx=49 qfutilx=295 onereplyx=12 mthrx=12780
futilx=0 bmx=0
+ 8.50/20.94 88% 263/298 bf=2.20 h/p/q=32.42%/96.73%/0.00% 1425.46 154970608
520036/5/108716 887045/437795/1687622/5622769/20247032/575764/0/57535
*** Problem   Solution(s): Nca4 (bm)
[D] 1n2rr2/1pk3pp/pNn2p2/2N1p3/8/6P1/PP2PPKP/2RR4 w - - bm Nca4
*** Problem   Solution(s): Nca4 (bm)
-- BN -- ** BR BR -- **
** BP BK -- ** -- BP BP
BP WN BN ** -- BP -- **
** -- WN -- BP -- ** --
-- ** -- ** -- ** -- **
** -- ** -- ** -- WP --
WP WP -- ** WP WP WK WP
** -- WR WR ** -- ** --
mv 1 stage 0, white to move, computer plays white
hash=b3c4438c8db43a74
pawnhash=d86b14d4c9835f9b
Alpha=168 Beta=969 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 2>b6d5 969  0.00       22 b6d5 c7c8
 1/ 4 b6c4 1189  0.00      127 b6c4
 2/ 7 b6d5 1189  0.01      709 b6d5 c7c8 d5b6 c8c7 b6c4
 3/12 b6d5 1189  0.04     2484 b6d5 c7c8 d5b6 c8c7 b6c4
 4/16 b6d5 1125  0.10     7696 b6d5 c7c8 d5b6 c8c7 b6d5 c7c8 d5e3
 5/18 b6d7 847  0.33    27136 b6d7 f8h8 c1c4 b8d7 d1d7
 6/18>b6a4 1247  0.75    62504 b6a4 c7c8 c1c4 mtmt
 6/18 c5a4 7044  1.06    89988 c5a4 b8d7 d1d7 c7b8 d7g7
 7/20 c5a4 6644  2.05   178522 c5a4 b8d7 d1d7 c7b8 d7g7 f8f7 b6d7 b8a8 g7f7 e8d8
 8/22 c5a4 7040  4.13   366492 c5a4 b8d7 d1d7 c7b8 d7g7 h7h5 b6d7 b8a7
 9/22>c5a4 7440  4.89   428825 c5a4 b8d7 d1d7 c7b8 d7g7 f8h8 b6d7 b8a7 d7f6 e8e7
 9/22 Tc5a4  7440  6.01   521216 c5a4 b8d7 d1d7 c7b8 d7g7 f8h8 b6d7 b8a7 d7f6
e8e7
nps=86754 h/p/q=40.00%/99.00%/0.00% q=72.0% bc=55% br=2.27 mp=825/495/-746/-700
pawnx=19 recapx=502 qcheckx=0 checkx=21583 qfutilx=69592 onereplyx=1841
mthrx=12797 futilx=0 bmx=43
- 8.50/20.94 87% 263/299 bf=2.20 h/p/q=32.44%/96.74%/0.00% 1431.47 155491824
520040/5/108624 887064/438297/1700419/5644352/20316624/577605/0/57578
*** Problem   Solution(s): g6 (bm)
[D] b2b1r1k/3R1ppp/4qP2/4p1PQ/4P3/5B2/4N1K1/8 w - - bm g6
*** Problem   Solution(s): g6 (bm)
BB ** -- BB -- BR -- BK
** -- ** WR ** BP BP BP
-- ** -- ** BQ WP -- **
** -- ** -- BP -- WP WQ
-- ** -- ** WP ** -- **
** -- ** -- ** WB ** --
-- ** -- ** WN ** WK **
** -- ** -- ** -- ** --
mv 1 stage 0, white to move, computer plays white
hash=c4318a66e3c7ec21
pawnhash=cc7f7979a069dea3
Alpha=-1056 Beta=-255 Maxdepth=9999999 MaxTime=600
Ply/Max Mv   Score   Time Nodes PV
 1/ 5>f6g7 -255  0.00       50 f6g7
 1/ 5 f6g7 -255  0.01      131 f6g7 h8g7 d7a7
 2/ 8 f6g7 -561  0.02      605 f6g7 h8g7 h5h3
 3/10 d7a7 -771  0.06     2680 d7a7 a8c6 f6g7 h8g7
 4/13>d7a7 -370  0.16     8665 d7a7 d8b6 f6g7 h8g7 a7a1 f8h8
 4/13 g5g6 336  0.20    10083 g5g6 h7h6 f6g7 h8g7 d7f7 f8f7 g6f7 e6f7 h5e5
 5/14>g5g6 736  0.30    15027 g5g6 h7h6 f6g7 h8g7 d7f7 f8f7 g6f7 e6f7 h5e5 d8f6
 5/14 g5g6 737  0.48    25479 g5g6 h7h6 h5h6 g7h6 g6g7 h8g8 g7f8R g8f8 d7d8
 6/16>g5g6 1137  0.63    33057 g5g6 h7h6 h5h6 g7h6 g6g7 h8g8 g7f8R g8f8 d7d8
 6/16 g5g6 3037  1.34    75771 g5g6 h7h6 h5h6 g7h6 g6g7 h8g8 g7f8Q g8f8 d7d8
e6e8 d8e8 f8e8 g2g1
 7/20>g5g6 3437  1.55    88375 g5g6 h7h6 h5h6 g7h6 g6g7 h8g8 g7f8Q g8f8 d7d8
e6e8 d8e8 f8e8 g2g1
 7/20 g5g6 3438  2.13   130975 g5g6 h7h6 h5h6 g7h6 g6g7 h8g8 g7f8R g8f8 d7d8
e6e8 d8e8 f8e8 g2g1
 8/23>g5g6 3838  2.95   185479 g5g6 h7h6 h5h6 g7h6 g6g7 h8g8 g7f8R g8f8 d7d8
e6e8 d8e8 f8e8 g2g1 a8d5 e4d5 e8f8
 8/23 g5g6 4019  4.48   299321 g5g6 h7h6 h5h6 g7h6 g6g7 h8g8 g7f8R g8f8 d7d8
e6e8 d8e8 f8e8 g2f2
 9/25<Tg5g6  3618  6.05   420864 g5g6 h7h6 h5h6 g7h6 g6g7 h8g8 g7f8R g8f8 d7d8
e6e8 d8e8 f8e8 g2f2 a8d5 e4d5 e8f8
nps=69587 h/p/q=36.00%/99.00%/0.00% q=71.0% bc=57% br=2.17
mp=2768/26843596/-1067/-26738600
pawnx=6937 recapx=2344 qcheckx=0 checkx=19152 qfutilx=52082 onereplyx=1764
mthrx=12873 futilx=0 bmx=115
+ 8.50/20.96 88% 264/300 bf=2.20 h/p/q=32.46%/96.75%/0.00% 1437.52 155912688
519709/5/108460 894001/440641/1713292/5663504/20368706/579369/0/57693
pawnx/recapx/mthrx/checkx/qfutilx/onereplyx/futilx/bmx
--------------------------------
Missed: 1 8 22 71 74 86 87 92 100 116 138 141 145 157 163 180 190 196 199 200
210 222 229 230 237 243 252 255 256 264 265 270 283 293 297 299
maxtime = 600
.quit




This page took 0.06 seconds to execute

Last modified: Thu, 15 Apr 21 08:11:13 -0700

Current Computer Chess Club Forums at Talkchess. This site by Sean Mintz.