A program named plspider has played a number of games of standard Spider Solitaire.
plspider wins a typical game of Spider in around 15 minutes of play (including losing games before finally winning), often floundering comically with baffling moves when the game is all but won. Perhaps surprisingly, plspider was not developed under a cost-plus defense contract.
Some of the results of plspider's play are listed below.
Inside plspider.zip are:
.h
file (rndvals.hmd
)m
")
cd a_directory_of_your_choice unzip wherever_you_put_the_zip_file/plspider.zip cd plspider_source plspider -c # run the program forever (H or control C to quit) cd src # or switch to the plspider_source/src sub-directory m # and compile the C program to plspider_source/src/plspider
plspider -h # tells you command line options plspider -c # plays forever random unplayed games, or lost games (interspered with occasional random won games) plspider -a -e -s 1234 # plays game number 1234
plspider_cshd.txt
or, if the command line includes
the -w
option, winspidr_cdhs.txt
, at
the end of its play. The program reads one of these files at
start-time to aid in choosing random games to play.
The game number is a number that you may specify to the PySol program (Windows Version) to choose a specific deal of the cards to play.
In fact, the game number corresponds to the arrangements of the shuffled cards and to their order when dealt by the logic in the classic Windows FreeCell game. (Better FreeCell program: Freecell Pro )
plspider does not play the special game numbers -1 and -2, nor does it play the modern Window Free Cell games numbers between 32001 and 1,000,000.
Note: plspider plays Spider, not Free Cell. "game numbers" refer to the arrangements of the shuffled cards and to their order when dealt.
Below, the game number of un-won games may be followed by a number indicating the maximum number of empty stacks plspider has been able to achieve. Until the last 10-card flop, plspider is very eager to create empty stacks. On the last 10-card flop, moving cards out of play takes highest precedence.
The least number of moves that plspider has used to win the game.
... Or the most moves plspider has been able to make at any time in a losing game.
In won games, plspider's moves are stripped of much redundant movement.
Full-run moves are moves when a complete same-suit run of cards is moved to another stack.
Split-run moves are moves when part of a same-suit run of cards is moved - the same-suit run is broken.
Split-run moves are not very commonly used, but seem necessary on occasion. And they can drastically increase the number of moves a dumb program needs to consider for each move it makes.
Refers to when 10 cards are dealt from the deck, a card to each of the play stacks.
The shortest (won games) or longest (lost games) play-times in hours:minutes:seconds.
A "committed move" is a move that cannot be undone by legally moving the cards back to how they were before the move.
For example, a flop is a committed move. Moving a King to an empty stack from a non-empty stack is another example. Any move that flips (reveals) a card is another example. Moving a full suit up and out of play is another example. And, moving card(s) off a stack that contains an exposed card not one higher than the bottom moved card is another example.
Game number 14934 appears to be unwinnable. It looks like this
(printout from showdeal.py
):
Game number 14934 1 2 3 4 5 6 7 8 9 10 10S 2H 4S QD 3D 10D 9H AS JS JD 3C 4H 3H QH 8C 10H 3D 4D 8H AH KS KC 10C 7C 8S 3S 7D 3S 6C 5C 4C 3H 4D 7S 2S 3C 5C 8C QC 5S JH --- --- QC --- --- QS --- --- KS --- KH 2H --- JH 6H --- 2C KD --- 5S 2D 6H 5D 1 2 3 4 5 6 7 8 9 10 6D AH 10H 9S 9C 6C AC 6S 9D 4C 5D 9H 6D 8D 9C KD AS 10D QH JS JC 4H 2S 6S 7H 10C KH 8D 8H AD 5H 2C 2D 4S 8S AC 10S 7H 5H 7C 9D KC AD QD JC JD 7S 7D 9S QSThe visible cards after the initial deal are the 5 of spades, king of hearts, etc.
First, remember this:
A special case of this unwinnable game is when one of the two card-values are a king. In that case, only the 8 cards that the other card-value may be played on must be hidden for the game to be unwinnable.
A further variant of this type of game allows the 10 cards to be anywhere in the deal, so long as the cards they play on are in unexposable positions underneath them.
So, examine game 14934, as shown above:
Notice the positions of the 3's, 2's, kings, and 6's. All stacks but the 6th and 7th have kings or 2's in them. So the stacks other than the 6th and 7th cannot be emptied unless another stack is empty (to move a king to), or unless a 3 is exposed (to move a 2 to).
Simplified, that means that, unless 3's are available for the 2's to be played on, only the 6th and 7th stacks can be emptied. (And, without an empty stack, nothing can be done but play a whole suit built up on a king ... which won't happen if a 2 cannot be played on the king's stack.)
But the only 3's available to be played on are on the 6th and 7th stacks. Unfortunately, all of these 3's are hidden by 6's ... which cannot be moved before they are covered by flopped kings ... which cannot be moved because there are no empty stacks to move them to.
And:
Game number 1748 1 2 3 4 5 6 7 8 9 10 AH 3D 4S 5H 6H 6H 8H 6C 6S 8C 6D 2C 10C 5D 6C 6D 7D KC 3C QC 2H QD 5S 7D QS 3D 2C 5S 8S 7H QH KD 8D 10S 7C 5H 3S 10D 5D 5C KS --- --- 3H --- --- 6S --- --- 10C --- QC 4H --- KS QH --- 10D KD --- 9H AD KH 8S 1 2 3 4 5 6 7 8 9 10 10H 7H 5C QS 8C 9H JD 10H 9S KC QD 9C 4C 4H AH 3H 8H AS JS KH 9D 4C JD AS JH 2H 4S 7S 2D 4D 2S 9S 4D AD AC JH JC 8D 9C 7S JC 2S JS 3S 9D 3C AC 7C 2D 10SExamine the 6's and 5's. Players will have a hard time moving 5's in this game. And all stacks have 5's or kings. All 6's are hidden behind those kings and a 5 (stack 6). 5's or kings block all the other, non-6/king stacks (3, 4, and 10) from being emptied.
Game 1748 appears unwinnable, too.
How many games are like these? That is, games that simply don't go anywhere.
Recent (April 8, 2005) versions of plspider print out whether plspider ever emptied a stack or not.
As of May 1, 2005, there are 4 games that plspider has not emptied a stack on. Games 14934 and 1748 appear to the eye to be unwinnable. Game 10957 also appeared unwinnable, but Mark Stierlin won it in 2020.
Figuring that there exist unwinnable games that a stack can be emptied in, my guess of the unwinnable rate of Spider games is now somewhere around 1 in 3000. The bounds for this guess are given by plspider's current (May 1, 2005) results: that is, there must be more than 1 in 16000 games (though 2 unwinnable games isn't a high enough number to imply that this ratio is accurate), and fewer than 1 in 500.
November 2, 2014
Things have changed. It looks more like there are only 3 unwinnable games out of the 32,000. Two other un-won games, 12177 and 24560 have the makings of being winnable.
Max Schamschula is finding convoluted means to solve games that are unquestionably hard to solve. plspider's has been recompiled with settings tuned more toward looking deep in the move tree of un-won games rather than being quick to find solutions to "normal" games. So, time will tell.
Anyway, it appears 1 in 10,000 is closer to the frequency of un-winnable, random Spider games than 1 in 3000.
Maximilian Schamschula has solved 8881, 20830, and 24614. Herculean effort.
Insprired by Max, with some settings changes, plspider has solved 288, 6654, 8881, and 27320.
And, Max, with the aid of a sequence from plspider setting up 4 empty columns, won game 19638.
Max has solved 14686.
Max has solved 16749 and plspider has won 19638 by itself.
Max has solved 12057.
plspider has solved 28241.
plspider has solved 25521 and 12057.
plspider has solved 24614.
Max solved 14992 and plspider solved 16749 and 20830.
Max solved 28023.
Max solved 24560.
plspider solved 12177.
Mark Stierlin solved 10957.
Able to shuffle and deal all WINSPIDR (by John A. Junod) games. (But restricted to playing games numbered below a million until after April 13th 2024.)
WinSpidr game number 1295 1 2 3 4 5 6 7 8 9 10 5D 2D 3C 4H AC 6C 7C 9H 6H AH 6D JC 2S 5C 6S 4D 10H 10C 6D 6H QD 7S AS 9D 2H 5S 6S 4C 8D 6C 3H JS 8C 9S AC 2C 8S 9C 8H 5H KS --- --- 9S --- --- 4S --- --- 7C --- 10S 2H --- 4D 10H --- KH KC --- QH 2D 5C AH 1 2 3 4 5 6 7 8 9 10 4H 4C 8D KH KD QS 5S KS 7D 2C 7H KD 3D 7S 8H 3D 10D AS 3H 7D 9D JC 8C 10S JD 3S QD 9H QH QS JS 4S AD JH 5D QC QC JD 3C KC AD 9C 10D 10C 5H JH 7H 3S 2S 8SExample unoptimized moves to 1 empty stack: Lost 1295 3:42 222 seconds 0 keys 97 moves 1 empties V0.85 Mon, 09 Sep 2024 13:32:11 GMT 5#1>7 1#1>8 5#1>4 10#1>5 D D D 1#1>4 3#1>4 1#1>4 3#1>1 3#1>8 3#1>1 D 1#1>7 3#1>1 7#1>6 4#1>7 D 9#1>8 3#1>6 2#1>4 7#1>10 6#1>7 3#1>4 3#1>8 3#1>9 3#1>2
WinSpidr game number 8231 1 2 3 4 5 6 7 8 9 10 10S 5H 6H AH QH 3H 7C 3S 10S 2C 10H 2H 6H 10C QD 6C 9D JC 8S JC JS QC 4D QH 5S 5D 3H 5D 8C 5C QS JS 4S AD 9C 3C 3S KC JD 2D 10C --- --- 9C --- --- 8H --- --- 4C --- KH 7S --- AH 5S --- AC 2S --- 9S 4S 2D 9S 1 2 3 4 5 6 7 8 9 10 2C KS QD KC KD 2H 8S KH 2S 7D JH 5H 8D 4D 8D 7D 7H JH KD KS 8C 10D 6D 6S AD QS 3C AC QC 10D AS 8H 4C 3D 7C AS 5C JD 7H 10H 4H 6S 3D 9D 9H 6D 6C 7S 4H 9HExample unoptimized moves to 2 empty stacks: Lost 8231 0:00 0 seconds 0 keys 116 moves 2 empties V0.86 Tue, 10 Sep 2024 21:26:10 GMT 5#1>7 4#1>6 7#1>9 D 3#1>5 3#1>7 D 6#1>3 4#1>2 7#1>5 D D D 7#1>8 3#1>9 7#1>8 3#1>8 9#1>8 7#1>1 2#1>7 7#3>4 7#1>8 7#1>10 3#3>5 7#1>3 7#1>9 5#3>7 4#3>5 2#1>4 7#4>2 7#1>10 10#1>4 2#5>7 8#2>2 8#3>4 1#1>4 8#1>10 7#5>8 6#1>10 2#3>7 6#1>7 2#1>8 6#1>2 9#2>8 6#1>4 6#2>10 6#1>10 6#1>5 7#1>4 6#1>9 6#1>1 7#3>5
WinSpidr game number 36156 1 2 3 4 5 6 7 8 9 10 6C 2C JD 9H 6C 8H 2S AC 10S 8C AD 8S 3S JC 10D 10H KD 3H 6D 10S 5S 2H 5H QS 2H 3C QC 7D 7S QD 8C 7H JC 3C 2D 7C QS 9C 10C 7D KS --- --- 5C --- --- QH --- --- 3D --- KH 6S --- KD 6D --- 9S 6H --- 6H 4S 8D AS 1 2 3 4 5 6 7 8 9 10 9C QC AH 5D 5D KS 3H 6S 8S JH KC 5H AD JS 9D 3D QD 4S KH AC 7S 7C 4D 4C 4D 3S 9S JS 2C 9H JD 10H 8H JH 5S 5C 4C 9D 4H AS QH 7H 4H 2S KC 10C AH 2D 8D 10DExample unoptimized moves to 3 empty stacks: Lost 36156 21:32 1292 seconds 0 keys 460 moves 3 empties V0.87 Fri, 20 Sep 2024 00:11:04 GMT 7#1>8 7#1>2 7#1>5 D D 7#1>1 8#1>2 4#1>1 4#1>8 4#1>8 2#1>4 7#1>8 7#1>9 1#1>9 1#1>7 9#1>7 D 6#1>5 6#1>3 9#1>3 9#1>6 8#1>6 8#1>4 5#1>8 D 2#1>1 7#1>6 8#1>1 3#1>7 8#2>5 2#1>7 3#1>5 3#2>8 3#1>5 D 1#1>5 2#1>9 3#1>2 3#1>4 8#4>3 8#1>9 8#1>1 8#1>6 1#2>10 8#1>1 8#1>10 9#1>10 8#1>2 3#4>10 4#1>10 8#1>4 9#1>8 9#1>6 8#1>6 3#1>6 3#1>5 9#1>3 3#2>6 9#1>8 3#1>6 9#1>1 2#3>9 5#1>2 5#1>8 3#1>8 10#1>3 4#1>10 4#1>6 10#1>6 3#1>10 9#4>3 9#1>2 2#3>5 3#4>9 6#1>3 10#1>6 3#1>10 9#4>3 9#1>1 3#4>1 2#2>3 9#1>2 4#1>3 9#1>3 6#1>9 10#1>6 9#1>10 1#4>9 2#1>1 9#4>2 2#5>9 10#1>2 2#2>9 10#4>1 9#7>2 10#1>9 1#5>10 10#9>8 9#1>1 10#1>8 2#7>9 1#3>10 1#1>5 10#3>5 10#1>1 5#3>1 2#1>5 2#1>4 8#1>4 3#1>2 7#1>8 7#1>5 9#7>7 7#8>9 1#3>7 1#2>3 9#8>3 3C 2#1>1 6#1>2 2#1>6
moves
" reflects the most moves made at any time, not the number of listed moves (which lead to empty stacks).
Green | Won |
Gray | Human-won |
Orange | Lost |
Red | Lost with no empty stacks made. |
Shortest Games | Moves | Longest | Moves | Fastest | Time | Slowest | Time | Shortest Losses | Moves | Slowest Losses | Time | Most Played | Plays | ||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
23181 | 168 | 22641 | 393 | 6577 | 0:16 | 14686 | 3:59:54 | 1748:0 | 94 | 14934:0 | 24:31:04 | 10957 | 2072 | ||||||
14900 | 170 | 28078 | 393 | 26642 | 0:16 | 24560 | 3:39:42 | 14934:0 | 180 | 1748:0 | 40:24 | 14934 | 400 | ||||||
693 | 172 | 21260 | 392 | 6304 | 0:17 | 10957 | 2:46:39 | 12177 | 264 | ||||||||||
25360 | 173 | 3692 | 385 | 7694 | 0:18 | 20830 | 2:39:00 | 24560 | 227 | ||||||||||
718 | 176 | 19952 | 383 | 1143 | 0:21 | 24614 | 2:37:12 | 28023 | 216 | ||||||||||
19167 | 176 | 21320 | 381 | 2438 | 0:21 | 26466 | 2:34:11 | 24614 | 214 | ||||||||||
13492 | 177 | 22544 | 377 | 17513 | 0:21 | 16930 | 2:21:46 | 288 | 211 | ||||||||||
28226 | 177 | 4258 | 376 | 27836 | 0:21 | 8881 | 2:19:49 | 14686 | 209 | ||||||||||
27959 | 178 | 4237 | 375 | 883 | 0:22 | 8138 | 2:09:42 | 20830 | 201 | ||||||||||
5425 | 179 | 14346 | 374 | 6429 | 0:22 | 16749 | 1:59:13 | 14992 | 194 | ||||||||||
25462 | 179 | 1563 | 371 | 19703 | 0:23 | 288 | 1:53:59 | 16749 | 180 | ||||||||||
15993 | 183 | 7512 | 371 | 23792 | 0:23 | 28241 | 1:52:35 | 28241 | 158 | ||||||||||
30152 | 183 | 9280 | 371 | 2073 | 0:25 | 24234 | 1:46:41 | 1748 | 148 | ||||||||||
3899 | 184 | 10719 | 371 | 3168 | 0:25 | 23228 | 1:45:18 | 25521 | 133 | ||||||||||
18992 | 184 | 8081 | 370 | 18203 | 0:25 | 8318 | 1:40:08 | 19638 | 125 | ||||||||||
20578 | 184 | 10322 | 370 | 23250 | 0:25 | 31106 | 1:39:45 | 12057 | 120 | ||||||||||
7435 | 185 | 28614 | 370 | 28714 | 0:25 | 27982 | 1:38:44 | 27320 | 98 | ||||||||||
14398 | 185 | 10475 | 369 | 30339 | 0:25 | 29441 | 1:38:20 | 6654 | 94 | ||||||||||
21585 | 185 | 11460 | 369 | 1413 | 0:26 | 21741 | 1:34:36 | 8881 | 71 | ||||||||||
26906 | 185 | 19470 | 368 | 10644 | 0:26 | 28539 | 1:28:57 | 950 | 63 | ||||||||||
24127 | 186 | 4353 | 366 | 15868 | 0:26 | 14992 | 1:28:26 | 2608 | 61 | ||||||||||
25457 | 186 | 12366 | 366 | 15982 | 0:26 | 7385 | 1:27:33 | 5760 | 60 | ||||||||||
1527 | 187 | 9920 | 365 | 19167 | 0:26 | 11143 | 1:23:54 | 7732 | 58 | ||||||||||
5361 | 187 | 20914 | 365 | 20282 | 0:26 | 27320 | 1:22:40 | 12865 | 57 | ||||||||||
8224 | 187 | 30908 | 365 | 22416 | 0:26 | 20384 | 1:21:14 | 6048 | 56 | ||||||||||
19752 | 187 | 24782 | 364 | 24217 | 0:26 | 2636 | 1:19:17 | 22992 | 54 | ||||||||||
23943 | 187 | 4397 | 363 | 31374 | 0:26 | 4719 | 1:18:00 | 2636 | 49 | ||||||||||
27347 | 187 | 7917 | 363 | 16603 | 0:27 | 4605 | 1:16:25 | 7626 | 49 | ||||||||||
27976 | 187 | 10682 | 363 | 23912 | 0:27 | 6654 | 1:15:46 | 8138 | 48 | ||||||||||
28097 | 187 | 23731 | 363 | 27159 | 0:27 | 17219 | 1:14:36 | 17722 | 48 | ||||||||||
2597 | 188 | 30057 | 363 | 29702 | 0:27 | 28023 | 1:14:36 | 28399 | 47 | ||||||||||
5437 | 188 | 2068 | 362 | 1609 | 0:28 | 26939 | 1:13:32 | 22788 | 43 | ||||||||||
13865 | 188 | 5718 | 362 | 4296 | 0:28 | 12937 | 1:13:28 | 27828 | 43 | ||||||||||
16271 | 188 | 6161 | 362 | 14398 | 0:28 | 8117 | 1:12:24 | 27903 | 41 | ||||||||||
29884 | 188 | 6817 | 362 | 17302 | 0:28 | 15313 | 1:12:08 | 1349 | 40 | ||||||||||
8100 | 189 | 7631 | 362 | 44 | 0:29 | 9691 | 1:11:41 | 22051 | 40 | ||||||||||
9987 | 189 | 8678 | 362 | 91 | 0:29 | 24432 | 1:11:02 | 8318 | 39 | ||||||||||
11533 | 189 | 9397 | 362 | 4685 | 0:29 | 4508 | 1:10:27 | 15313 | 39 | ||||||||||
17658 | 189 | 11136 | 362 | 13790 | 0:29 | 138 | 1:10:15 | 31156 | 39 | ||||||||||
23005 | 189 | 13164 | 362 | 18847 | 0:29 | 28582 | 1:10:12 | 10858 | 38 | ||||||||||
3870 | 190 | 16453 | 362 | 23096 | 0:29 | 9234 | 1:10:01 | 13866 | 38 | ||||||||||
6264 | 190 | 16875 | 362 | 23387 | 0:29 | 966 | 1:09:56 | 19196 | 37 | ||||||||||
9036 | 190 | 22961 | 362 | 28138 | 0:29 | 10858 | 1:09:56 | 4719 | 34 | ||||||||||
10816 | 190 | 23416 | 362 | 5369 | 0:30 | 4258 | 1:09:43 | 24198 | 33 | ||||||||||
18286 | 190 | 24923 | 362 | 8909 | 0:30 | 9611 | 1:08:07 | 28539 | 33 | ||||||||||
20392 | 190 | 26313 | 362 | 12651 | 0:30 | 2083 | 1:07:55 | 10804 | 32 | ||||||||||
20435 | 190 | 28275 | 362 | 12694 | 0:30 | 17442 | 1:07:45 | 16930 | 31 | ||||||||||
26228 | 190 | 7012 | 361 | 12958 | 0:30 | 8701 | 1:06:11 | 10786 | 30 | ||||||||||
30749 | 190 | 8079 | 361 | 14311 | 0:30 | 14972 | 1:06:07 | 24234 | 30 | ||||||||||
10094 | 191 | 8112 | 361 | 14427 | 0:30 | 18364 | 1:05:31 | 6704 | 28 | ||||||||||
13999 | 191 | 8485 | 361 | 16916 | 0:30 | 7167 | 1:05:27 | 16284 | 28 | ||||||||||
15186 | 191 | 9087 | 361 | 17368 | 0:30 | 22544 | 1:04:23 | 16768 | 28 | ||||||||||
16301 | 191 | 9409 | 361 | 22081 | 0:30 | 23860 | 1:04:00 | 22000 | 28 | ||||||||||
19703 | 191 | 12302 | 361 | 26253 | 0:30 | 21318 | 1:03:49 | 13379 | 27 | ||||||||||
22081 | 191 | 16003 | 361 | 29875 | 0:30 | 28675 | 1:03:47 | 19640 | 26 | ||||||||||
27937 | 191 | 19077 | 361 | 31598 | 0:30 | 27551 | 1:03:27 | 6209 | 25 | ||||||||||
2144 | 192 | 19214 | 361 | 9627 | 0:31 | 26993 | 1:02:48 | 17050 | 25 | ||||||||||
2522 | 192 | 20069 | 361 | 12586 | 0:31 | 14211 | 1:02:17 | 31023 | 25 | ||||||||||
7483 | 192 | 25903 | 361 | 14620 | 0:31 | 5986 | 1:02:10 | 2199 | 24 | ||||||||||
8064 | 192 | 26579 | 361 | 15440 | 0:31 | 26914 | 1:01:37 | 8701 | 24 | ||||||||||
17869 | 192 | 26662 | 361 | 16352 | 0:31 | 8329 | 1:01:28 | 29893 | 24 | ||||||||||
21791 | 192 | 31605 | 361 | 18699 | 0:31 | 28237 | 1:01:21 | 19766 | 23 | ||||||||||
22664 | 192 | 110 | 360 | 21383 | 0:31 | 28199 | 1:01:15 | 25176 | 23 | ||||||||||
23209 | 192 | 342 | 360 | 26434 | 0:31 | 8411 | 1:01:03 | 210 | 22 | ||||||||||
23284 | 192 | 937 | 360 | 26872 | 0:31 | 5685 | 1:00:59 | 360 | 22 | ||||||||||
25127 | 192 | 1308 | 360 | 29100 | 0:31 | 27832 | 1:00:54 | 4627 | 22 | ||||||||||
30164 | 192 | 1791 | 360 | 31565 | 0:31 | 2680 | 1:00:47 | 5939 | 22 | ||||||||||
190 | 193 | 3158 | 360 | 2944 | 0:32 | 10804 | 1:00:23 | 8057 | 22 | ||||||||||
216 | 193 | 4861 | 360 | 8577 | 0:32 | 30571 | 1:00:21 | 21678 | 22 | ||||||||||
753 | 193 | 5727 | 360 | 9208 | 0:32 | 5245 | 59:52 | 2957 | 21 | ||||||||||
4072 | 193 | 8828 | 360 | 11513 | 0:32 | 15856 | 59:24 | 5001 | 21 | ||||||||||
5495 | 193 | 9086 | 360 | 12386 | 0:32 | 5374 | 59:22 | 12937 | 21 | ||||||||||
7395 | 193 | 15918 | 360 | 12455 | 0:32 | 12177 | 59:09 | 12938 | 21 | ||||||||||
13156 | 193 | 17919 | 360 | 12934 | 0:32 | 31546 | 58:54 | 15052 | 21 | ||||||||||
17810 | 193 | 19268 | 360 | 16145 | 0:32 | 18638 | 58:43 | 15080 | 21 | ||||||||||
19935 | 193 | 20639 | 360 | 18652 | 0:32 | 8057 | 58:13 | 18637 | 21 | ||||||||||
23387 | 193 | 20873 | 360 | 21690 | 0:32 | 20159 | 58:13 | 18967 | 21 | ||||||||||
31831 | 193 | 21316 | 360 | 22791 | 0:32 | 29862 | 58:11 | 26939 | 21 | ||||||||||
31933 | 193 | 22659 | 360 | 26243 | 0:32 | 31392 | 58:08 | 313 | 20 | ||||||||||
3499 | 194 | 23835 | 360 | 30143 | 0:32 | 29840 | 57:59 | 559 | 20 | ||||||||||
5145 | 194 | 27327 | 360 | 31520 | 0:32 | 8291 | 57:47 | 996 | 20 | ||||||||||
14895 | 194 | 27378 | 360 | 31600 | 0:32 | 30222 | 57:26 | 4258 | 20 | ||||||||||
15598 | 194 | 29712 | 360 | 1019 | 0:33 | 1495 | 57:20 | 6169 | 20 | ||||||||||
17501 | 194 | 29917 | 360 | 1414 | 0:33 | 11602 | 57:19 | 10604 | 20 | ||||||||||
22416 | 194 | 31066 | 360 | 3600 | 0:33 | 11376 | 57:08 | 14972 | 20 | ||||||||||
26602 | 194 | 31112 | 360 | 3877 | 0:33 | 1560 | 56:38 | 25075 | 20 | ||||||||||
26868 | 194 | 2014 | 359 | 4323 | 0:33 | 23428 | 56:24 | 26589 | 20 | ||||||||||
545 | 195 | 9521 | 359 | 6240 | 0:33 | 19541 | 56:23 | 18658 | 19 | ||||||||||
1312 | 195 | 12614 | 359 | 6358 | 0:33 | 25078 | 56:18 | 24686 | 19 | ||||||||||
3093 | 195 | 13017 | 359 | 8513 | 0:33 | 14251 | 56:10 | 26532 | 19 | ||||||||||
6271 | 195 | 16672 | 359 | 21288 | 0:33 | 163 | 56:05 | 27296 | 19 | ||||||||||
9113 | 195 | 18968 | 359 | 21443 | 0:33 | 21254 | 56:05 | 31546 | 19 | ||||||||||
9399 | 195 | 19073 | 359 | 24711 | 0:33 | 11985 | 55:44 | 31779 | 19 | ||||||||||
12189 | 195 | 20563 | 359 | 24918 | 0:33 | 11987 | 55:40 | 528 | 18 | ||||||||||
13894 | 195 | 21345 | 359 | 27612 | 0:33 | 29180 | 55:38 | 3670 | 18 | ||||||||||
15824 | 195 | 22421 | 359 | 29301 | 0:33 | 21436 | 55:31 | 3769 | 18 | ||||||||||
16541 | 195 | 23056 | 359 | 3155 | 0:34 | 25784 | 55:31 | 5929 | 18 | ||||||||||
19973 | 195 | 23482 | 359 | 3814 | 0:34 | 28647 | 55:15 | 10278 | 18 | ||||||||||
22257 | 195 | 28607 | 359 | 4418 | 0:34 | 31517 | 54:54 | 13781 | 18 | ||||||||||
23250 | 195 | 29509 | 359 | 6932 | 0:34 | 5319 | 54:46 | 15879 | 18 |
64802 games played 32000 unique game/deals played. 31998 --- 99.99% of unique games have been won. 2 remain un-won. Most recent won: ['10957:2020-05-01 06:08:16-07:00', '12177:2014-11-04 13:21:01-07:00', '24560:2014-11-03 16:23:54-07:00'] Average won-game, number of moves: 280 in 3:33 Median: 273 in 1:36 Average lost-game, number of moves: 137 in 12:35:44 Median: 137 in 12:35:44 Average time spent to win a game: 13:28 Median: 1:45 Average possible full-run moves per move: 12 Median: 11 Average possible split-run moves per move: 15 Median: 11 Split run moves made in 40192 ( 97%) of 41463 won games.
Green | Won |
Gray | Human-won |
Orange | Lost |
Red | Lost with no empty stacks made. |
Shortest Games | Moves | Longest | Moves | Fastest | Time | Slowest | Time | Shortest Losses | Moves | Slowest Losses | Time | Most Played | Plays | ||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
2534 | 169 | 26978 | 546 | 25556 | 0:01 | 59605 | 22:09:55 | 1295:1 | 291 | 1295:1 | 3:00:10 | 36156 | 22630 | ||||||
49275 | 178 | 12542 | 516 | 33849 | 0:01 | 62400 | 19:55:49 | 8231:2 | 634 | 8231:2 | 2:33:06 | 8231 | 21563 | ||||||
64175 | 180 | 30668 | 504 | 56085 | 0:01 | 34310 | 18:39:07 | 36156:3 | 744 | 36156:3 | 1:28:24 | 1295 | 19969 | ||||||
9635 | 183 | 28256 | 481 | 4978 | 0:02 | 38401 | 18:11:30 | 24323 | 18224 | ||||||||||
33036 | 183 | 26798 | 480 | 5186 | 0:02 | 36487 | 13:25:14 | 9259 | 18077 | ||||||||||
45484 | 183 | 17974 | 479 | 19342 | 0:02 | 9202 | 12:07:03 | 43359 | 17257 | ||||||||||
29839 | 184 | 25418 | 478 | 19582 | 0:02 | 62239 | 11:56:58 | 55839 | 16375 | ||||||||||
58994 | 184 | 5159 | 477 | 33314 | 0:02 | 44266 | 11:20:57 | 36092 | 13823 | ||||||||||
18768 | 185 | 13221 | 476 | 34615 | 0:02 | 36005 | 10:49:12 | 61643 | 13213 | ||||||||||
27894 | 185 | 20138 | 473 | 35869 | 0:02 | 39467 | 10:24:16 | 52654 | 9928 | ||||||||||
43865 | 185 | 13219 | 472 | 39821 | 0:02 | 53683 | 9:50:50 | 45177 | 8478 | ||||||||||
44478 | 185 | 16610 | 468 | 41243 | 0:02 | 38215 | 9:43:53 | 33367 | 7762 | ||||||||||
12301 | 187 | 13402 | 467 | 44091 | 0:02 | 53634 | 9:15:00 | 62935 | 7040 | ||||||||||
29622 | 187 | 24423 | 463 | 46683 | 0:02 | 31562 | 9:14:22 | 49074 | 6978 | ||||||||||
37033 | 187 | 169 | 462 | 49828 | 0:02 | 45463 | 9:05:48 | 46080 | 6962 | ||||||||||
37751 | 187 | 9033 | 462 | 52427 | 0:02 | 46539 | 8:56:55 | 51987 | 6918 | ||||||||||
59428 | 187 | 9605 | 462 | 53389 | 0:02 | 55522 | 8:42:27 | 55917 | 6704 | ||||||||||
44005 | 188 | 7009 | 459 | 53478 | 0:02 | 57811 | 8:29:55 | 36346 | 6666 | ||||||||||
12586 | 189 | 20413 | 459 | 55912 | 0:02 | 7389 | 8:25:40 | 49227 | 6641 | ||||||||||
30020 | 189 | 19347 | 458 | 8373 | 0:03 | 43163 | 8:24:59 | 63209 | 5751 | ||||||||||
51107 | 189 | 22738 | 456 | 8845 | 0:03 | 52322 | 8:18:46 | 59747 | 5247 | ||||||||||
8798 | 190 | 59605 | 449 | 12483 | 0:03 | 54079 | 8:04:43 | 48019 | 4388 | ||||||||||
38049 | 190 | 27990 | 447 | 19992 | 0:03 | 58477 | 7:57:35 | 63038 | 4077 | ||||||||||
44979 | 190 | 2990 | 446 | 20512 | 0:03 | 54660 | 7:39:31 | 39234 | 3957 | ||||||||||
46318 | 190 | 15729 | 444 | 22140 | 0:03 | 37821 | 7:36:31 | 44663 | 2991 | ||||||||||
49097 | 190 | 16854 | 444 | 22954 | 0:03 | 36467 | 7:35:46 | 64964 | 2104 | ||||||||||
922 | 191 | 15355 | 442 | 23986 | 0:03 | 63353 | 7:29:50 | 44367 | 1981 | ||||||||||
4784 | 191 | 1786 | 441 | 26752 | 0:03 | 4236 | 7:14:17 | 55761 | 1960 | ||||||||||
6922 | 191 | 5254 | 441 | 28518 | 0:03 | 45593 | 7:11:12 | 43482 | 1940 | ||||||||||
13908 | 191 | 19733 | 441 | 31295 | 0:03 | 54092 | 7:05:59 | 51402 | 1716 | ||||||||||
14627 | 191 | 12796 | 440 | 32478 | 0:03 | 47431 | 7:03:44 | 57389 | 1658 | ||||||||||
18037 | 191 | 14332 | 439 | 34923 | 0:03 | 16077 | 6:59:34 | 64943 | 1205 | ||||||||||
31337 | 191 | 16653 | 439 | 35447 | 0:03 | 36766 | 6:57:46 | 64882 | 1181 | ||||||||||
33344 | 191 | 27610 | 439 | 36717 | 0:03 | 57540 | 6:52:21 | 64570 | 1166 | ||||||||||
38459 | 191 | 16259 | 438 | 37139 | 0:03 | 41483 | 6:50:21 | 64660 | 1166 | ||||||||||
38852 | 191 | 28401 | 438 | 38398 | 0:03 | 35950 | 6:48:24 | 64153 | 1138 | ||||||||||
39718 | 191 | 23399 | 437 | 43412 | 0:03 | 59421 | 6:45:20 | 64678 | 1091 | ||||||||||
50008 | 191 | 21469 | 436 | 43701 | 0:03 | 53687 | 6:30:26 | 36970 | 1064 | ||||||||||
52979 | 191 | 7830 | 435 | 46826 | 0:03 | 38449 | 6:25:10 | 33088 | 1022 | ||||||||||
62926 | 191 | 39602 | 435 | 48592 | 0:03 | 41905 | 6:23:39 | 56085 | 1017 | ||||||||||
24875 | 192 | 44382 | 435 | 48647 | 0:03 | 58294 | 6:20:29 | 43758 | 981 | ||||||||||
29632 | 192 | 20691 | 434 | 49072 | 0:03 | 45375 | 6:15:22 | 41746 | 946 | ||||||||||
34615 | 192 | 2989 | 433 | 49948 | 0:03 | 19438 | 6:04:01 | 64968 | 916 | ||||||||||
40800 | 192 | 36630 | 433 | 50817 | 0:03 | 37872 | 6:01:30 | 59976 | 864 | ||||||||||
42105 | 192 | 3623 | 432 | 53732 | 0:03 | 50070 | 5:58:56 | 9202 | 848 | ||||||||||
53118 | 192 | 16130 | 432 | 56064 | 0:03 | 45731 | 5:56:08 | 63867 | 782 | ||||||||||
55814 | 192 | 24683 | 431 | 57902 | 0:03 | 53239 | 5:45:09 | 33578 | 772 | ||||||||||
6365 | 193 | 4924 | 429 | 58089 | 0:03 | 59213 | 5:44:35 | 16433 | 755 | ||||||||||
9098 | 193 | 6123 | 429 | 59747 | 0:03 | 54875 | 5:44:10 | 47319 | 722 | ||||||||||
9215 | 193 | 9307 | 429 | 59975 | 0:03 | 46308 | 5:40:45 | 38525 | 692 | ||||||||||
26600 | 193 | 27235 | 428 | 60943 | 0:03 | 49922 | 5:38:33 | 35624 | 682 | ||||||||||
37421 | 193 | 12360 | 427 | 61715 | 0:03 | 36412 | 5:37:26 | 32251 | 670 | ||||||||||
39877 | 193 | 28593 | 427 | 62576 | 0:03 | 62112 | 5:35:06 | 50766 | 670 | ||||||||||
39885 | 193 | 11837 | 426 | 63838 | 0:03 | 47064 | 5:34:51 | 59975 | 663 | ||||||||||
42509 | 193 | 16832 | 426 | 64125 | 0:03 | 56829 | 5:34:48 | 37231 | 654 | ||||||||||
44392 | 193 | 44266 | 426 | 64271 | 0:03 | 51768 | 5:31:01 | 34382 | 653 | ||||||||||
49977 | 193 | 12997 | 425 | 64622 | 0:03 | 52093 | 5:27:05 | 51508 | 616 | ||||||||||
55880 | 193 | 21622 | 425 | 64910 | 0:03 | 58116 | 5:26:37 | 44220 | 608 | ||||||||||
885 | 194 | 1847 | 424 | 6375 | 0:04 | 43669 | 5:24:54 | 26843 | 597 | ||||||||||
7501 | 194 | 6634 | 424 | 6548 | 0:04 | 48791 | 5:24:52 | 52663 | 593 | ||||||||||
40546 | 194 | 18370 | 424 | 6571 | 0:04 | 34979 | 5:22:44 | 1880 | 589 | ||||||||||
41300 | 194 | 22591 | 423 | 7398 | 0:04 | 32782 | 5:21:48 | 13449 | 578 | ||||||||||
43881 | 194 | 27813 | 423 | 8363 | 0:04 | 47536 | 5:19:43 | 27764 | 578 | ||||||||||
50834 | 194 | 62400 | 423 | 10101 | 0:04 | 35524 | 5:17:15 | 29871 | 576 | ||||||||||
52160 | 194 | 10094 | 422 | 11110 | 0:04 | 41654 | 5:16:20 | 169 | 573 | ||||||||||
59302 | 194 | 28211 | 421 | 13714 | 0:04 | 58139 | 5:13:42 | 26978 | 569 | ||||||||||
59330 | 194 | 29848 | 421 | 16121 | 0:04 | 62106 | 5:09:35 | 752 | 545 | ||||||||||
63391 | 194 | 2569 | 420 | 17172 | 0:04 | 56671 | 5:08:46 | 5918 | 543 | ||||||||||
7421 | 195 | 3200 | 420 | 21060 | 0:04 | 48939 | 5:04:24 | 16661 | 536 | ||||||||||
33204 | 195 | 4129 | 420 | 21403 | 0:04 | 52583 | 5:04:07 | 7045 | 524 | ||||||||||
33997 | 195 | 22630 | 420 | 22787 | 0:04 | 42615 | 5:00:32 | 17579 | 523 | ||||||||||
42253 | 195 | 9368 | 419 | 23498 | 0:04 | 44054 | 4:59:54 | 30276 | 519 | ||||||||||
48898 | 195 | 28909 | 419 | 23586 | 0:04 | 39235 | 4:58:24 | 18151 | 516 | ||||||||||
49834 | 195 | 22459 | 418 | 24348 | 0:04 | 56757 | 4:57:36 | 11932 | 511 | ||||||||||
54216 | 195 | 1234 | 417 | 25140 | 0:04 | 47082 | 4:57:19 | 29358 | 507 | ||||||||||
55684 | 195 | 20811 | 416 | 26012 | 0:04 | 31582 | 4:55:09 | 14311 | 505 | ||||||||||
59607 | 195 | 31547 | 416 | 28086 | 0:04 | 38564 | 4:55:07 | 64363 | 501 | ||||||||||
61415 | 195 | 33943 | 416 | 29881 | 0:04 | 32702 | 4:51:30 | 28790 | 497 | ||||||||||
62355 | 195 | 9589 | 415 | 30876 | 0:04 | 40310 | 4:50:54 | 1552 | 494 | ||||||||||
15817 | 196 | 12799 | 415 | 31435 | 0:04 | 40187 | 4:50:51 | 61121 | 494 | ||||||||||
21459 | 196 | 13948 | 415 | 32755 | 0:04 | 32889 | 4:48:14 | 15281 | 378 | ||||||||||
27864 | 196 | 14712 | 415 | 33085 | 0:04 | 60524 | 4:47:22 | 6500 | 339 | ||||||||||
32823 | 196 | 309 | 414 | 33578 | 0:04 | 54553 | 4:40:49 | 36812 | 295 | ||||||||||
32997 | 196 | 760 | 414 | 34114 | 0:04 | 43743 | 4:40:08 | 64296 | 291 | ||||||||||
37664 | 196 | 5475 | 414 | 35281 | 0:04 | 56603 | 4:39:52 | 40063 | 285 | ||||||||||
42920 | 196 | 13971 | 414 | 35473 | 0:04 | 47527 | 4:36:51 | 37767 | 274 | ||||||||||
59006 | 196 | 17579 | 414 | 36181 | 0:04 | 5522 | 4:35:59 | 36922 | 263 | ||||||||||
61743 | 196 | 18990 | 414 | 36955 | 0:04 | 11042 | 4:35:59 | 40011 | 260 | ||||||||||
3592 | 197 | 58823 | 414 | 36957 | 0:04 | 42568 | 4:35:06 | 53387 | 247 | ||||||||||
5281 | 197 | 3729 | 413 | 36970 | 0:04 | 44133 | 4:34:35 | 58642 | 245 | ||||||||||
5304 | 197 | 8176 | 413 | 37385 | 0:04 | 56549 | 4:34:21 | 42489 | 244 | ||||||||||
10107 | 197 | 13035 | 413 | 38058 | 0:04 | 39225 | 4:33:31 | 23499 | 241 | ||||||||||
32913 | 197 | 16433 | 413 | 38266 | 0:04 | 47718 | 4:30:42 | 47211 | 214 | ||||||||||
40304 | 197 | 26388 | 413 | 39043 | 0:04 | 47983 | 4:30:16 | 11827 | 208 | ||||||||||
42371 | 197 | 28111 | 413 | 39337 | 0:04 | 36525 | 4:27:52 | 61954 | 206 | ||||||||||
49579 | 197 | 37841 | 413 | 40338 | 0:04 | 48010 | 4:27:10 | 49844 | 204 | ||||||||||
54287 | 197 | 6215 | 412 | 40638 | 0:04 | 55754 | 4:25:57 | 39231 | 203 | ||||||||||
54967 | 197 | 9565 | 412 | 42260 | 0:04 | 37357 | 4:21:39 | 12542 | 199 | ||||||||||
58708 | 197 | 22689 | 412 | 42660 | 0:04 | 63087 | 4:21:02 | 8304 | 198 | ||||||||||
2334 | 198 | 25275 | 412 | 43124 | 0:04 | 35092 | 4:20:39 | 5340 | 196 |
407337 games played 65097 unique game/deals played. 65094 --- 100.00% of unique games have been won. 3 remain un-won. Most recent won: ['64964:2024-10-07 02:20:17-07:00', '64882:2024-10-06 21:55:16-07:00', '64153:2024-10-06 20:14:37-07:00'] Average won-game, number of moves: 277 in 9:49 Median: 275 in 3:08 Average lost-game, number of moves: 556 in 2:20:33 Median: 634 in 2:33:06 Average time spent to win a game: 16:13 Median: 3:41 Average possible full-run moves per move: 12 Median: 11 Average possible split-run moves per move: 13 Median: 10 Split run moves made in 62594 ( 86%) of 72676 won games.
plspider.htm
plspider.htm
file is generated by webresults.py
from results files, plspider_cshd.txt
and winspidr_cdhs.txt
.