Latest Mac Exe's[/quote] Please note the links here will not work.MikeB wrote:
We are please to announce the release of Crafty 25.0 (source) for your enjoyment. We will soon have links posted with the appropriate exe's.
A merry Christmas and joyous holiday season to all!
Best wishes,
Robert Hyatt, University of Alabama at Birmingham
Michael Byrne, Pen Argyl, PA
Tracy Riegle, Hershey, PA
Peter Skinner, Edmonton, AB Canada
Code: Select all
Crafty 25.0 * This version contains a major rewrite of the parallel search code, now referred to as Generation II. It has a more lightweight split algorithm, that costs the parent MUCH less effort to split the search. The key is that now the individual "helper" threads do all the work, allocating a split block, copying the data from the parent, etc., rather than the parent doing it all. Gen II based on the DTS "late-join" idea so that a thread will try to join existing split points before it goes to the idle wait loop waiting for some other thread to split with it. In fact, this is now the basis for the new split method where the parent simply creates a split point by allocating a split block for itself, and then continuing the search, after the parent split block is marked as "joinable". Now any idle threads just "jump in" without the parent doing anything else, which means that currently idle threads will "join" this split block if they are in the "wait-for-work" spin loop, and threads that become idle also join in exactly the same way. This is MUCH more efficient, and also significantly reduces the number of split blocks needed during the search. We also now pre-split the search when we are reasonably close to the root of the tree, which is called a "gratuitous split. This leaves joinable split points laying around so that whenever a thread becomes idle, it can join in at these pre-existing split points immediately. We now use a much more conservative approach when dealing with fail highs at the root. Since LMR and such have introduced greater levels of search instability, we no longer trust a fail-high at the root if it fails low on the research. We maintain the last score returned for every root move, along with the PV. Either an exact score or the bound score that was returned. At the end of the iteration, we sort the root move list using the backed-up score as the sort key, and we play the move with the best score. This solves a particularly ugly issue where we get a score for the first move, then another move fails high, but then fails low and the re-search produces a score that is actually WORSE than the original best move. We still see that, but we always play the best move now. One other efficiency trick is that when the above happens, the search would tend to be less efficient since the best score for that fail-high/fail-low move is actually worse than the best move/score found so far. If this happens, the score is restored to the original best move score (in Search()) so that we continue searching with a good lower bound, not having to deal with moves that would fail high with this worse value, but not with the original best move's value. * We also added a new method to automatically tune the new SMP parameters. The command is autotune and "help autotune" will explain how to run it. * In addition , we did a complete re-factor of pawn evaluation code. There were too many overlapping terms that made tuning difficult. Now a pawn is classified as one specific class, there is no overlap between classes, which simplifies the code significantly. The code is now easier to understand and modify. In addition, the passed pawn evaluation was rewritten and consolidates all the passed pawn evaluation in one place. The evaluation used to add a bonus for rooks behind passed pawns in rook scoring, blockading somewhere else, etc. All of this was moved to the passed pawn code to make it easier to understand and modify. * Added a limited version of late move pruning (LMP) for the last two plies. Once a set number of moves have been searched with no fail high, non-interesting moves are simply skipped in a way similar to futility pruning. * We had a minor change to history counters that now rely on a "saturating counter" idea. I wanted to avoid the aging idea, and it seemed to not be so clear that preferring history moves by the depth at which they were good was the way to go. I returned to a history counter idea I tested around 2005 but discarded, namely using a saturating counter. The idea is that a center value (at present 1024) represents a zero score. Decrementing it makes it worse, incrementing it makes it better. But to make it saturate at either end, I only reduce the counter by a fraction of its distance from the saturation point so that once it gets to either extreme value, it will not be modified further avoiding wrap-around. This basic idea was originally reported by Mark Winands in 2005. It seems to provide better results (slightly) on very deep searches. One impetus for this was an intent to fold this into a move so that I could sort the moves rather than doing the selection approach I currently use. However, this had a bad effect on testing, since history information is dynamic and is constantly changing, between two moves at the same ply in fact. The sort fixed the history counters to the value at the start of that ply. This was discarded after testing, but the history counter based on the saturating counter idea seemed to be OK and was left in even though it produced minimal Elo gain during testing. * We change to the way moves are counted, to add a little more consistency to LMR. Now Next*() returns an order number that starts with 1 and monotonically increases, this order number is used for LMR and such decisions that vary things based on how far down the move list something occurs. Root move counting was particularly problematic with parallel searching, now things are at least "more consistent". The only negative impact is that now the move counter gets incremented even for illegal moves, but testing showed this was a no-change change with one thread, and the consistency with multiple threads made it useful. * Added the "counter-move" heuristic for move ordering (Jos Uiterwijk, JICCA) which simply remembers a fail high move and the move at the previous ply. If the hash, captures or killer moves don't result in a fail high, this move is tried next. No significant cost, seems to reduce tree size noticeably. Added a follow-up idea based on the same idea, except we pair a move that fails high with the move two plies back, introducing a sort of "connection" between them. This is a sort of "plan" idea where the first move of the pair enables the second move to fail high. The benefit is that this introduces yet another pair of good moves that get ordered before history moves, and is therefore not subject to reduction. I have been unable to come up with a reference for this idea, but I believe I first saw it somewhere around the time Fruit showed up, I am thinking perhaps in the JICCA/JICGA. Any reference would be appreciated. * A minor change to the way the PV and fail-hi/fail-low moves are displayed when pondering. * Crafty now adds the ponder move to the front of the PV enclosed in parentheses so that it is always visible in console mode. The depths are reaching such extreme numbers the ponder move scrolls off the top of the screen when running in console mode or when "tail -f" is used to watch the log file while a game is in progress. This is a bit trickier than you might think since Crafty displays the game move numbers in the PV. * The penalty for pawns on same color as bishop now only applies when there is one bishop.
Crafty 25.0 Release
Moderator: Ras
-
- Posts: 4889
- Joined: Thu Mar 09, 2006 6:34 am
- Location: Pen Argyl, Pennsylvania
Re: Crafty 25.0 Release
-
- Posts: 20943
- Joined: Mon Feb 27, 2006 7:30 pm
- Location: Birmingham, AL
Re: Updated
That looks like the test version bug I created... The newer version will be significantly faster to a specific depth...Werner wrote:Thank you Daniel,
there is quite a difference between you compile from yesterday and today:
Crafty v25.0 (1 cpus) crafty-25.0-x64.exe 1.457.664 27.12.2015 11:33
White(1): bench
Running benchmark. . .
......
Total nodes: 394143343
Raw nodes per second: 5889769
Total elapsed time: 66.92
time used = 1:07
and
Crafty v25.0 (1 cpus) crafty25_64.exe 1.227.264 28.12.2015 08:20
White(1): bench
Running benchmark. . .
......
Total nodes: 143372555
Raw nodes per second: 4828984
Total elapsed time: 29.69
time used = 30.27
looks like another file set for the benchmark in the latest sources?
Or here from a test position:
FEN: r2qrbk1/5ppp/pn1p4/np2P1P1/3p4/5N2/PPB2PP1/R1BQR1K1 w - - 0 1
Crafty-25.0: new version 12-28
26 03:35 1.040.192.134 4.831.137 +0,76 0. ... () 1. e6 Rxe6 2. Rxe6 fxe6 3. Qe1 Qc8 4. Qxa5 Qxc2 5. Qxb6 e5 6. Qb7 Rc8 7. Ne1 Qc6 8. Qxc6 Rxc6 9. Nd3 Rc8 10. f3 Rc4 11. b3 Rc3 12. Nb4 a5 13. Nd5 Rc2
26 13:35 4.143.915.662 5.084.247 +3,48 0. ... () 1. Bxh7+ Kxh7 2. g6+ fxg6 3. Ng5+ Kg8 4. Qf3 Qxg5 5. Bxg5 dxe5 6. Qe4 Re6 7. Rec1 Nac4 8. a4 Rae8 9. axb5 axb5 10. b3 Ba3 11. Rc2 Nd6 12. Qg4 b4 13. Rd1 Nd5 14. f3
Crafty-25.0: compile from yesterday 12-27
16 00:12 70.887.122 6.002.296 +1,01 0. ... () 1. e6 fxe6 2. Bxh7+ Kxh7 3. g6+ Kxg6 4. Qd3+ Kf7 5. Ng5+ Ke7 6. Nxe6 Kd7 7. Nxd8 Rxe1+ 8. Kh2 Rxd8 9. Qd2 Rxc1 10. Rxc1 Nc6 11. Kg3
16 00:32 189.976.860 5.972.237 +3,24 0. ... () 1. Bxh7+ Kxh7 2. g6+ fxg6 3. Ng5+ Kg8 4. Qf3 Qf6 5. exf6 Rxe1+ 6. Kh2 gxf6 7. Qxf6 Ra7 8. Ne6 Rf7 9. Qxg6+ Bg7 10. Rb1 Nd5 11. Bd2
16 00:32 189.979.141 5.972.308 +3,24 0. ... () 1. Bxh7+ Kxh7 2. g6+ fxg6 3. Ng5+ Kg8 4. Qf3 Qf6 5. exf6 Rxe1+ 6. Kh2 gxf6 7. Qxf6 Ra7 8. Ne6 Rf7 9. Qxg6+ Bg7 10. Rb1 Nd5 11. Bd2
So what happened here and which compile should I use for my tests?
-
- Posts: 20943
- Joined: Mon Feb 27, 2006 7:30 pm
- Location: Birmingham, AL
Re: Updated
That appears to be the answer. The test version extended all checks by 1 ply. The correct version only extends non-losing checks by one ply, same as was done in 24.1 I think...Werner wrote:Of course - if we have changes in the source only Bob can give us an answer.cdani wrote:I have done a pgo compile with the latest sources. I really don't know from where comes the difference.
And the fist compile has been from the Dec 25th sources which was a test version. So I should not compare - and use the last compile for the tests.
-
- Posts: 20943
- Joined: Mon Feb 27, 2006 7:30 pm
- Location: Birmingham, AL
Re: Crafty 25.0 Release
cdani wrote:Because it was crashing, dunno why. Maybe later I will try to find what happens, or maybe someone wants to try.F.Huber wrote:Many thanks Daniel, this one is indeed working (i.e. accepts the hash settings)!cdani wrote:All the problems solved! At least I was able to run well on cutechess and Arena.
http://www.andscacs.com/crafty/crafty25.zip
crafty25_32.exe: 32 bit compile able to run on only 1 cpu.
But why did you disable the 'core' setting, i.e. restricting it to a single-CPU version?
Franz
Crashing where? Linux? Win doze? It has played about a zillion games under linux...
-
- Posts: 2204
- Joined: Sat Jan 18, 2014 10:24 am
- Location: Andorra
Re: Crafty 25.0 Release
Windows 32 bitsbob wrote: Crashing where? Linux? Win doze? It has played about a zillion games under linux...

Daniel José -
http://www.andscacs.com

-
- Posts: 2204
- Joined: Sat Jan 18, 2014 10:24 am
- Location: Andorra
Re: Crafty 25.0 Release
Visual Studio 2013 with his ownbob wrote:Just for fun, which compiler doesn't get "size_t"???cdani wrote: I had to change size_t by unsigned long long, nothing that I was not aware but I forgetI didn't notice previously because as memory command was not working, it didn't crash. Not it works well.
Is compiled with Visual Studio 2013.
Daniel José -
http://www.andscacs.com

-
- Posts: 862
- Joined: Thu Mar 09, 2006 4:50 pm
- Location: Austria
- Full name: Franz Huber
Re: Crafty 25.0 Release
Hey, you also have this old crippled OS? Welcome in our Dinosaurs club!cdani wrote: Windows 32 bits

Franz
-
- Posts: 20943
- Joined: Mon Feb 27, 2006 7:30 pm
- Location: Birmingham, AL
Re: Crafty 25.0 Release
It really doesn't understand size_t? Wait, in 32 bit models I could see where it would get broken. This from a compiler where long = 32 bits whether you use 32 or 64 bit hardware.cdani wrote:Visual Studio 2013 with his ownbob wrote:Just for fun, which compiler doesn't get "size_t"???cdani wrote: I had to change size_t by unsigned long long, nothing that I was not aware but I forgetI didn't notice previously because as memory command was not working, it didn't crash. Not it works well.
Is compiled with Visual Studio 2013.

-
- Posts: 1397
- Joined: Wed Mar 08, 2006 10:15 pm
- Location: San Francisco, California
Re: Crafty 25.0 Release (Fine 70 problem?)
I'm seeing very strange behavior on with the 64-bit version under Windows 7. I am not using a Crafty.rc file, only because I've never done so and Crafty has always performed flawlessly for me.
But here is the log file from console mode for Fine 70. Note that Crafty selects the correct Kb1, but calls it a draw at depth 42 and it stays that way up through depth 80+??
Have the default values for Crafty changed drastically, such that a Crafty.rc file is now required?
Many thanks for your assistance,
jm
But here is the log file from console mode for Fine 70. Note that Crafty selects the correct Kb1, but calls it a draw at depth 42 and it stays that way up through depth 80+??
Have the default values for Crafty changed drastically, such that a Crafty.rc file is now required?
Code: Select all
Crafty v25.0 (1 cpus)
White(1): setboard 8/k7/3p4/p2P1p2/P2P1P2/8/8/K7 w - - 0 1
+---+---+---+---+---+---+---+---+
8 | | . | | . | | . | | . |
+---+---+---+---+---+---+---+---+
7 |<K>| | . | | . | | . | |
+---+---+---+---+---+---+---+---+
6 | | . | |<P>| | . | | . |
+---+---+---+---+---+---+---+---+
5 |<P>| | . |-P-| . |<P>| . | |
+---+---+---+---+---+---+---+---+
4 |-P-| . | |-P-| |-P-| | . |
+---+---+---+---+---+---+---+---+
3 | . | | . | | . | | . | |
+---+---+---+---+---+---+---+---+
2 | | . | | . | | . | | . |
+---+---+---+---+---+---+---+---+
1 |-K-| | . | | . | | . | |
+---+---+---+---+---+---+---+---+
a b c d e f g h
White(1): analyze
time surplus 0.00 time limit 30.00 (2:30)
depth time score variation (1)
40 1.08/21.00 0.84 0. ... () 1. Kb1 Kb7 2. Kc2 Kc8 3. Kd3 Kc7
4. Ke2 Kd7 5. Kf3 Ke7 6. Kf2 Ke8 7. Kf1
Ke7 8. Ke1 Kd7 9. Kd2 Kc8 10. Kc3 Kb7
11. Kc4 Kb6 12. Kb3 Kb7 13. Ka2 Kb6
14. Kb2 Ka7 15. Kc3 Kb7 16. Kc4 Kb6
17. Kd3 Kb7 18. Kc3 Kb6 19. Kc4 Ka6
20. Kb3 Kb6 21. Kc2 Ka7 22. Kd1 Kb6
23. Ke2 Kc7 24. Ke3 Kd8 25. Kd3 Kc7
26. Ke2 Kd7 27. Kf3 Ke7 28. Kf2 Kf6
29. Ke3 Kf7 30. Kd3 Kg6 31. Kc3 Kf6
32. Kc4
40-> 1.08/18.90 0.84 0. ... () 1. Kb1 Kb7 2. Kc2 Kc8 3. Kd3 Kc7
4. Ke2 Kd7 5. Kf3 Ke7 6. Kf2 Ke8 7. Kf1
Ke7 8. Ke1 Kd7 9. Kd2 Kc8 10. Kc3 Kb7
11. Kc4 Kb6 12. Kb3 Kb7 13. Ka2 Kb6
14. Kb2 Ka7 15. Kc3 Kb7 16. Kc4 Kb6
17. Kd3 Kb7 18. Kc3 Kb6 19. Kc4 Ka6
20. Kb3 Kb6 21. Kc2 Ka7 22. Kd1 Kb6
23. Ke2 Kc7 24. Ke3 Kd8 25. Kd3 Kc7
26. Ke2 Kd7 27. Kf3 Ke7 28. Kf2 Kf6
29. Ke3 Kf7 30. Kd3 Kg6 31. Kc3 Kf6
32. Kc4
41 1.09/18.90 0.84 0. ... () 1. Kb1 Kb7 2. Kc2 Kc8 3. Kd3 Kc7
4. Ke2 Kd7 5. Kf3 Ke7 6. Kf2 Ke8 7. Kf1
Ke7 8. Ke1 Kd7 9. Kd2 Kc8 10. Kc3 Kb7
11. Kc4 Kb6 12. Kb3 Kb7 13. Ka2 Kb6
14. Kb2 Ka7 15. Kc3 Kb7 16. Kc4 Kb6
17. Kd3 Kb7 18. Kc3 Kb6 19. Kc4 Ka6
20. Kb3 Kb6 21. Kc2 Ka7 22. Kd1 Kb6
23. Ke2 Kc7 24. Ke3 Kd8 25. Kd3 Kc7
26. Ke2 Kd7 27. Kf3 Ke7 28. Kf2 Kf6
29. Ke3 Kf7 30. Kd3 Kg6 31. Kc3 Kf6
32. Kc4
41-> 1.09/18.00 0.84 0. ... () 1. Kb1 Kb7 2. Kc2 Kc8 3. Kd3 Kc7
4. Ke2 Kd7 5. Kf3 Ke7 6. Kf2 Ke8 7. Kf1
Ke7 8. Ke1 Kd7 9. Kd2 Kc8 10. Kc3 Kb7
11. Kc4 Kb6 12. Kb3 Kb7 13. Ka2 Kb6
14. Kb2 Ka7 15. Kc3 Kb7 16. Kc4 Kb6
17. Kd3 Kb7 18. Kc3 Kb6 19. Kc4 Ka6
20. Kb3 Kb6 21. Kc2 Ka7 22. Kd1 Kb6
23. Ke2 Kc7 24. Ke3 Kd8 25. Kd3 Kc7
26. Ke2 Kd7 27. Kf3 Ke7 28. Kf2 Kf6
29. Ke3 Kf7 30. Kd3 Kg6 31. Kc3 Kf6
32. Kc4
42 1.78/18.00 ++ 0. ... () 1. Kb1! (>+1.00)
42 3.82/30.00 -- 0. ... () 1. Kb1? (<+0.68)
42 3.84/30.00 -- 0. ... () 1. Kb1? (<+0.52)
42 3.84/30.00 -- 0. ... () 1. Kb1? (<+0.20)
42 3.85/30.00 0.00 0. ... () 1. Kb1 Kb7 2. Kc2 Kc8 3. Kd3 Kc7
4. Ke2 Kd7 5. Kf3 Ke7 6. Kf2 Ke8 7. Kf1
Ke7 8. Ke1 Kd7 9. Kd2 Kc8 10. Kc3 Kb7
11. Kc4 Kb6 12. Kb3 Ka7 13. Kb2 Ka8
14. Ka3 Kb7 15. Kb3 Ka7 <3-fold>
42-> 3.85/27.00 0.00 0. ... () 1. Kb1 Kb7 2. Kc2 Kc8 3. Kd3 Kc7
4. Ke2 Kd7 5. Kf3 Ke7 6. Kf2 Ke8 7. Kf1
Ke7 8. Ke1 Kd7 9. Kd2 Kc8 10. Kc3 Kb7
11. Kc4 Kb6 12. Kb3 Ka7 13. Kb2 Ka8
14. Ka3 Kb7 15. Kb3 Ka7 <3-fold>
43 3.85/27.00 0.00 0. ... () 1. Kb1 Kb7 2. Kc2 Kc8 3. Kd3 Kc7
4. Ke2 Kd7 5. Kf3 Ke7 6. Kf2 Ke8 7. Kf1
Ke7 8. Ke1 Kd7 9. Kd2 Kc8 10. Kc3 Kb7
11. Kc4 Kb6 12. Kb3 Ka7 13. Kb2 Ka8
14. Ka3 Kb7 15. Kb3 Ka7 <3-fold>
43-> 3.85/24.30 0.00 0. ... () 1. Kb1 Kb7 2. Kc2 Kc8 3. Kd3 Kc7
4. Ke2 Kd7 5. Kf3 Ke7 6. Kf2 Ke8 7. Kf1
Ke7 8. Ke1 Kd7 9. Kd2 Kc8 10. Kc3 Kb7
11. Kc4 Kb6 12. Kb3 Ka7 13. Kb2 Ka8
14. Ka3 Kb7 15. Kb3 Ka7 <3-fold>
44 3.85/24.30 0.00 0. ... () 1. Kb1 Kb7 2. Kc2 Kc8 3. Kd3 Kc7
4. Ke2 Kd7 5. Kf3 Ke7 6. Kf2 Ke8 7. Kf1
Ke7 8. Ke1 Kd7 9. Kd2 Kc8 10. Kc3 Kb7
11. Kc4 Kb6 12. Kb3 Ka7 13. Kb2 Ka8
14. Ka3 Kb7 15. Kb3 Ka7 <3-fold>
44-> 3.87/21.60 0.00 0. ... () 1. Kb1 Kb7 2. Kc2 Kc8 3. Kd3 Kc7
4. Ke2 Kd7 5. Kf3 Ke7 6. Kf2 Ke8 7. Kf1
Ke7 8. Ke1 Kd7 9. Kd2 Kc8 10. Kc3 Kb7
11. Kc4 Kb6 12. Kb3 Ka7 13. Kb2 Ka8
14. Ka3 Kb7 15. Kb3 Ka7 <3-fold>
45 3.87/21.60 0.00 0. ... () 1. Kb1 Kb7 2. Kc2 Kc8 3. Kd3 Kc7
4. Ke2 Kd7 5. Kf3 Ke7 6. Kf2 Ke8 7. Kf1
Ke7 8. Ke1 Kd7 9. Kd2 Kc8 10. Kc3 Kb7
11. Kc4 Kb6 12. Kb3 Ka7 13. Kb2 Ka8
14. Ka3 Kb7 15. Kb3 Ka7 <3-fold>
45-> 3.87/19.20 0.00 0. ... () 1. Kb1 Kb7 2. Kc2 Kc8 3. Kd3 Kc7
4. Ke2 Kd7 5. Kf3 Ke7 6. Kf2 Ke8 7. Kf1
Ke7 8. Ke1 Kd7 9. Kd2 Kc8 10. Kc3 Kb7
11. Kc4 Kb6 12. Kb3 Ka7 13. Kb2 Ka8
14. Ka3 Kb7 15. Kb3 Ka7 <3-fold>
46 3.87/19.20 0.00 0. ... () 1. Kb1 Kb7 2. Kc2 Kc8 3. Kd3 Kc7
4. Ke2 Kd7 5. Kf3 Ke7 6. Kf2 Ke8 7. Kf1
Ke7 8. Ke1 Kd7 9. Kd2 Kc8 10. Kc3 Kb7
11. Kc4 Kb6 12. Kb3 Ka7 13. Kb2 Ka8
14. Ka3 Kb7 15. Kb3 Ka7 <3-fold>
46-> 3.87/18.00 0.00 0. ... () 1. Kb1 Kb7 2. Kc2 Kc8 3. Kd3 Kc7
4. Ke2 Kd7 5. Kf3 Ke7 6. Kf2 Ke8 7. Kf1
Ke7 8. Ke1 Kd7 9. Kd2 Kc8 10. Kc3 Kb7
11. Kc4 Kb6 12. Kb3 Ka7 13. Kb2 Ka8
14. Ka3 Kb7 15. Kb3 Ka7 <3-fold>
47 3.87/18.00 0.00 0. ... () 1. Kb1 Kb7 2. Kc2 Kc8 3. Kd3 Kc7
4. Ke2 Kd7 5. Kf3 Ke7 6. Kf2 Ke8 7. Kf1
Ke7 8. Ke1 Kd7 9. Kd2 Kc8 10. Kc3 Kb7
11. Kc4 Kb6 12. Kb3 Ka7 13. Kb2 Ka8
14. Ka3 Kb7 15. Kb3 Ka7 <3-fold>
47-> 3.88/18.00 0.00 0. ... () 1. Kb1 Kb7 2. Kc2 Kc8 3. Kd3 Kc7
4. Ke2 Kd7 5. Kf3 Ke7 6. Kf2 Ke8 7. Kf1
Ke7 8. Ke1 Kd7 9. Kd2 Kc8 10. Kc3 Kb7
11. Kc4 Kb6 12. Kb3 Ka7 13. Kb2 Ka8
14. Ka3 Kb7 15. Kb3 Ka7 <3-fold>
48 3.88/18.00 0.00 0. ... () 1. Kb1 Kb7 2. Kc2 Kc8 3. Kd3 Kc7
4. Ke2 Kd7 5. Kf3 Ke7 6. Kf2 Ke8 7. Kf1
Ke7 8. Ke1 Kd7 9. Kd2 Kc8 10. Kc3 Kb7
11. Kc4 Kb6 12. Kb3 Ka7 13. Kb2 Ka8
14. Ka3 Kb7 15. Kb3 Ka7 <3-fold>
48-> 3.90/18.00 0.00 0. ... () 1. Kb1 Kb7 2. Kc2 Kc8 3. Kd3 Kc7
4. Ke2 Kd7 5. Kf3 Ke7 6. Kf2 Ke8 7. Kf1
Ke7 8. Ke1 Kd7 9. Kd2 Kc8 10. Kc3 Kb7
11. Kc4 Kb6 12. Kb3 Ka7 13. Kb2 Ka8
14. Ka3 Kb7 15. Kb3 Ka7 <3-fold>
49 3.90/18.00 0.00 0. ... () 1. Kb1 Kb7 2. Kc2 Kc8 3. Kd3 Kc7
4. Ke2 Kd7 5. Kf3 Ke7 6. Kf2 Ke8 7. Kf1
Ke7 8. Ke1 Kd7 9. Kd2 Kc8 10. Kc3 Kb7
11. Kc4 Kb6 12. Kb3 Ka7 13. Kb2 Ka8
14. Ka3 Kb7 15. Kb3 Ka7 <3-fold>
49-> 3.92/18.00 0.00 0. ... () 1. Kb1 Kb7 2. Kc2 Kc8 3. Kd3 Kc7
4. Ke2 Kd7 5. Kf3 Ke7 6. Kf2 Ke8 7. Kf1
Ke7 8. Ke1 Kd7 9. Kd2 Kc8 10. Kc3 Kb7
11. Kc4 Kb6 12. Kb3 Ka7 13. Kb2 Ka8
14. Ka3 Kb7 15. Kb3 Ka7 <3-fold>
50 3.92/18.00 0.00 0. ... () 1. Kb1 Kb7 2. Kc2 Kc8 3. Kd3 Kc7
4. Ke2 Kd7 5. Kf3 Ke7 6. Kf2 Ke8 7. Kf1
Ke7 8. Ke1 Kd7 9. Kd2 Kc8 10. Kc3 Kb7
11. Kc4 Kb6 12. Kb3 Ka7 13. Kb2 Ka8
14. Ka3 Kb7 15. Kb3 Ka7 <3-fold>
50-> 3.92/18.00 0.00 0. ... () 1. Kb1 Kb7 2. Kc2 Kc8 3. Kd3 Kc7
4. Ke2 Kd7 5. Kf3 Ke7 6. Kf2 Ke8 7. Kf1
Ke7 8. Ke1 Kd7 9. Kd2 Kc8 10. Kc3 Kb7
11. Kc4 Kb6 12. Kb3 Ka7 13. Kb2 Ka8
14. Ka3 Kb7 15. Kb3 Ka7 <3-fold>
51 3.93/18.00 0.00 0. ... () 1. Kb1 Kb7 2. Kc2 Kc8 3. Kd3 Kc7
4. Ke2 Kd7 5. Kf3 Ke7 6. Kf2 Ke8 7. Kf1
Ke7 8. Ke1 Kd7 9. Kd2 Kc8 10. Kc3 Kb7
11. Kc4 Kb6 12. Kb3 Ka7 13. Kb2 Ka8
14. Ka3 Kb7 15. Kb3 Ka7 <3-fold>
51-> 3.93/18.00 0.00 0. ... () 1. Kb1 Kb7 2. Kc2 Kc8 3. Kd3 Kc7
4. Ke2 Kd7 5. Kf3 Ke7 6. Kf2 Ke8 7. Kf1
Ke7 8. Ke1 Kd7 9. Kd2 Kc8 10. Kc3 Kb7
11. Kc4 Kb6 12. Kb3 Ka7 13. Kb2 Ka8
14. Ka3 Kb7 15. Kb3 Ka7 <3-fold>
52 3.95/18.00 0.00 0. ... () 1. Kb1 Kb7 2. Kc2 Kc8 3. Kd3 Kc7
4. Ke2 Kd7 5. Kf3 Ke7 6. Kf2 Ke8 7. Kf1
Ke7 8. Ke1 Kd7 9. Kd2 Kc8 10. Kc3 Kb7
11. Kc4 Kb6 12. Kb3 Ka7 13. Kb2 Ka8
14. Ka3 Kb7 15. Kb3 Ka7 <3-fold>
52-> 3.95/18.00 0.00 0. ... () 1. Kb1 Kb7 2. Kc2 Kc8 3. Kd3 Kc7
4. Ke2 Kd7 5. Kf3 Ke7 6. Kf2 Ke8 7. Kf1
Ke7 8. Ke1 Kd7 9. Kd2 Kc8 10. Kc3 Kb7
11. Kc4 Kb6 12. Kb3 Ka7 13. Kb2 Ka8
14. Ka3 Kb7 15. Kb3 Ka7 <3-fold>
53 3.95/18.00 0.00 0. ... () 1. Kb1 Kb7 2. Kc2 Kc8 3. Kd3 Kc7
4. Ke2 Kd7 5. Kf3 Ke7 6. Kf2 Ke8 7. Kf1
Ke7 8. Ke1 Kd7 9. Kd2 Kc8 10. Kc3 Kb7
11. Kc4 Kb6 12. Kb3 Ka7 13. Kb2 Ka8
14. Ka3 Kb7 15. Kb3 Ka7 <3-fold>
53-> 3.96/18.00 0.00 0. ... () 1. Kb1 Kb7 2. Kc2 Kc8 3. Kd3 Kc7
4. Ke2 Kd7 5. Kf3 Ke7 6. Kf2 Ke8 7. Kf1
Ke7 8. Ke1 Kd7 9. Kd2 Kc8 10. Kc3 Kb7
11. Kc4 Kb6 12. Kb3 Ka7 13. Kb2 Ka8
14. Ka3 Kb7 15. Kb3 Ka7 <3-fold>
54 4.07/18.00 0.00 0. ... () 1. Kb1 Kb7 2. Kc2 Kc8 3. Kd3 Kc7
4. Ke2 Kd7 5. Kf3 Ke7 6. Kf2 Ke8 7. Kf1
Ke7 8. Ke1 Kd7 9. Kd2 Kc8 10. Kc3 Kb7
11. Kc4 Kb6 12. Kb3 Ka7 13. Kb2 Ka8
14. Ka3 Kb7 15. Kb3 Ka7 <3-fold>
54-> 4.07/18.00 0.00 0. ... () 1. Kb1 Kb7 2. Kc2 Kc8 3. Kd3 Kc7
4. Ke2 Kd7 5. Kf3 Ke7 6. Kf2 Ke8 7. Kf1
Ke7 8. Ke1 Kd7 9. Kd2 Kc8 10. Kc3 Kb7
11. Kc4 Kb6 12. Kb3 Ka7 13. Kb2 Ka8
14. Ka3 Kb7 15. Kb3 Ka7 <3-fold>
55 4.09/18.00 0.00 0. ... () 1. Kb1 Kb7 2. Kc2 Kc8 3. Kd3 Kc7
4. Ke2 Kd7 5. Kf3 Ke7 6. Kf2 Ke8 7. Kf1
Ke7 8. Ke1 Kd7 9. Kd2 Kc8 10. Kc3 Kb7
11. Kc4 Kb6 12. Kb3 Ka7 13. Kb2 Ka8
14. Ka3 Kb7 15. Kb3 Ka7 <3-fold>
55-> 4.09/18.00 0.00 0. ... () 1. Kb1 Kb7 2. Kc2 Kc8 3. Kd3 Kc7
4. Ke2 Kd7 5. Kf3 Ke7 6. Kf2 Ke8 7. Kf1
Ke7 8. Ke1 Kd7 9. Kd2 Kc8 10. Kc3 Kb7
11. Kc4 Kb6 12. Kb3 Ka7 13. Kb2 Ka8
14. Ka3 Kb7 15. Kb3 Ka7 <3-fold>
56 4.10/18.00 0.00 0. ... () 1. Kb1 Kb7 2. Kc2 Kc8 3. Kd3 Kc7
4. Ke2 Kd7 5. Kf3 Ke7 6. Kf2 Ke8 7. Kf1
Ke7 8. Ke1 Kd7 9. Kd2 Kc8 10. Kc3 Kb7
11. Kc4 Kb6 12. Kb3 Ka7 13. Kb2 Ka8
14. Ka3 Kb7 15. Kb3 Ka7 <3-fold>
56-> 4.10/18.00 0.00 0. ... () 1. Kb1 Kb7 2. Kc2 Kc8 3. Kd3 Kc7
4. Ke2 Kd7 5. Kf3 Ke7 6. Kf2 Ke8 7. Kf1
Ke7 8. Ke1 Kd7 9. Kd2 Kc8 10. Kc3 Kb7
11. Kc4 Kb6 12. Kb3 Ka7 13. Kb2 Ka8
14. Ka3 Kb7 15. Kb3 Ka7 <3-fold>
57 4.23/18.00 0.00 0. ... () 1. Kb1 Kb7 2. Kc2 Kc8 3. Kd3 Kc7
4. Ke2 Kd7 5. Kf3 Ke7 6. Kf2 Ke8 7. Kf1
Ke7 8. Ke1 Kd7 9. Kd2 Kc8 10. Kc3 Kb7
11. Kc4 Kb6 12. Kb3 Ka7 13. Kb2 Ka8
14. Ka3 Kb7 15. Kb3 Ka7 <3-fold>
57-> 4.23/18.00 0.00 0. ... () 1. Kb1 Kb7 2. Kc2 Kc8 3. Kd3 Kc7
4. Ke2 Kd7 5. Kf3 Ke7 6. Kf2 Ke8 7. Kf1
Ke7 8. Ke1 Kd7 9. Kd2 Kc8 10. Kc3 Kb7
11. Kc4 Kb6 12. Kb3 Ka7 13. Kb2 Ka8
14. Ka3 Kb7 15. Kb3 Ka7 <3-fold>
58 4.48/18.00 0.00 0. ... () 1. Kb1 Kb7 2. Kc2 Kc8 3. Kd3 Kc7
4. Ke2 Kd7 5. Kf3 Ke7 6. Kf2 Ke8 7. Kf1
Ke7 8. Ke1 Kd7 9. Kd2 Kc8 10. Kc3 Kb7
11. Kc4 Kb6 12. Kb3 Ka7 13. Kb2 Ka8
14. Ka3 Kb7 15. Kb3 Ka7 <3-fold>
58-> 4.48/18.00 0.00 0. ... () 1. Kb1 Kb7 2. Kc2 Kc8 3. Kd3 Kc7
4. Ke2 Kd7 5. Kf3 Ke7 6. Kf2 Ke8 7. Kf1
Ke7 8. Ke1 Kd7 9. Kd2 Kc8 10. Kc3 Kb7
11. Kc4 Kb6 12. Kb3 Ka7 13. Kb2 Ka8
14. Ka3 Kb7 15. Kb3 Ka7 <3-fold>
59 4.90/18.00 0.00 0. ... () 1. Kb1 Kb7 2. Kc2 Kc8 3. Kd3 Kc7
4. Ke2 Kd7 5. Kf3 Ke7 6. Kf2 Ke8 7. Kf1
Ke7 8. Ke1 Kd7 9. Kd2 Kc8 10. Kc3 Kb7
11. Kc4 Kb6 12. Kb3 Ka7 13. Kb2 Ka8
14. Ka3 Kb7 15. Kb3 Ka7 <3-fold>
59-> 4.90/18.00 0.00 0. ... () 1. Kb1 Kb7 2. Kc2 Kc8 3. Kd3 Kc7
4. Ke2 Kd7 5. Kf3 Ke7 6. Kf2 Ke8 7. Kf1
Ke7 8. Ke1 Kd7 9. Kd2 Kc8 10. Kc3 Kb7
11. Kc4 Kb6 12. Kb3 Ka7 13. Kb2 Ka8
14. Ka3 Kb7 15. Kb3 Ka7 <3-fold>
60 5.62/18.00 0.00 0. ... () 1. Kb1 Kb7 2. Kc2 Kc8 3. Kd3 Kc7
4. Ke2 Kd7 5. Kf3 Ke7 6. Kf2 Ke8 7. Kf1
Ke7 8. Ke1 Kd7 9. Kd2 Kc8 10. Kc3 Kb7
11. Kc4 Kb6 12. Kb3 Ka7 13. Kb2 Ka8
14. Ka3 Kb7 15. Kb3 Ka7 <3-fold>
60-> 5.62/18.00 0.00 0. ... () 1. Kb1 Kb7 2. Kc2 Kc8 3. Kd3 Kc7
4. Ke2 Kd7 5. Kf3 Ke7 6. Kf2 Ke8 7. Kf1
Ke7 8. Ke1 Kd7 9. Kd2 Kc8 10. Kc3 Kb7
11. Kc4 Kb6 12. Kb3 Ka7 13. Kb2 Ka8
14. Ka3 Kb7 15. Kb3 Ka7 <3-fold>
61 7.18/18.00 0.00 0. ... () 1. Kb1 Kb7 2. Kc2 Kc8 3. Kd3 Kc7
4. Ke2 Kd7 5. Kf3 Ke7 6. Kf2 Ke8 7. Kf1
Ke7 8. Ke1 Kd7 9. Kd2 Kc8 10. Kc3 Kb7
11. Kc4 Kb6 12. Kb3 Ka7 13. Kb2 Ka8
14. Ka3 Kb7 15. Kb3 Ka7 <3-fold>
61-> 7.19/18.00 0.00 0. ... () 1. Kb1 Kb7 2. Kc2 Kc8 3. Kd3 Kc7
4. Ke2 Kd7 5. Kf3 Ke7 6. Kf2 Ke8 7. Kf1
Ke7 8. Ke1 Kd7 9. Kd2 Kc8 10. Kc3 Kb7
11. Kc4 Kb6 12. Kb3 Ka7 13. Kb2 Ka8
14. Ka3 Kb7 15. Kb3 Ka7 <3-fold>
62 7.19/18.00 0.00 0. ... () 1. Kb1 Kb7 2. Kc2 Kc8 3. Kd3 Kc7
4. Ke2 Kd7 5. Kf3 Ke7 6. Kf2 Ke8 7. Kf1
Ke7 8. Ke1 Kd7 9. Kd2 Kc8 10. Kc3 Kb7
11. Kc4 Kb6 12. Kb3 Ka7 13. Kb2 Ka8
14. Ka3 Kb7 15. Kb3 Ka7 <3-fold>
62-> 7.19/18.00 0.00 0. ... () 1. Kb1 Kb7 2. Kc2 Kc8 3. Kd3 Kc7
4. Ke2 Kd7 5. Kf3 Ke7 6. Kf2 Ke8 7. Kf1
Ke7 8. Ke1 Kd7 9. Kd2 Kc8 10. Kc3 Kb7
11. Kc4 Kb6 12. Kb3 Ka7 13. Kb2 Ka8
14. Ka3 Kb7 15. Kb3 Ka7 <3-fold>
63 7.21/18.00 0.00 0. ... () 1. Kb1 Kb7 2. Kc2 Kc8 3. Kd3 Kc7
4. Ke2 Kd7 5. Kf3 Ke7 6. Kf2 Ke8 7. Kf1
Ke7 8. Ke1 Kd7 9. Kd2 Kc8 10. Kc3 Kb7
11. Kc4 Kb6 12. Kb3 Ka7 13. Kb2 Ka8
14. Ka3 Kb7 15. Kb3 Ka7 <3-fold>
63-> 7.21/18.00 0.00 0. ... () 1. Kb1 Kb7 2. Kc2 Kc8 3. Kd3 Kc7
4. Ke2 Kd7 5. Kf3 Ke7 6. Kf2 Ke8 7. Kf1
Ke7 8. Ke1 Kd7 9. Kd2 Kc8 10. Kc3 Kb7
11. Kc4 Kb6 12. Kb3 Ka7 13. Kb2 Ka8
14. Ka3 Kb7 15. Kb3 Ka7 <3-fold>
64 7.22/18.00 0.00 0. ... () 1. Kb1 Kb7 2. Kc2 Kc8 3. Kd3 Kc7
4. Ke2 Kd7 5. Kf3 Ke7 6. Kf2 Ke8 7. Kf1
Ke7 8. Ke1 Kd7 9. Kd2 Kc8 10. Kc3 Kb7
11. Kc4 Kb6 12. Kb3 Ka7 13. Kb2 Ka8
14. Ka3 Kb7 15. Kb3 Ka7 <3-fold>
64-> 7.22/18.00 0.00 0. ... () 1. Kb1 Kb7 2. Kc2 Kc8 3. Kd3 Kc7
4. Ke2 Kd7 5. Kf3 Ke7 6. Kf2 Ke8 7. Kf1
Ke7 8. Ke1 Kd7 9. Kd2 Kc8 10. Kc3 Kb7
11. Kc4 Kb6 12. Kb3 Ka7 13. Kb2 Ka8
14. Ka3 Kb7 15. Kb3 Ka7 <3-fold>
65 7.24/18.00 0.00 0. ... () 1. Kb1 Kb7 2. Kc2 Kc8 3. Kd3 Kc7
4. Ke2 Kd7 5. Kf3 Ke7 6. Kf2 Ke8 7. Kf1
Ke7 8. Ke1 Kd7 9. Kd2 Kc8 10. Kc3 Kb7
11. Kc4 Kb6 12. Kb3 Ka7 13. Kb2 Ka8
14. Ka3 Kb7 15. Kb3 Ka7 <3-fold>
65-> 7.24/18.00 0.00 0. ... () 1. Kb1 Kb7 2. Kc2 Kc8 3. Kd3 Kc7
4. Ke2 Kd7 5. Kf3 Ke7 6. Kf2 Ke8 7. Kf1
Ke7 8. Ke1 Kd7 9. Kd2 Kc8 10. Kc3 Kb7
11. Kc4 Kb6 12. Kb3 Ka7 13. Kb2 Ka8
14. Ka3 Kb7 15. Kb3 Ka7 <3-fold>
66 7.25/18.00 0.00 0. ... () 1. Kb1 Kb7 2. Kc2 Kc8 3. Kd3 Kc7
4. Ke2 Kd7 5. Kf3 Ke7 6. Kf2 Ke8 7. Kf1
Ke7 8. Ke1 Kd7 9. Kd2 Kc8 10. Kc3 Kb7
11. Kc4 Kb6 12. Kb3 Ka7 13. Kb2 Ka8
14. Ka3 Kb7 15. Kb3 Ka7 <3-fold>
66-> 7.25/18.00 0.00 0. ... () 1. Kb1 Kb7 2. Kc2 Kc8 3. Kd3 Kc7
4. Ke2 Kd7 5. Kf3 Ke7 6. Kf2 Ke8 7. Kf1
Ke7 8. Ke1 Kd7 9. Kd2 Kc8 10. Kc3 Kb7
11. Kc4 Kb6 12. Kb3 Ka7 13. Kb2 Ka8
14. Ka3 Kb7 15. Kb3 Ka7 <3-fold>
67 7.25/18.00 0.00 0. ... () 1. Kb1 Kb7 2. Kc2 Kc8 3. Kd3 Kc7
4. Ke2 Kd7 5. Kf3 Ke7 6. Kf2 Ke8 7. Kf1
Ke7 8. Ke1 Kd7 9. Kd2 Kc8 10. Kc3 Kb7
11. Kc4 Kb6 12. Kb3 Ka7 13. Kb2 Ka8
14. Ka3 Kb7 15. Kb3 Ka7 <3-fold>
67-> 7.25/18.00 0.00 0. ... () 1. Kb1 Kb7 2. Kc2 Kc8 3. Kd3 Kc7
4. Ke2 Kd7 5. Kf3 Ke7 6. Kf2 Ke8 7. Kf1
Ke7 8. Ke1 Kd7 9. Kd2 Kc8 10. Kc3 Kb7
11. Kc4 Kb6 12. Kb3 Ka7 13. Kb2 Ka8
14. Ka3 Kb7 15. Kb3 Ka7 <3-fold>
68 7.25/18.00 0.00 0. ... () 1. Kb1 Kb7 2. Kc2 Kc8 3. Kd3 Kc7
4. Ke2 Kd7 5. Kf3 Ke7 6. Kf2 Ke8 7. Kf1
Ke7 8. Ke1 Kd7 9. Kd2 Kc8 10. Kc3 Kb7
11. Kc4 Kb6 12. Kb3 Ka7 13. Kb2 Ka8
14. Ka3 Kb7 15. Kb3 Ka7 <3-fold>
68-> 7.25/18.00 0.00 0. ... () 1. Kb1 Kb7 2. Kc2 Kc8 3. Kd3 Kc7
4. Ke2 Kd7 5. Kf3 Ke7 6. Kf2 Ke8 7. Kf1
Ke7 8. Ke1 Kd7 9. Kd2 Kc8 10. Kc3 Kb7
11. Kc4 Kb6 12. Kb3 Ka7 13. Kb2 Ka8
14. Ka3 Kb7 15. Kb3 Ka7 <3-fold>
69 7.25/18.00 0.00 0. ... () 1. Kb1 Kb7 2. Kc2 Kc8 3. Kd3 Kc7
4. Ke2 Kd7 5. Kf3 Ke7 6. Kf2 Ke8 7. Kf1
Ke7 8. Ke1 Kd7 9. Kd2 Kc8 10. Kc3 Kb7
11. Kc4 Kb6 12. Kb3 Ka7 13. Kb2 Ka8
14. Ka3 Kb7 15. Kb3 Ka7 <3-fold>
69-> 7.27/18.00 0.00 0. ... () 1. Kb1 Kb7 2. Kc2 Kc8 3. Kd3 Kc7
4. Ke2 Kd7 5. Kf3 Ke7 6. Kf2 Ke8 7. Kf1
Ke7 8. Ke1 Kd7 9. Kd2 Kc8 10. Kc3 Kb7
11. Kc4 Kb6 12. Kb3 Ka7 13. Kb2 Ka8
14. Ka3 Kb7 15. Kb3 Ka7 <3-fold>
70 7.27/18.00 0.00 0. ... () 1. Kb1 Kb7 2. Kc2 Kc8 3. Kd3 Kc7
4. Ke2 Kd7 5. Kf3 Ke7 6. Kf2 Ke8 7. Kf1
Ke7 8. Ke1 Kd7 9. Kd2 Kc8 10. Kc3 Kb7
11. Kc4 Kb6 12. Kb3 Ka7 13. Kb2 Ka8
14. Ka3 Kb7 15. Kb3 Ka7 <3-fold>
70-> 7.27/18.00 0.00 0. ... () 1. Kb1 Kb7 2. Kc2 Kc8 3. Kd3 Kc7
4. Ke2 Kd7 5. Kf3 Ke7 6. Kf2 Ke8 7. Kf1
Ke7 8. Ke1 Kd7 9. Kd2 Kc8 10. Kc3 Kb7
11. Kc4 Kb6 12. Kb3 Ka7 13. Kb2 Ka8
14. Ka3 Kb7 15. Kb3 Ka7 <3-fold>
71 7.27/18.00 0.00 0. ... () 1. Kb1 Kb7 2. Kc2 Kc8 3. Kd3 Kc7
4. Ke2 Kd7 5. Kf3 Ke7 6. Kf2 Ke8 7. Kf1
Ke7 8. Ke1 Kd7 9. Kd2 Kc8 10. Kc3 Kb7
11. Kc4 Kb6 12. Kb3 Ka7 13. Kb2 Ka8
14. Ka3 Kb7 15. Kb3 Ka7 <3-fold>
71-> 7.27/18.00 0.00 0. ... () 1. Kb1 Kb7 2. Kc2 Kc8 3. Kd3 Kc7
4. Ke2 Kd7 5. Kf3 Ke7 6. Kf2 Ke8 7. Kf1
Ke7 8. Ke1 Kd7 9. Kd2 Kc8 10. Kc3 Kb7
11. Kc4 Kb6 12. Kb3 Ka7 13. Kb2 Ka8
14. Ka3 Kb7 15. Kb3 Ka7 <3-fold>
72 7.27/18.00 0.00 0. ... () 1. Kb1 Kb7 2. Kc2 Kc8 3. Kd3 Kc7
4. Ke2 Kd7 5. Kf3 Ke7 6. Kf2 Ke8 7. Kf1
Ke7 8. Ke1 Kd7 9. Kd2 Kc8 10. Kc3 Kb7
11. Kc4 Kb6 12. Kb3 Ka7 13. Kb2 Ka8
14. Ka3 Kb7 15. Kb3 Ka7 <3-fold>
72-> 7.29/18.00 0.00 0. ... () 1. Kb1 Kb7 2. Kc2 Kc8 3. Kd3 Kc7
4. Ke2 Kd7 5. Kf3 Ke7 6. Kf2 Ke8 7. Kf1
Ke7 8. Ke1 Kd7 9. Kd2 Kc8 10. Kc3 Kb7
11. Kc4 Kb6 12. Kb3 Ka7 13. Kb2 Ka8
14. Ka3 Kb7 15. Kb3 Ka7 <3-fold>
73 7.29/18.00 0.00 0. ... () 1. Kb1 Kb7 2. Kc2 Kc8 3. Kd3 Kc7
4. Ke2 Kd7 5. Kf3 Ke7 6. Kf2 Ke8 7. Kf1
Ke7 8. Ke1 Kd7 9. Kd2 Kc8 10. Kc3 Kb7
11. Kc4 Kb6 12. Kb3 Ka7 13. Kb2 Ka8
14. Ka3 Kb7 15. Kb3 Ka7 <3-fold>
73-> 7.29/18.00 0.00 0. ... () 1. Kb1 Kb7 2. Kc2 Kc8 3. Kd3 Kc7
4. Ke2 Kd7 5. Kf3 Ke7 6. Kf2 Ke8 7. Kf1
Ke7 8. Ke1 Kd7 9. Kd2 Kc8 10. Kc3 Kb7
11. Kc4 Kb6 12. Kb3 Ka7 13. Kb2 Ka8
14. Ka3 Kb7 15. Kb3 Ka7 <3-fold>
74 7.29/18.00 0.00 0. ... () 1. Kb1 Kb7 2. Kc2 Kc8 3. Kd3 Kc7
4. Ke2 Kd7 5. Kf3 Ke7 6. Kf2 Ke8 7. Kf1
Ke7 8. Ke1 Kd7 9. Kd2 Kc8 10. Kc3 Kb7
11. Kc4 Kb6 12. Kb3 Ka7 13. Kb2 Ka8
14. Ka3 Kb7 15. Kb3 Ka7 <3-fold>
74-> 7.29/18.00 0.00 0. ... () 1. Kb1 Kb7 2. Kc2 Kc8 3. Kd3 Kc7
4. Ke2 Kd7 5. Kf3 Ke7 6. Kf2 Ke8 7. Kf1
Ke7 8. Ke1 Kd7 9. Kd2 Kc8 10. Kc3 Kb7
11. Kc4 Kb6 12. Kb3 Ka7 13. Kb2 Ka8
14. Ka3 Kb7 15. Kb3 Ka7 <3-fold>
75 7.29/18.00 0.00 0. ... () 1. Kb1 Kb7 2. Kc2 Kc8 3. Kd3 Kc7
4. Ke2 Kd7 5. Kf3 Ke7 6. Kf2 Ke8 7. Kf1
Ke7 8. Ke1 Kd7 9. Kd2 Kc8 10. Kc3 Kb7
11. Kc4 Kb6 12. Kb3 Ka7 13. Kb2 Ka8
14. Ka3 Kb7 15. Kb3 Ka7 <3-fold>
75-> 7.30/18.00 0.00 0. ... () 1. Kb1 Kb7 2. Kc2 Kc8 3. Kd3 Kc7
4. Ke2 Kd7 5. Kf3 Ke7 6. Kf2 Ke8 7. Kf1
Ke7 8. Ke1 Kd7 9. Kd2 Kc8 10. Kc3 Kb7
11. Kc4 Kb6 12. Kb3 Ka7 13. Kb2 Ka8
14. Ka3 Kb7 15. Kb3 Ka7 <3-fold>
76 7.30/18.00 0.00 0. ... () 1. Kb1 Kb7 2. Kc2 Kc8 3. Kd3 Kc7
4. Ke2 Kd7 5. Kf3 Ke7 6. Kf2 Ke8 7. Kf1
Ke7 8. Ke1 Kd7 9. Kd2 Kc8 10. Kc3 Kb7
11. Kc4 Kb6 12. Kb3 Ka7 13. Kb2 Ka8
14. Ka3 Kb7 15. Kb3 Ka7 <3-fold>
76-> 7.30/18.00 0.00 0. ... () 1. Kb1 Kb7 2. Kc2 Kc8 3. Kd3 Kc7
4. Ke2 Kd7 5. Kf3 Ke7 6. Kf2 Ke8 7. Kf1
Ke7 8. Ke1 Kd7 9. Kd2 Kc8 10. Kc3 Kb7
11. Kc4 Kb6 12. Kb3 Ka7 13. Kb2 Ka8
14. Ka3 Kb7 15. Kb3 Ka7 <3-fold>
77 7.30/18.00 0.00 0. ... () 1. Kb1 Kb7 2. Kc2 Kc8 3. Kd3 Kc7
4. Ke2 Kd7 5. Kf3 Ke7 6. Kf2 Ke8 7. Kf1
Ke7 8. Ke1 Kd7 9. Kd2 Kc8 10. Kc3 Kb7
11. Kc4 Kb6 12. Kb3 Ka7 13. Kb2 Ka8
14. Ka3 Kb7 15. Kb3 Ka7 <3-fold>
77-> 7.30/18.00 0.00 0. ... () 1. Kb1 Kb7 2. Kc2 Kc8 3. Kd3 Kc7
4. Ke2 Kd7 5. Kf3 Ke7 6. Kf2 Ke8 7. Kf1
Ke7 8. Ke1 Kd7 9. Kd2 Kc8 10. Kc3 Kb7
11. Kc4 Kb6 12. Kb3 Ka7 13. Kb2 Ka8
14. Ka3 Kb7 15. Kb3 Ka7 <3-fold>
78 7.32/18.00 0.00 0. ... () 1. Kb1 Kb7 2. Kc2 Kc8 3. Kd3 Kc7
4. Ke2 Kd7 5. Kf3 Ke7 6. Kf2 Ke8 7. Kf1
Ke7 8. Ke1 Kd7 9. Kd2 Kc8 10. Kc3 Kb7
11. Kc4 Kb6 12. Kb3 Ka7 13. Kb2 Ka8
14. Ka3 Kb7 15. Kb3 Ka7 <3-fold>
78-> 7.32/18.00 0.00 0. ... () 1. Kb1 Kb7 2. Kc2 Kc8 3. Kd3 Kc7
4. Ke2 Kd7 5. Kf3 Ke7 6. Kf2 Ke8 7. Kf1
Ke7 8. Ke1 Kd7 9. Kd2 Kc8 10. Kc3 Kb7
11. Kc4 Kb6 12. Kb3 Ka7 13. Kb2 Ka8
14. Ka3 Kb7 15. Kb3 Ka7 <3-fold>
79 7.57/18.00 0.00 0. ... () 1. Kb1 Kb7 2. Kc2 Kc8 3. Kd3 Kc7
4. Ke2 Kd7 5. Kf3 Ke7 6. Kf2 Ke8 7. Kf1
Ke7 8. Ke1 Kd7 9. Kd2 Kc8 10. Kc3 Kb7
11. Kc4 Kb6 12. Kb3 Ka7 13. Kb2 Ka8
14. Ka3 Kb7 15. Kb3 Ka7 <3-fold>
79-> 7.57/18.00 0.00 0. ... () 1. Kb1 Kb7 2. Kc2 Kc8 3. Kd3 Kc7
4. Ke2 Kd7 5. Kf3 Ke7 6. Kf2 Ke8 7. Kf1
Ke7 8. Ke1 Kd7 9. Kd2 Kc8 10. Kc3 Kb7
11. Kc4 Kb6 12. Kb3 Ka7 13. Kb2 Ka8
14. Ka3 Kb7 15. Kb3 Ka7 <3-fold>
80 19.94/18.00 0.00 0. ... () 1. Kb1 Kb7 2. Kc2 Kc8 3. Kd3 Kc7
4. Ke2 Kd7 5. Kf3 Ke7 6. Kf2 Ke8 7. Kf1
Ke7 8. Ke1 Kd7 9. Kd2 Kc8 10. Kc3 Kb7
11. Kc4 Kb6 12. Kb3 Ka7 13. Kb2 Ka8
14. Ka3 Kb7 15. Kb3 Ka7 <3-fold>
80-> 19.94/18.00 0.00 0. ... () 1. Kb1 Kb7 2. Kc2 Kc8 3. Kd3 Kc7
4. Ke2 Kd7 5. Kf3 Ke7 6. Kf2 Ke8 7. Kf1
Ke7 8. Ke1 Kd7 9. Kd2 Kc8 10. Kc3 Kb7
11. Kc4 Kb6 12. Kb3 Ka7 13. Kb2 Ka8
14. Ka3 Kb7 15. Kb3 Ka7 <3-fold>
81 19.94/18.00 0.00 0. ... () 1. Kb1 Kb7 2. Kc2 Kc8 3. Kd3 Kc7
4. Ke2 Kd7 5. Kf3 Ke7 6. Kf2 Ke8 7. Kf1
Ke7 8. Ke1 Kd7 9. Kd2 Kc8 10. Kc3 Kb7
11. Kc4 Kb6 12. Kb3 Ka7 13. Kb2 Ka8
14. Ka3 Kb7 15. Kb3 Ka7 <3-fold>
81-> 19.95/18.00 0.00 0. ... () 1. Kb1 Kb7 2. Kc2 Kc8 3. Kd3 Kc7
4. Ke2 Kd7 5. Kf3 Ke7 6. Kf2 Ke8 7. Kf1
Ke7 8. Ke1 Kd7 9. Kd2 Kc8 10. Kc3 Kb7
11. Kc4 Kb6 12. Kb3 Ka7 13. Kb2 Ka8
14. Ka3 Kb7 15. Kb3 Ka7 <3-fold>
82 19.95/18.00 0.00 0. ... () 1. Kb1 Kb7 2. Kc2 Kc8 3. Kd3 Kc7
4. Ke2 Kd7 5. Kf3 Ke7 6. Kf2 Ke8 7. Kf1
Ke7 8. Ke1 Kd7 9. Kd2 Kc8 10. Kc3 Kb7
11. Kc4 Kb6 12. Kb3 Ka7 13. Kb2 Ka8
14. Ka3 Kb7 15. Kb3 Ka7 <3-fold>
82-> 19.95/18.00 0.00 0. ... () 1. Kb1 Kb7 2. Kc2 Kc8 3. Kd3 Kc7
4. Ke2 Kd7 5. Kf3 Ke7 6. Kf2 Ke8 7. Kf1
Ke7 8. Ke1 Kd7 9. Kd2 Kc8 10. Kc3 Kb7
11. Kc4 Kb6 12. Kb3 Ka7 13. Kb2 Ka8
14. Ka3 Kb7 15. Kb3 Ka7 <3-fold>
83 19.97/18.00 0.00 0. ... () 1. Kb1 Kb7 2. Kc2 Kc8 3. Kd3 Kc7
4. Ke2 Kd7 5. Kf3 Ke7 6. Kf2 Ke8 7. Kf1
Ke7 8. Ke1 Kd7 9. Kd2 Kc8 10. Kc3 Kb7
11. Kc4 Kb6 12. Kb3 Ka7 13. Kb2 Ka8
14. Ka3 Kb7 15. Kb3 Ka7 <3-fold>
83-> 22.15/18.00 0.00 0. ... () 1. Kb1 Kb7 2. Kc2 Kc8 3. Kd3 Kc7
4. Ke2 Kd7 5. Kf3 Ke7 6. Kf2 Ke8 7. Kf1
Ke7 8. Ke1 Kd7 9. Kd2 Kc8 10. Kc3 Kb7
11. Kc4 Kb6 12. Kb3 Ka7 13. Kb2 Ka8
14. Ka3 Kb7 15. Kb3 Ka7 <3-fold>
84 22.15/18.00 0.00 0. ... () 1. Kb1 Kb7 2. Kc2 Kc8 3. Kd3 Kc7
4. Ke2 Kd7 5. Kf3 Ke7 6. Kf2 Ke8 7. Kf1
Ke7 8. Ke1 Kd7 9. Kd2 Kc8 10. Kc3 Kb7
11. Kc4 Kb6 12. Kb3 Ka7 13. Kb2 Ka8
14. Ka3 Kb7 15. Kb3 Ka7 <3-fold>
84-> 22.15/18.00 0.00 0. ... () 1. Kb1 Kb7 2. Kc2 Kc8 3. Kd3 Kc7
4. Ke2 Kd7 5. Kf3 Ke7 6. Kf2 Ke8 7. Kf1
Ke7 8. Ke1 Kd7 9. Kd2 Kc8 10. Kc3 Kb7
11. Kc4 Kb6 12. Kb3 Ka7 13. Kb2 Ka8
14. Ka3 Kb7 15. Kb3 Ka7 <3-fold>
jm
-
- Posts: 8755
- Joined: Sun Feb 26, 2006 4:07 pm
Re: Crafty 25.0 Release
Congrats, Bob, for your work!!!
It is stimulating to see a man of science that keeps working and improving his works beyond 60 years of age.
I am 66 and feel as you I still can give a lot.
Looks like this new Crafty will kick lot of asses...
Fern
It is stimulating to see a man of science that keeps working and improving his works beyond 60 years of age.
I am 66 and feel as you I still can give a lot.
Looks like this new Crafty will kick lot of asses...
Fern