forked from tech-squares/sd
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsdctable.cpp
More file actions
2619 lines (2560 loc) · 167 KB
/
Copy pathsdctable.cpp
File metadata and controls
2619 lines (2560 loc) · 167 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// -*- mode:c++; indent-tabs-mode:nil; c-basic-offset:3; fill-column:88 -*-
// SD -- square dance caller's helper.
//
// Copyright (C) 1990-2012 William B. Ackerman.
//
// This file is part of "Sd".
//
// ===================================================================
//
// If you received this file with express permission from the licensor
// to modify and redistribute it it under the terms of the Creative
// Commons CC BY-NC-SA 3.0 license, then that license applies. See
// http://creativecommons.org/licenses/by-nc-sa/3.0/
//
// ===================================================================
//
// Otherwise, the GNU General Public License applies.
//
// Sd is free software; you can redistribute it and/or modify it
// under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 3 of the License, or
// (at your option) any later version.
//
// Sd is distributed in the hope that it will be useful, but WITHOUT
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
// or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
// License for more details.
//
// You should have received a copy of the GNU General Public License,
// in the file COPYING.txt, along with Sd. See
// http://www.gnu.org/licenses/
//
// ===================================================================
//
// This is for version 38.
/* This defines the following external variables:
centers_concept
heads_concept
sides_concept
special_magic
special_interlocked
mark_end_of_list
marker_decline
marker_concept_mod
marker_concept_comment
marker_concept_supercall
special_piecewise
special_z
main_call_lists
number_of_calls
calling_level
concept_descriptor_table
unsealed_concept_descriptor_table
concept_fixer_table
nice_setup_thing_4x4
nice_setup_thing_3x4
nice_setup_thing_2x8
nice_setup_thing_2x6
nice_setup_thing_1x12
nice_setup_thing_1x16
nice_setup_thing_3dmd
nice_setup_thing_4dmd
nice_setup_thing_4x6
*/
#include "sd.h"
/* The number (typically 4), appearing just before the level in the items below, is the "concparseflags" word.
To save space, it is entered numerically rather than symbolically. Here are the meanings of the various bits:
Y - If the parse turns out to be ambiguous, don't use this one -- yield to the other one.
D - Parse directly. It directs the parser to allow this concept (and similar concepts)
and the following call to be typed on one line. One needs to be very careful
about avoiding ambiguity when setting this flag.
F - This seems to mean put a comma after this concept, as in
"boys are stable, swing thru". */
#define Y CONCPARSE_YIELD_IF_AMB
#define D CONCPARSE_PARSE_DIRECT
#define L CONCPARSE_PARSE_L_TYPE
#define F CONCPARSE_PARSE_F_TYPE
#define G CONCPARSE_PARSE_G_TYPE
// These are all gathered here so that, if the format of a concept_descriptor changes,
// it will be easy to fix everything.
const concept_descriptor concept_centers_concept = {
"centers????", concept_centers_or_ends, 1, l_mainstream, UC_none, selector_centers, false};
const concept_descriptor concept_heads_concept = {
"HEADS", concept_so_and_so_only, 1, l_mainstream, UC_none, selector_heads, false};
const concept_descriptor concept_sides_concept = {
"SIDES", concept_so_and_so_only, 1, l_mainstream, UC_none, selector_sides, false};
const concept_descriptor concept_special_magic = {
"MAGIC DIAMOND,", concept_magic, L+D, l_c1, UC_none, 1};
const concept_descriptor concept_special_interlocked = {
"INTERLOCKED DIAMOND,", concept_interlocked, L+D, l_c1, UC_none, 1};
const concept_descriptor concept_mark_end_of_list = {
"(end)", marker_end_of_list, 0, l_dontshow, UC_none};
const concept_descriptor concept_marker_decline = {
"decline???", concept_mod_declined, 0, l_dontshow, UC_none};
const concept_descriptor concept_marker_concept_mod = {
">>MODIFIED BY<<", concept_another_call_next_mod, 0, l_dontshow, UC_none, 0, 0};
const concept_descriptor concept_marker_concept_comment = {
">>COMMENT<<", concept_comment, 0, l_dontshow, UC_none};
const concept_descriptor concept_marker_concept_supercall = {
">>SUPER<<", concept_supercall, 0, l_dontshow, UC_none};
const concept_descriptor concept_special_piecewise = {
">>SPECIALPIECEWISE<<", concept_meta, 0, l_dontshow, UC_none, meta_key_piecewise};
const concept_descriptor concept_special_z = {
">>SPECIAL_Z<<", concept_misc_distort, 1, l_dontshow, UC_none, 0, 0, 0, 1};
call_with_name **main_call_lists[call_list_extent];
int number_of_calls[call_list_extent];
dance_level calling_level;
const concept_descriptor *concept_descriptor_table;
concept_descriptor conzept::unsealed_concept_descriptor_table[] = {
{"AS COUPLES", concept_tandem, D, l_a1,
UC_cpl, 0, 0, 0x000, tandem_key_cpls},
{"TANDEM", concept_tandem, D, l_c1,
UC_tnd, 0, 0, 0x000, tandem_key_tand},
{"SIAMESE", concept_tandem, D, l_c1,
UC_none, 0, 0, 0x000, tandem_key_siam},
{"MELDED AS COUPLES", concept_tandem, D, l_c4,
UC_none, 0, 0, 0x008, tandem_key_cpls},
{"MELDED TANDEM", concept_tandem, D, l_c4,
UC_none, 0, 0, 0x008, tandem_key_tand},
{"MELDED COUPLES TWOSOME", concept_tandem, D, l_c4,
UC_none, 0, 0, 0x018, tandem_key_cpls},
{"MELDED TANDEM TWOSOME", concept_tandem, D, l_c4,
UC_none, 0, 0, 0x018, tandem_key_tand},
{"MELDED COUPLES @9/@9 TWOSOME", concept_frac_tandem, D, l_c4,
UC_none, 0, 0, 0x028, tandem_key_cpls},
{"MELDED TANDEM @9/@9 TWOSOME", concept_frac_tandem, D, l_c4,
UC_none, 0, 0, 0x028, tandem_key_tand},
{"MELDED COUPLES TWOSOME @9/@9 SOLID", concept_frac_tandem, D, l_c4,
UC_none, 0, 0, 0x038, tandem_key_cpls},
{"MELDED TANDEM TWOSOME @9/@9 SOLID", concept_frac_tandem, D, l_c4,
UC_none, 0, 0, 0x038, tandem_key_tand},
{"MELDED PHANTOM AS COUPLES", concept_tandem, D, l_c4,
UC_none, 0, 0, 0x004, tandem_key_cpls},
{"MELDED PHANTOM TANDEM", concept_tandem, D, l_c4,
UC_none, 0, 0, 0x004, tandem_key_tand},
{"MELDED PHANTOM COUPLES TWOSOME", concept_tandem, D, l_c4,
UC_none, 0, 0, 0x014, tandem_key_cpls},
{"MELDED PHANTOM TANDEM TWOSOME", concept_tandem, D, l_c4,
UC_none, 0, 0, 0x014, tandem_key_tand},
{"MELDED PHANTOM COUPLES @9/@9 TWOSOME", concept_frac_tandem, D, l_c4,
UC_none, 0, 0, 0x024, tandem_key_cpls},
{"MELDED PHANTOM TANDEM @9/@9 TWOSOME", concept_frac_tandem, D, l_c4,
UC_none, 0, 0, 0x024, tandem_key_tand},
{"MELDED PHANTOM COUPLES TWOSOME @9/@9 SOLID", concept_frac_tandem, D, l_c4,
UC_none, 0, 0, 0x034, tandem_key_cpls},
{"MELDED PHANTOM TANDEM TWOSOME @9/@9 SOLID", concept_frac_tandem, D, l_c4,
UC_none, 0, 0, 0x034, tandem_key_tand},
// Same as MELDED SIAMESE; obsolete.
{"OVERLAPPED SIAMESE", concept_tandem, D, l_c4,
UC_none, 0, 0, 0x000, tandem_key_overlap_siam},
{"MELDED SIAMESE", concept_tandem, D, l_c4,
UC_none, 0, 0, 0x000, tandem_key_overlap_siam},
{"MELDED SIAMESE TWOSOME", concept_tandem, D, l_c4,
UC_none, 0, 0, 0x010, tandem_key_overlap_siam},
{"MELDED SIAMESE @9/@9 TWOSOME", concept_frac_tandem, D, l_c4,
UC_none, 0, 0, 0x020, tandem_key_overlap_siam},
{"MELDED SIAMESE TWOSOME @9/@9 SOLID", concept_frac_tandem, D, l_c4,
UC_none, 0, 0, 0x030, tandem_key_overlap_siam},
{"COUPLES OF 3", concept_tandem, D, l_a1,
UC_none, 0, 0, 0x000, tandem_key_cpls3},
{"TANDEMS OF 3", concept_tandem, D, l_c1,
UC_none, 0, 0, 0x000, tandem_key_tand3},
{"SIAMESE OF 3", concept_tandem, D, l_c1,
UC_none, 0, 0, 0x000, tandem_key_siam3},
{"COUPLES OF 4", concept_tandem, D, l_a1,
UC_none, 0, 0, 0x000, tandem_key_cpls4},
{"TANDEMS OF 4", concept_tandem, D, l_c1,
UC_none, 0, 0, 0x000, tandem_key_tand4},
{"SIAMESE OF 4", concept_tandem, D, l_c1,
UC_none, 0, 0, 0x000, tandem_key_siam4},
{"BOXES ARE SOLID", concept_tandem, F+D, l_c2,
UC_none, 0, 0, 0x000, tandem_key_box},
{"DIAMONDS ARE SOLID", concept_tandem, F+D, l_c2,
UC_none, 0, 0, 0x000, tandem_key_diamond},
{"Y's ARE SOLID", concept_tandem, F+D, l_c4,
UC_none, 0, 0, 0x000, tandem_key_ys},
{"SKEW", concept_tandem, D, l_c4a,
UC_none, 0, 0, 0x000, tandem_key_skew},
{"GRUESOME AS COUPLES", concept_gruesome_tandem, D, l_c4a,
UC_none, 0, CONCPROP__NEEDK_2X8, 0x002, tandem_key_cpls},
{"GRUESOME TANDEM", concept_gruesome_tandem, D, l_c4a,
UC_none, 0, CONCPROP__NEEDK_2X8, 0x002, tandem_key_tand},
{"@K ARE AS COUPLES", concept_some_are_tandem, F+D, l_a1,
UC_none, 0, 0, 0x100, tandem_key_cpls},
{"@K ARE TANDEM", concept_some_are_tandem, F+D, l_c1,
UC_none, 0, 0, 0x100, tandem_key_tand},
{"@K ARE COUPLES OF 3", concept_some_are_tandem, F+D, l_c1,
UC_none, 0, 0, 0x100, tandem_key_cpls3},
{"@K ARE TANDEMS OF 3", concept_some_are_tandem, F+D, l_c1,
UC_none, 0, 0, 0x100, tandem_key_tand3},
{"THE COUPLES ARE SOLID", concept_tandem, F+D, l_a1,
UC_none, 0, 0, 0x200, tandem_key_cpls},
{"THE TANDEMS ARE SOLID", concept_tandem, F+D, l_c1,
UC_none, 0, 0, 0x200, tandem_key_tand},
{"THE COUPLES OF 3 ARE SOLID", concept_tandem, F+D, l_c1,
UC_none, 0, 0, 0x200, tandem_key_cpls3},
{"THE TANDEMS OF 3 ARE SOLID", concept_tandem, F+D, l_c1,
UC_none, 0, 0, 0x200, tandem_key_tand3},
{"INSIDE TRIANGLES ARE SOLID", concept_tandem, F+D, l_c2,
UC_none, 0, 0, 0x000, tandem_key_inside_tgls},
{"OUTSIDE TRIANGLES ARE SOLID", concept_tandem, F+D, l_c2,
UC_none, 0, 0, 0x000, tandem_key_outside_tgls},
{"IN POINT TRIANGLES ARE SOLID", concept_tandem, F+D, l_c2,
UC_none, 0, 0, 0x000, tandem_key_inpoint_tgls},
{"OUT POINT TRIANGLES ARE SOLID", concept_tandem, F+D, l_c2,
UC_none, 0, 0, 0x000, tandem_key_outpoint_tgls},
{"WAVE-BASED TRIANGLES ARE SOLID", concept_tandem, F+D, l_c2,
UC_none, 0, 0, 0x000, tandem_key_wave_tgls},
{"TANDEM-BASED TRIANGLES ARE SOLID", concept_tandem, F+D, l_c2,
UC_none, 0, 0, 0x000, tandem_key_tand_tgls},
{"@k-BASED TRIANGLES ARE SOLID", concept_some_are_tandem, F+D, l_c2,
UC_none, 0, 0, 0x100, tandem_key_anyone_tgls},
{"3X1 TRIANGLES ARE SOLID", concept_tandem, F+D, l_c2,
UC_none, 0, 0, 0x000, tandem_key_3x1tgls},
{"COUPLES @9/@9 TWOSOME", concept_frac_tandem, D, l_c4,
UC_none, 0, 0, 0x020, tandem_key_cpls},
{"TANDEM @9/@9 TWOSOME", concept_frac_tandem, D, l_c4,
UC_none, 0, 0, 0x020, tandem_key_tand},
{"SIAMESE @9/@9 TWOSOME", concept_frac_tandem, D, l_c4,
UC_none, 0, 0, 0x020, tandem_key_siam},
{"COUPLES OF 3 @9/@9 THREESOME", concept_frac_tandem, D, l_c4,
UC_none, 0, 0, 0x020, tandem_key_cpls3},
{"TANDEMS OF 3 @9/@9 THREESOME", concept_frac_tandem, D, l_c4,
UC_none, 0, 0, 0x020, tandem_key_tand3},
{"SIAMESE OF 3 @9/@9 THREESOME", concept_frac_tandem, D, l_c4,
UC_none, 0, 0, 0x020, tandem_key_siam3},
{"COUPLES OF 4 @9/@9 FOURSOME", concept_frac_tandem, D, l_c4,
UC_none, 0, 0, 0x020, tandem_key_cpls4},
{"TANDEMS OF 4 @9/@9 FOURSOME", concept_frac_tandem, D, l_c4,
UC_none, 0, 0, 0x020, tandem_key_tand4},
{"SIAMESE OF 4 @9/@9 FOURSOME", concept_frac_tandem, D, l_c4,
UC_none, 0, 0, 0x020, tandem_key_siam4},
{"BOXES ARE SOLID @9/@9 BOXSOME", concept_frac_tandem, F+D, l_c4,
UC_none, 0, 0, 0x020, tandem_key_box},
{"DIAMONDS ARE SOLID @9/@9 DIAMONDSOME", concept_frac_tandem, F+D, l_c4,
UC_none, 0, 0, 0x020, tandem_key_diamond},
{"SKEW @9/@9 TWOSOME", concept_frac_tandem, D, l_c4,
UC_none, 0, 0, 0x020, tandem_key_skew},
{"SKEW @9/@9 SKEWSOME", concept_frac_tandem, D, l_c4,
UC_none, 0, 0, 0x020, tandem_key_skew}, // Either spelling.
{"GRUESOME AS COUPLES @9/@9 TWOSOME", concept_gruesome_frac_tandem, D, l_c4,
UC_none, 0, CONCPROP__NEEDK_2X8, 0x022, tandem_key_cpls},
{"GRUESOME TANDEM @9/@9 TWOSOME", concept_gruesome_frac_tandem, D, l_c4,
UC_none, 0, CONCPROP__NEEDK_2X8, 0x022, tandem_key_tand},
{"@K ARE COUPLES @9/@9 TWOSOME", concept_some_are_frac_tandem, F+D, l_c4,
UC_none, 0, 0, 0x120, tandem_key_cpls},
{"@K ARE TANDEM @9/@9 TWOSOME", concept_some_are_frac_tandem, F+D, l_c4,
UC_none, 0, 0, 0x120, tandem_key_tand},
{"@K ARE COUPLES OF 3 @9/@9 THREESOME", concept_some_are_frac_tandem, F+D, l_c4,
UC_none, 0, 0, 0x120, tandem_key_cpls3},
{"@K ARE TANDEMS OF 3 @9/@9 THREESOME", concept_some_are_frac_tandem, F+D, l_c4,
UC_none, 0, 0, 0x120, tandem_key_tand3},
{"THE COUPLES ARE SOLID @9/@9 TWOSOME", concept_frac_tandem, F+D, l_c4,
UC_none, 0, 0, 0x220, tandem_key_cpls},
{"THE TANDEMS ARE SOLID @9/@9 TWOSOME", concept_frac_tandem, F+D, l_c4,
UC_none, 0, 0, 0x220, tandem_key_tand},
{"THE COUPLES OF 3 ARE SOLID @9/@9 THREESOME", concept_frac_tandem, F+D, l_c4,
UC_none, 0, 0, 0x220, tandem_key_cpls3},
{"THE TANDEMS OF 3 ARE SOLID @9/@9 THREESOME", concept_frac_tandem, F+D, l_c4,
UC_none, 0, 0, 0x220, tandem_key_tand3},
{"INSIDE TRIANGLES ARE SOLID @9/@9 THREESOME",concept_frac_tandem, F+D, l_c4,
UC_none, 0, 0, 0x020, tandem_key_inside_tgls},
{"OUTSIDE TRIANGLES ARE SOLID @9/@9 THREESOME",concept_frac_tandem, F+D, l_c4,
UC_none, 0, 0, 0x020, tandem_key_outside_tgls},
{"IN POINT TRIANGLES ARE SOLID @9/@9 THREESOME",concept_frac_tandem, F+D, l_c4,
UC_none, 0, 0, 0x020, tandem_key_inpoint_tgls},
{"OUT POINT TRIANGLES ARE SOLID @9/@9 THREESOME",concept_frac_tandem, F+D, l_c4,
UC_none, 0, 0, 0x020, tandem_key_outpoint_tgls},
{"WAVE-BASED TRIANGLES ARE SOLID @9/@9 THREESOME",concept_frac_tandem, F+D, l_c4,
UC_none, 0, 0, 0x020, tandem_key_wave_tgls},
{"TANDEM-BASED TRIANGLES ARE SOLID @9/@9 THREESOME",concept_frac_tandem, F+D, l_c4,
UC_none, 0, 0, 0x020, tandem_key_tand_tgls},
{"@k-BASED TRIANGLES ARE SOLID @9/@9 THREESOME",concept_some_are_frac_tandem,F+D,l_c4,
UC_none, 0, 0, 0x120, tandem_key_anyone_tgls},
{"3X1 TRIANGLES ARE SOLID @9/@9 TRIANGLESOME",concept_frac_tandem, F+D, l_c4,
UC_none, 0, 0, 0x020, tandem_key_3x1tgls},
{"Y's ARE SOLID @9/@9 Y-SOME", concept_frac_tandem, F+D, l_c4,
UC_none, 0, 0, 0x020, tandem_key_ys},
{"COUPLES TWOSOME", concept_tandem, D, l_c3,
UC_cpl2s, 0, 0, 0x010, tandem_key_cpls},
{"TANDEM TWOSOME", concept_tandem, D, l_c3,
UC_tnd2s, 0, 0, 0x010, tandem_key_tand},
{"SIAMESE TWOSOME", concept_tandem, D, l_c3,
UC_none, 0, 0, 0x010, tandem_key_siam},
{"COUPLES THREESOME", concept_tandem, D, l_c3,
UC_none, 0, 0, 0x010, tandem_key_cpls3},
{"TANDEM THREESOME", concept_tandem, D, l_c3,
UC_none, 0, 0, 0x010, tandem_key_tand3},
{"SIAMESE THREESOME", concept_tandem, D, l_c3,
UC_none, 0, 0, 0x010, tandem_key_siam3},
{"COUPLES FOURSOME", concept_tandem, D, l_c3,
UC_none, 0, 0, 0x010, tandem_key_cpls4},
{"TANDEM FOURSOME", concept_tandem, D, l_c3,
UC_none, 0, 0, 0x010, tandem_key_tand4},
{"SIAMESE FOURSOME", concept_tandem, D, l_c3,
UC_none, 0, 0, 0x010, tandem_key_siam4},
{"BOXSOME", concept_tandem, F+D, l_c4a,
UC_none, 0, 0, 0x010, tandem_key_box},
{"DIAMONDSOME", concept_tandem, F+D, l_c4a,
UC_none, 0, 0, 0x010, tandem_key_diamond},
{"Y-SOME", concept_tandem, F+D, l_c4,
UC_none, 0, 0, 0x010, tandem_key_ys},
{"SKEWSOME", concept_tandem, D, l_c4a,
UC_none, 0, 0, 0x010, tandem_key_skew},
{"GRUESOME TWOSOME", concept_gruesome_tandem, D, l_c4a,
UC_none, 0, CONCPROP__NEEDK_2X8, 0x013, tandem_key_cpls},
{"GRUESOME COUPLES TWOSOME", concept_gruesome_tandem, D, l_c4a,
UC_none, 0, CONCPROP__NEEDK_2X8, 0x012, tandem_key_cpls},
{"GRUESOME TANDEM TWOSOME", concept_gruesome_tandem, D, l_c4a,
UC_none, 0, CONCPROP__NEEDK_2X8, 0x012, tandem_key_tand},
{"@K ARE COUPLES TWOSOME", concept_some_are_tandem, F+D, l_c3,
UC_none, 0, 0, 0x110, tandem_key_cpls},
{"@K ARE TANDEM TWOSOME", concept_some_are_tandem, F+D, l_c3,
UC_none, 0, 0, 0x110, tandem_key_tand},
{"@K ARE COUPLES THREESOME", concept_some_are_tandem, F+D, l_c3,
UC_none, 0, 0, 0x110, tandem_key_cpls3},
{"@K ARE TANDEM THREESOME", concept_some_are_tandem, F+D, l_c3,
UC_none, 0, 0, 0x110, tandem_key_tand3},
{"THE COUPLES ARE TWOSOME", concept_tandem, F+D, l_c3,
UC_none, 0, 0, 0x210, tandem_key_cpls},
{"THE TANDEMS ARE TWOSOME", concept_tandem, F+D, l_c3,
UC_none, 0, 0, 0x210, tandem_key_tand},
{"THE COUPLES OF 3 ARE THREESOME", concept_tandem, F+D, l_c3,
UC_none, 0, 0, 0x210, tandem_key_cpls3},
{"THE TANDEMS OF 3 ARE THREESOME", concept_tandem, F+D, l_c3,
UC_none, 0, 0, 0x210, tandem_key_tand3},
{"INSIDE TRIANGLES ARE THREESOME", concept_tandem, F+D, l_c4a,
UC_none, 0, 0, 0x010, tandem_key_inside_tgls},
{"OUTSIDE TRIANGLES ARE THREESOME", concept_tandem, F+D, l_c4a,
UC_none, 0, 0, 0x010, tandem_key_outside_tgls},
{"IN POINT TRIANGLES ARE THREESOME", concept_tandem, F+D, l_c4a,
UC_none, 0, 0, 0x010, tandem_key_inpoint_tgls},
{"OUT POINT TRIANGLES ARE THREESOME", concept_tandem, F+D, l_c4a,
UC_none, 0, 0, 0x010, tandem_key_outpoint_tgls},
{"WAVE-BASED TRIANGLES ARE THREESOME", concept_tandem, F+D, l_c4a,
UC_none, 0, 0, 0x010, tandem_key_wave_tgls},
{"TANDEM-BASED TRIANGLES ARE THREESOME", concept_tandem, F+D, l_c4a,
UC_none, 0, 0, 0x010, tandem_key_tand_tgls},
{"@k-BASED TRIANGLES ARE THREESOME", concept_some_are_tandem, F+D, l_c4a,
UC_none, 0, 0, 0x110, tandem_key_anyone_tgls},
{"3X1 TRIANGLES ARE TRIANGLESOME", concept_tandem, F+D, l_c4a,
UC_none, 0, 0, 0x010, tandem_key_3x1tgls},
{"COUPLES TWOSOME @9/@9 SOLID", concept_frac_tandem, D, l_c4,
UC_none, 0, 0, 0x030, tandem_key_cpls},
{"TANDEM TWOSOME @9/@9 SOLID", concept_frac_tandem, D, l_c4,
UC_none, 0, 0, 0x030, tandem_key_tand},
{"SIAMESE TWOSOME @9/@9 SOLID", concept_frac_tandem, D, l_c4,
UC_none, 0, 0, 0x030, tandem_key_siam},
{"COUPLES THREESOME @9/@9 SOLID", concept_frac_tandem, D, l_c4,
UC_none, 0, 0, 0x030, tandem_key_cpls3},
{"TANDEM THREESOME @9/@9 SOLID", concept_frac_tandem, D, l_c4,
UC_none, 0, 0, 0x030, tandem_key_tand3},
{"SIAMESE THREESOME @9/@9 SOLID", concept_frac_tandem, D, l_c4,
UC_none, 0, 0, 0x030, tandem_key_siam3},
{"COUPLES FOURSOME @9/@9 SOLID", concept_frac_tandem, D, l_c4,
UC_none, 0, 0, 0x030, tandem_key_cpls4},
{"TANDEM FOURSOME @9/@9 SOLID", concept_frac_tandem, D, l_c4,
UC_none, 0, 0, 0x030, tandem_key_tand4},
{"SIAMESE FOURSOME @9/@9 SOLID", concept_frac_tandem, D, l_c4,
UC_none, 0, 0, 0x030, tandem_key_siam4},
{"BOXSOME @9/@9 SOLID", concept_frac_tandem, F+D, l_c4,
UC_none, 0, 0, 0x030, tandem_key_box},
{"DIAMONDSOME @9/@9 SOLID", concept_frac_tandem, F+D, l_c4,
UC_none, 0, 0, 0x030, tandem_key_diamond},
{"SKEWSOME @9/@9 SOLID", concept_frac_tandem, D, l_c4,
UC_none, 0, 0, 0x030, tandem_key_skew},
{"GRUESOME TWOSOME @9/@9 SOLID", concept_gruesome_frac_tandem, D, l_c4,
UC_none, 0, CONCPROP__NEEDK_2X8, 0x032, tandem_key_cpls},
{"GRUESOME TANDEM TWOSOME @9/@9 SOLID", concept_gruesome_frac_tandem, D, l_c4,
UC_none, 0, CONCPROP__NEEDK_2X8, 0x032, tandem_key_tand},
{"@K ARE COUPLES TWOSOME @9/@9 SOLID", concept_some_are_frac_tandem, F+D, l_c4,
UC_none, 0, 0, 0x130, tandem_key_cpls},
{"@K ARE TANDEM TWOSOME @9/@9 SOLID", concept_some_are_frac_tandem, F+D, l_c4,
UC_none, 0, 0, 0x130, tandem_key_tand},
{"@K ARE COUPLES THREESOME @9/@9 SOLID", concept_some_are_frac_tandem, F+D, l_c4,
UC_none, 0, 0, 0x130, tandem_key_cpls3},
{"@K ARE TANDEM THREESOME @9/@9 SOLID", concept_some_are_frac_tandem, F+D, l_c4,
UC_none, 0, 0, 0x130, tandem_key_tand3},
{"THE COUPLES ARE TWOSOME @9/@9 SOLID", concept_frac_tandem, F+D, l_c4,
UC_none, 0, 0, 0x230, tandem_key_cpls},
{"THE TANDEMS ARE TWOSOME @9/@9 SOLID", concept_frac_tandem, F+D, l_c4,
UC_none, 0, 0, 0x230, tandem_key_tand},
{"THE COUPLES OF 3 ARE THREESOME @9/@9 SOLID", concept_frac_tandem, F+D, l_c4,
UC_none, 0, 0, 0x230, tandem_key_cpls3},
{"THE TANDEMS OF 3 ARE THREESOME @9/@9 SOLID", concept_frac_tandem, F+D, l_c4,
UC_none, 0, 0, 0x230, tandem_key_tand3},
{"INSIDE TRIANGLES ARE THREESOME @9/@9 SOLID", concept_frac_tandem, F+D, l_c4,
UC_none, 0, 0, 0x030, tandem_key_inside_tgls},
{"OUTSIDE TRIANGLES ARE THREESOME @9/@9 SOLID", concept_frac_tandem, F+D, l_c4,
UC_none, 0, 0, 0x030, tandem_key_outside_tgls},
{"IN POINT TRIANGLES ARE THREESOME @9/@9 SOLID", concept_frac_tandem, F+D, l_c4,
UC_none, 0, 0, 0x030, tandem_key_inpoint_tgls},
{"OUT POINT TRIANGLES ARE THREESOME @9/@9 SOLID", concept_frac_tandem, F+D, l_c4,
UC_none, 0, 0, 0x030, tandem_key_outpoint_tgls},
{"WAVE-BASED TRIANGLES ARE THREESOME @9/@9 SOLID",concept_frac_tandem, F+D, l_c4,
UC_none, 0, 0, 0x030, tandem_key_wave_tgls},
{"TANDEM-BASED TRIANGLES ARE THREESOME @9/@9 SOLID",concept_frac_tandem, F+D, l_c4,
UC_none, 0, 0, 0x030, tandem_key_tand_tgls},
{"@k-BASED TRIANGLES ARE THREESOME @9/@9 SOLID",concept_some_are_frac_tandem,F+D,l_c4,
UC_none, 0, 0, 0x130, tandem_key_anyone_tgls},
{"3X1 TRIANGLES ARE TRIANGLESOME @9/@9 SOLID", concept_frac_tandem, F+D, l_c4,
UC_none, 0, 0, 0x030, tandem_key_3x1tgls},
{"Y-SOME @9/@9 SOLID", concept_frac_tandem, F+D, l_c4,
UC_none, 0, 0, 0x030, tandem_key_ys},
{"COUPLES DYNAMIC", concept_tandem, D, l_c4a,
UC_none, 0, 0, 0x050, tandem_key_cpls},
{"TANDEM DYNAMIC", concept_tandem, D, l_c4a,
UC_none, 0, 0, 0x050, tandem_key_tand},
{"SIAMESE DYNAMIC", concept_tandem, D, l_c4a,
UC_none, 0, 0, 0x050, tandem_key_siam},
{"COUPLES OF 3 DYNAMIC", concept_tandem, D, l_c4a,
UC_none, 0, 0, 0x050, tandem_key_cpls3},
{"TANDEMS OF 3 DYNAMIC", concept_tandem, D, l_c4a,
UC_none, 0, 0, 0x050, tandem_key_tand3},
{"SIAMESE OF 3 DYNAMIC", concept_tandem, D, l_c4a,
UC_none, 0, 0, 0x050, tandem_key_siam3},
{"COUPLES OF 4 DYNAMIC", concept_tandem, D, l_c4a,
UC_none, 0, 0, 0x050, tandem_key_cpls4},
{"TANDEMS OF 4 DYNAMIC", concept_tandem, D, l_c4a,
UC_none, 0, 0, 0x050, tandem_key_tand4},
{"SIAMESE OF 4 DYNAMIC", concept_tandem, D, l_c4a,
UC_none, 0, 0, 0x050, tandem_key_siam4},
{"BOXES DYNAMIC", concept_tandem, D, l_c4a,
UC_none, 0, 0, 0x050, tandem_key_box},
{"DIAMONDS DYNAMIC", concept_tandem, D, l_c4a,
UC_none, 0, 0, 0x050, tandem_key_diamond},
{"Y's DYNAMIC", concept_tandem, D, l_c4,
UC_none, 0, 0, 0x050, tandem_key_ys},
{"SKEW DYNAMIC", concept_tandem, D, l_c4a,
UC_none, 0, 0, 0x050, tandem_key_skew},
{"GRUESOME DYNAMIC", concept_gruesome_tandem, D, l_c4a,
UC_none, 0, CONCPROP__NEEDK_2X8, 0x053, tandem_key_cpls},
{"GRUESOME COUPLES DYNAMIC", concept_gruesome_tandem, D, l_c4a,
UC_none, 0, CONCPROP__NEEDK_2X8, 0x052, tandem_key_cpls},
{"GRUESOME TANDEM DYNAMIC", concept_gruesome_tandem, D, l_c4a,
UC_none, 0, CONCPROP__NEEDK_2X8, 0x052, tandem_key_tand},
{"@K ARE COUPLES DYNAMIC", concept_some_are_tandem, F+D, l_c3,
UC_none, 0, 0, 0x150, tandem_key_cpls},
{"@K ARE TANDEM DYNAMIC", concept_some_are_tandem, F+D, l_c3,
UC_none, 0, 0, 0x150, tandem_key_tand},
{"@K ARE COUPLES OF 3 DYNAMIC", concept_some_are_tandem, F+D, l_c3,
UC_none, 0, 0, 0x150, tandem_key_cpls3},
{"@K ARE TANDEMS OF 3 DYNAMIC", concept_some_are_tandem, F+D, l_c3,
UC_none, 0, 0, 0x150, tandem_key_tand3},
{"INSIDE TRIANGLES ARE DYNAMIC", concept_tandem, F+D, l_c4a,
UC_none, 0, 0, 0x050, tandem_key_inside_tgls},
{"OUTSIDE TRIANGLES ARE DYNAMIC", concept_tandem, F+D, l_c4a,
UC_none, 0, 0, 0x050, tandem_key_outside_tgls},
{"IN POINT TRIANGLES ARE DYNAMIC", concept_tandem, F+D, l_c4a,
UC_none, 0, 0, 0x050, tandem_key_inpoint_tgls},
{"OUT POINT TRIANGLES ARE DYNAMIC", concept_tandem, F+D, l_c4a,
UC_none, 0, 0, 0x050, tandem_key_outpoint_tgls},
{"WAVE-BASED TRIANGLES ARE DYNAMIC", concept_tandem, F+D, l_c4a,
UC_none, 0, 0, 0x050, tandem_key_wave_tgls},
{"TANDEM-BASED TRIANGLES ARE DYNAMIC", concept_tandem, F+D, l_c4a,
UC_none, 0, 0, 0x050, tandem_key_tand_tgls},
{"@k-BASED TRIANGLES ARE DYNAMIC", concept_some_are_tandem, F+D, l_c4a,
UC_none, 0, 0, 0x150, tandem_key_anyone_tgls},
{"3X1 TRIANGLES ARE DYNAMIC", concept_tandem, F+D, l_c4a,
UC_none, 0, 0, 0x050, tandem_key_3x1tgls},
// ----------------------------------------------------------------------------------
{"COUPLES REVERSE DYNAMIC", concept_tandem, D, l_c4a,
UC_none, 0, 0, 0x090, tandem_key_cpls},
{"TANDEM REVERSE DYNAMIC", concept_tandem, D, l_c4a,
UC_none, 0, 0, 0x090, tandem_key_tand},
{"SIAMESE REVERSE DYNAMIC", concept_tandem, D, l_c4a,
UC_none, 0, 0, 0x090, tandem_key_siam},
{"COUPLES OF 3 REVERSE DYNAMIC", concept_tandem, D, l_c4a,
UC_none, 0, 0, 0x090, tandem_key_cpls3},
{"TANDEMS OF 3 REVERSE DYNAMIC", concept_tandem, D, l_c4a,
UC_none, 0, 0, 0x090, tandem_key_tand3},
{"SIAMESE OF 3 REVERSE DYNAMIC", concept_tandem, D, l_c4a,
UC_none, 0, 0, 0x090, tandem_key_siam3},
{"COUPLES OF 4 REVERSE DYNAMIC", concept_tandem, D, l_c4a,
UC_none, 0, 0, 0x090, tandem_key_cpls4},
{"TANDEMS OF 4 REVERSE DYNAMIC", concept_tandem, D, l_c4a,
UC_none, 0, 0, 0x090, tandem_key_tand4},
{"SIAMESE OF 4 REVERSE DYNAMIC", concept_tandem, D, l_c4a,
UC_none, 0, 0, 0x050, tandem_key_siam4},
{"BOXES REVERSE DYNAMIC", concept_tandem, D, l_c4a,
UC_none, 0, 0, 0x090, tandem_key_box},
{"DIAMONDS REVERSE DYNAMIC", concept_tandem, D, l_c4a,
UC_none, 0, 0, 0x090, tandem_key_diamond},
{"Y's REVERSE DYNAMIC", concept_tandem, D, l_c4,
UC_none, 0, 0, 0x090, tandem_key_ys},
{"SKEW REVERSE DYNAMIC", concept_tandem, D, l_c4a,
UC_none, 0, 0, 0x090, tandem_key_skew},
{"GRUESOME REVERSE DYNAMIC", concept_gruesome_tandem, D, l_c4a,
UC_none, 0, CONCPROP__NEEDK_2X8, 0x093, tandem_key_cpls},
{"GRUESOME COUPLES REVERSE DYNAMIC", concept_gruesome_tandem, D, l_c4a,
UC_none, 0, CONCPROP__NEEDK_2X8, 0x092, tandem_key_cpls},
{"GRUESOME TANDEM REVERSE DYNAMIC", concept_gruesome_tandem, D, l_c4a,
UC_none, 0, CONCPROP__NEEDK_2X8, 0x092, tandem_key_tand},
{"@K ARE COUPLES REVERSE DYNAMIC", concept_some_are_tandem, F+D, l_c3,
UC_none, 0, 0, 0x190, tandem_key_cpls},
{"@K ARE TANDEM REVERSE DYNAMIC", concept_some_are_tandem, F+D, l_c3,
UC_none, 0, 0, 0x190, tandem_key_tand},
{"@K ARE COUPLES OF 3 REVERSE DYNAMIC", concept_some_are_tandem, F+D, l_c3,
UC_none, 0, 0, 0x190, tandem_key_cpls3},
{"@K ARE TANDEMS OF 3 REVERSE DYNAMIC", concept_some_are_tandem, F+D, l_c3,
UC_none, 0, 0, 0x190, tandem_key_tand3},
{"INSIDE TRIANGLES ARE REVERSE DYNAMIC", concept_tandem, F+D, l_c4a,
UC_none, 0, 0, 0x090, tandem_key_inside_tgls},
{"OUTSIDE TRIANGLES ARE REVERSE DYNAMIC", concept_tandem, F+D, l_c4a,
UC_none, 0, 0, 0x090, tandem_key_outside_tgls},
{"IN POINT TRIANGLES ARE REVERSE DYNAMIC",concept_tandem, F+D, l_c4a,
UC_none, 0, 0, 0x090, tandem_key_inpoint_tgls},
{"OUT POINT TRIANGLES ARE REVERSE DYNAMIC",concept_tandem, F+D, l_c4a,
UC_none, 0, 0, 0x090, tandem_key_outpoint_tgls},
{"WAVE-BASED TRIANGLES ARE REVERSE DYNAMIC",concept_tandem, F+D, l_c4a,
UC_none, 0, 0, 0x090, tandem_key_wave_tgls},
{"TANDEM-BASED TRIANGLES ARE REVERSE DYNAMIC",concept_tandem, F+D, l_c4a,
UC_none, 0, 0, 0x090, tandem_key_tand_tgls},
{"@k-BASED TRIANGLES ARE REVERSE DYNAMIC",concept_some_are_tandem, F+D, l_c4a,
UC_none, 0, 0, 0x190, tandem_key_anyone_tgls},
{"3X1 TRIANGLES ARE REVERSE DYNAMIC", concept_tandem, F+D, l_c4a,
UC_none, 0, 0, 0x090, tandem_key_3x1tgls},
// Fractional solid -> dynamic.
{"COUPLES @9/@9 DYNAMIC", concept_frac_tandem, D, l_c4,
UC_none, 0, 0, 0x060, tandem_key_cpls},
{"TANDEM @9/@9 DYNAMIC", concept_frac_tandem, D, l_c4,
UC_none, 0, 0, 0x060, tandem_key_tand},
{"SIAMESE @9/@9 DYNAMIC", concept_frac_tandem, D, l_c4,
UC_none, 0, 0, 0x060, tandem_key_siam},
{"COUPLES OF 3 @9/@9 DYNAMIC", concept_frac_tandem, D, l_c4,
UC_none, 0, 0, 0x060, tandem_key_cpls3},
{"TANDEMS OF 3 @9/@9 DYNAMIC", concept_frac_tandem, D, l_c4,
UC_none, 0, 0, 0x060, tandem_key_tand3},
{"SIAMESE OF 3 @9/@9 DYNAMIC", concept_frac_tandem, D, l_c4,
UC_none, 0, 0, 0x060, tandem_key_siam3},
{"COUPLES OF 4 @9/@9 DYNAMIC", concept_frac_tandem, D, l_c4,
UC_none, 0, 0, 0x060, tandem_key_cpls4},
{"TANDEMS OF 4 @9/@9 DYNAMIC", concept_frac_tandem, D, l_c4,
UC_none, 0, 0, 0x060, tandem_key_tand4},
{"SIAMESE OF 4 @9/@9 DYNAMIC", concept_frac_tandem, D, l_c4,
UC_none, 0, 0, 0x060, tandem_key_siam4},
{"BOXES ARE SOLID @9/@9 DYNAMIC", concept_frac_tandem, F+D, l_c4,
UC_none, 0, 0, 0x060, tandem_key_box},
{"DIAMONDS ARE SOLID @9/@9 DYNAMIC", concept_frac_tandem, F+D, l_c4,
UC_none, 0, 0, 0x060, tandem_key_diamond},
{"Y's ARE SOLID @9/@9 DYNAMIC", concept_frac_tandem, F+D, l_c4,
UC_none, 0, 0, 0x060, tandem_key_ys},
{"SKEW @9/@9 DYNAMIC", concept_frac_tandem, D, l_c4,
UC_none, 0, 0, 0x060, tandem_key_skew},
{"GRUESOME AS COUPLES @9/@9 DYNAMIC", concept_gruesome_frac_tandem, D, l_c4,
UC_none, 0, CONCPROP__NEEDK_2X8, 0x062, tandem_key_cpls},
{"GRUESOME TANDEM @9/@9 DYNAMIC", concept_gruesome_frac_tandem, D, l_c4,
UC_none, 0, CONCPROP__NEEDK_2X8, 0x062, tandem_key_tand},
{"@K ARE COUPLES @9/@9 DYNAMIC", concept_some_are_frac_tandem, F+D, l_c4,
UC_none, 0, 0, 0x160, tandem_key_cpls},
{"@K ARE TANDEM @9/@9 DYNAMIC", concept_some_are_frac_tandem, F+D, l_c4,
UC_none, 0, 0, 0x160, tandem_key_tand},
{"@K ARE COUPLES OF 3 @9/@9 DYNAMIC", concept_some_are_frac_tandem, F+D, l_c4,
UC_none, 0, 0, 0x160, tandem_key_cpls3},
{"@K ARE TANDEMS OF 3 @9/@9 DYNAMIC", concept_some_are_frac_tandem, F+D, l_c4,
UC_none, 0, 0, 0x160, tandem_key_tand3},
{"INSIDE TRIANGLES ARE SOLID @9/@9 DYNAMIC",concept_frac_tandem, F+D, l_c4,
UC_none, 0, 0, 0x060, tandem_key_inside_tgls},
{"OUTSIDE TRIANGLES ARE SOLID @9/@9 DYNAMIC",concept_frac_tandem, F+D, l_c4,
UC_none, 0, 0, 0x060, tandem_key_outside_tgls},
{"IN POINT TRIANGLES ARE SOLID @9/@9 DYNAMIC",concept_frac_tandem, F+D, l_c4,
UC_none, 0, 0, 0x060, tandem_key_inpoint_tgls},
{"OUT POINT TRIANGLES ARE SOLID @9/@9 DYNAMIC",concept_frac_tandem, F+D, l_c4,
UC_none, 0, 0, 0x060, tandem_key_outpoint_tgls},
{"WAVE-BASED TRIANGLES ARE SOLID @9/@9 DYNAMIC",concept_frac_tandem, F+D, l_c4,
UC_none, 0, 0, 0x060, tandem_key_wave_tgls},
{"TANDEM-BASED TRIANGLES ARE SOLID @9/@9 DYNAMIC",concept_frac_tandem, F+D, l_c4,
UC_none, 0, 0, 0x060, tandem_key_tand_tgls},
{"@k-BASED TRIANGLES ARE SOLID @9/@9 DYNAMIC",concept_some_are_frac_tandem,F+D,l_c4,
UC_none, 0, 0, 0x160, tandem_key_anyone_tgls},
{"3X1 TRIANGLES ARE SOLID @9/@9 DYNAMIC", concept_frac_tandem, F+D, l_c4,
UC_none, 0, 0, 0x060, tandem_key_3x1tgls},
// ----------------------------------------------------------------------------------
{"COUPLES @9/@9 REVERSE DYNAMIC", concept_frac_tandem, D, l_c4,
UC_none, 0, 0, 0x0A0, tandem_key_cpls},
{"TANDEM @9/@9 REVERSE DYNAMIC", concept_frac_tandem, D, l_c4,
UC_none, 0, 0, 0x0A0, tandem_key_tand},
{"SIAMESE @9/@9 REVERSE DYNAMIC", concept_frac_tandem, D, l_c4,
UC_none, 0, 0, 0x0A0, tandem_key_siam},
{"COUPLES OF 3 @9/@9 REVERSE DYNAMIC", concept_frac_tandem, D, l_c4,
UC_none, 0, 0, 0x0A0, tandem_key_cpls3},
{"TANDEMS OF 3 @9/@9 REVERSE DYNAMIC", concept_frac_tandem, D, l_c4,
UC_none, 0, 0, 0x0A0, tandem_key_tand3},
{"SIAMESE OF 3 @9/@9 REVERSE DYNAMIC", concept_frac_tandem, D, l_c4,
UC_none, 0, 0, 0x0A0, tandem_key_siam3},
{"COUPLES OF 4 @9/@9 REVERSE DYNAMIC", concept_frac_tandem, D, l_c4,
UC_none, 0, 0, 0x0A0, tandem_key_cpls4},
{"TANDEMS OF 4 @9/@9 REVERSE DYNAMIC", concept_frac_tandem, D, l_c4,
UC_none, 0, 0, 0x0A0, tandem_key_tand4},
{"SIAMESE OF 4 @9/@9 REVERSE DYNAMIC", concept_frac_tandem, D, l_c4,
UC_none, 0, 0, 0x0A0, tandem_key_siam4},
{"BOXES ARE SOLID @9/@9 REVERSE DYNAMIC", concept_frac_tandem, F+D, l_c4,
UC_none, 0, 0, 0x0A0, tandem_key_box},
{"DIAMONDS ARE SOLID @9/@9 REVERSE DYNAMIC",concept_frac_tandem, F+D, l_c4,
UC_none, 0, 0, 0x0A0, tandem_key_diamond},
{"Y's ARE SOLID @9/@9 REVERSE DYNAMIC", concept_frac_tandem, F+D, l_c4,
UC_none, 0, 0, 0x0A0, tandem_key_ys},
{"SKEW @9/@9 REVERSE DYNAMIC", concept_frac_tandem, D, l_c4,
UC_none, 0, 0, 0x0A0, tandem_key_skew},
{"GRUESOME AS COUPLES @9/@9 REVERSE DYNAMIC",concept_gruesome_frac_tandem, D, l_c4,
UC_none, 0, CONCPROP__NEEDK_2X8, 0x0A2, tandem_key_cpls},
{"GRUESOME TANDEM @9/@9 REVERSE DYNAMIC", concept_gruesome_frac_tandem, D, l_c4,
UC_none, 0, CONCPROP__NEEDK_2X8, 0x0A2, tandem_key_tand},
{"@K ARE COUPLES @9/@9 REVERSE DYNAMIC", concept_some_are_frac_tandem, F+D, l_c4,
UC_none, 0, 0, 0x1A0, tandem_key_cpls},
{"@K ARE TANDEM @9/@9 REVERSE DYNAMIC", concept_some_are_frac_tandem, F+D, l_c4,
UC_none, 0, 0, 0x1A0, tandem_key_tand},
{"@K ARE COUPLES OF 3 @9/@9 REVERSE DYNAMIC",concept_some_are_frac_tandem,F+D,l_c4,
UC_none, 0, 0, 0x1A0, tandem_key_cpls3},
{"@K ARE TANDEMS OF 3 @9/@9 REVERSE DYNAMIC",concept_some_are_frac_tandem,F+D,l_c4,
UC_none, 0, 0, 0x1A0, tandem_key_tand3},
{"INSIDE TRIANGLES ARE SOLID @9/@9 REVERSE DYNAMIC",concept_frac_tandem, F+D, l_c4,
UC_none, 0, 0, 0x0A0, tandem_key_inside_tgls},
{"OUTSIDE TRIANGLES ARE SOLID @9/@9 REVERSE DYNAMIC",concept_frac_tandem, F+D,l_c4,
UC_none, 0, 0, 0x0A0, tandem_key_outside_tgls},
{"IN POINT TRIANGLES ARE SOLID @9/@9 REVERSE DYNAMIC",concept_frac_tandem,F+D,l_c4,
UC_none, 0, 0, 0x0A0, tandem_key_inpoint_tgls},
{"OUT POINT TRIANGLES ARE SOLID @9/@9 REVERSE DYNAMIC",concept_frac_tandem,F+D,l_c4,
UC_none, 0, 0, 0x0A0, tandem_key_outpoint_tgls},
{"WAVE-BASED TRIANGLES ARE SOLID @9/@9 REVERSE DYNAMIC",concept_frac_tandem,F+D,l_c4,
UC_none, 0, 0, 0x0A0, tandem_key_wave_tgls},
{"TANDEM-BASED TRIANGLES ARE SOLID @9/@9 REVERSE DYNAMIC",concept_frac_tandem,F+D,l_c4,
UC_none, 0, 0, 0x0A0, tandem_key_tand_tgls},
{"@k-BASED TRIANGLES ARE SOLID @9/@9 REVERSE DYNAMIC",concept_some_are_frac_tandem,F+D,l_c4,
UC_none, 0, 0, 0x1A0, tandem_key_anyone_tgls},
{"3X1 TRIANGLES ARE SOLID @9/@9 REVERSE DYNAMIC",concept_frac_tandem, F+D, l_c4,
UC_none, 0, 0, 0x0A0, tandem_key_3x1tgls},
// Fractional twosome -> dynamic.
{"COUPLES TWOSOME @9/@9 DYNAMIC", concept_frac_tandem, D, l_c4,
UC_none, 0, 0, 0x070, tandem_key_cpls},
{"TANDEM TWOSOME @9/@9 DYNAMIC", concept_frac_tandem, D, l_c4,
UC_none, 0, 0, 0x070, tandem_key_tand},
{"SIAMESE TWOSOME @9/@9 DYNAMIC", concept_frac_tandem, D, l_c4,
UC_none, 0, 0, 0x070, tandem_key_siam},
{"COUPLES THREESOME @9/@9 DYNAMIC",concept_frac_tandem, D, l_c4,
UC_none, 0, 0, 0x070, tandem_key_cpls3},
{"TANDEM THREESOME @9/@9 DYNAMIC", concept_frac_tandem, D, l_c4,
UC_none, 0, 0, 0x070, tandem_key_tand3},
{"SIAMESE THREESOME @9/@9 DYNAMIC",concept_frac_tandem, D, l_c4,
UC_none, 0, 0, 0x070, tandem_key_siam3},
{"COUPLES FOURSOME @9/@9 DYNAMIC", concept_frac_tandem, D, l_c4,
UC_none, 0, 0, 0x070, tandem_key_cpls4},
{"TANDEM FOURSOME @9/@9 DYNAMIC", concept_frac_tandem, D, l_c4,
UC_none, 0, 0, 0x070, tandem_key_tand4},
{"SIAMESE FOURSOME @9/@9 DYNAMIC", concept_frac_tandem, D, l_c4,
UC_none, 0, 0, 0x070, tandem_key_siam4},
{"BOXSOME @9/@9 DYNAMIC", concept_frac_tandem, F+D, l_c4,
UC_none, 0, 0, 0x070, tandem_key_box},
{"DIAMONDSOME @9/@9 DYNAMIC", concept_frac_tandem, F+D, l_c4,
UC_none, 0, 0, 0x070, tandem_key_diamond},
{"Y-SOME @9/@9 DYNAMIC", concept_frac_tandem, F+D, l_c4,
UC_none, 0, 0, 0x070, tandem_key_ys},
{"SKEWSOME @9/@9 DYNAMIC", concept_frac_tandem, D, l_c4,
UC_none, 0, 0, 0x070, tandem_key_skew},
{"GRUESOME COUPLES TWOSOME @9/@9 DYNAMIC",concept_gruesome_frac_tandem,D,l_c4,
UC_none, 0, CONCPROP__NEEDK_2X8, 0x072, tandem_key_cpls},
{"GRUESOME TANDEM TWOSOME @9/@9 DYNAMIC",concept_gruesome_frac_tandem,D,l_c4,
UC_none, 0, CONCPROP__NEEDK_2X8, 0x072, tandem_key_tand},
{"@K ARE COUPLES TWOSOME @9/@9 DYNAMIC",concept_some_are_frac_tandem,F+D,l_c4,
UC_none, 0, 0, 0x170, tandem_key_cpls},
{"@K ARE TANDEM TWOSOME @9/@9 DYNAMIC",concept_some_are_frac_tandem,F+D,l_c4,
UC_none, 0, 0, 0x170, tandem_key_tand},
{"@K ARE COUPLES THREESOME @9/@9 DYNAMIC",concept_some_are_frac_tandem,F+D,l_c4,
UC_none, 0, 0, 0x170, tandem_key_cpls3},
{"@K ARE TANDEM THREESOME @9/@9 DYNAMIC",concept_some_are_frac_tandem,F+D,l_c4,
UC_none, 0, 0, 0x170, tandem_key_tand3},
{"INSIDE TRIANGLES ARE THREESOME @9/@9 DYNAMIC",concept_frac_tandem,F+D,l_c4,
UC_none, 0, 0, 0x070, tandem_key_inside_tgls},
{"OUTSIDE TRIANGLES ARE THREESOME @9/@9 DYNAMIC",concept_frac_tandem,F+D,l_c4,
UC_none, 0, 0, 0x070, tandem_key_outside_tgls},
{"IN POINT TRIANGLES ARE THREESOME @9/@9 DYNAMIC",concept_frac_tandem,F+D,l_c4,
UC_none, 0, 0, 0x070, tandem_key_inpoint_tgls},
{"OUT POINT TRIANGLES ARE THREESOME @9/@9 DYNAMIC",concept_frac_tandem,F+D,l_c4,
UC_none, 0, 0, 0x070, tandem_key_outpoint_tgls},
{"WAVE-BASED TRIANGLES ARE THREESOME @9/@9 DYNAMIC",concept_frac_tandem,F+D,l_c4,
UC_none, 0, 0, 0x070, tandem_key_wave_tgls},
{"TANDEM-BASED TRIANGLES ARE THREESOME @9/@9 DYNAMIC",concept_frac_tandem,F+D,l_c4,
UC_none, 0, 0, 0x070, tandem_key_tand_tgls},
{"@k-BASED TRIANGLES ARE THREESOME @9/@9 DYNAMIC",concept_some_are_frac_tandem,F+D,l_c4,
UC_none, 0, 0, 0x170, tandem_key_anyone_tgls},
{"3X1 TRIANGLES ARE TRIANGLESOME @9/@9 DYNAMIC",concept_frac_tandem,F+D,l_c4,
UC_none, 0, 0, 0x070, tandem_key_3x1tgls},
// ----------------------------------------------------------------------------------
{"COUPLES TWOSOME @9/@9 REVERSE DYNAMIC", concept_frac_tandem, D, l_c4,
UC_none, 0, 0, 0x0B0, tandem_key_cpls},
{"TANDEM TWOSOME @9/@9 REVERSE DYNAMIC", concept_frac_tandem, D, l_c4,
UC_none, 0, 0, 0x0B0, tandem_key_tand},
{"SIAMESE TWOSOME @9/@9 REVERSE DYNAMIC", concept_frac_tandem, D, l_c4,
UC_none, 0, 0, 0x0B0, tandem_key_siam},
{"COUPLES THREESOME @9/@9 REVERSE DYNAMIC",concept_frac_tandem, D, l_c4,
UC_none, 0, 0, 0x0B0, tandem_key_cpls3},
{"TANDEM THREESOME @9/@9 REVERSE DYNAMIC",concept_frac_tandem, D, l_c4,
UC_none, 0, 0, 0x0B0, tandem_key_tand3},
{"SIAMESE THREESOME @9/@9 REVERSE DYNAMIC",concept_frac_tandem, D, l_c4,
UC_none, 0, 0, 0x0B0, tandem_key_siam3},
{"COUPLES FOURSOME @9/@9 REVERSE DYNAMIC",concept_frac_tandem, D, l_c4,
UC_none, 0, 0, 0x0B0, tandem_key_cpls4},
{"TANDEM FOURSOME @9/@9 REVERSE DYNAMIC", concept_frac_tandem, D, l_c4,
UC_none, 0, 0, 0x0B0, tandem_key_tand4},
{"SIAMESE FOURSOME @9/@9 REVERSE DYNAMIC",concept_frac_tandem, D, l_c4,
UC_none, 0, 0, 0x0B0, tandem_key_siam4},
{"BOXSOME @9/@9 REVERSE DYNAMIC", concept_frac_tandem, F+D, l_c4,
UC_none, 0, 0, 0x0B0, tandem_key_box},
{"DIAMONDSOME @9/@9 REVERSE DYNAMIC", concept_frac_tandem, F+D, l_c4,
UC_none, 0, 0, 0x0B0, tandem_key_diamond},
{"Y-SOME @9/@9 REVERSE DYNAMIC", concept_frac_tandem, F+D, l_c4,
UC_none, 0, 0, 0x0B0, tandem_key_ys},
{"SKEWSOME @9/@9 REVERSE DYNAMIC", concept_frac_tandem, D, l_c4,
UC_none, 0, 0, 0x0B0, tandem_key_skew},
{"GRUESOME COUPLES TWOSOME @9/@9 REVERSE DYNAMIC",concept_gruesome_frac_tandem,D,l_c4,
UC_none, 0, CONCPROP__NEEDK_2X8, 0x0B2, tandem_key_cpls},
{"GRUESOME TANDEM TWOSOME @9/@9 REVERSE DYNAMIC",concept_gruesome_frac_tandem,D,l_c4,
UC_none, 0, CONCPROP__NEEDK_2X8, 0x0B2, tandem_key_tand},
{"@K ARE COUPLES TWOSOME @9/@9 REVERSE DYNAMIC",concept_some_are_frac_tandem,F+D,l_c4,
UC_none, 0, 0, 0x1B0, tandem_key_cpls},
{"@K ARE TANDEM TWOSOME @9/@9 REVERSE DYNAMIC",concept_some_are_frac_tandem,F+D,l_c4,
UC_none, 0, 0, 0x1B0, tandem_key_tand},
{"@K ARE COUPLES THREESOME @9/@9 REVERSE DYNAMIC",concept_some_are_frac_tandem,F+D,l_c4,
UC_none, 0, 0, 0x1B0, tandem_key_cpls3},
{"@K ARE TANDEM THREESOME @9/@9 REVERSE DYNAMIC",concept_some_are_frac_tandem,F+D,l_c4,
UC_none, 0, 0, 0x1B0, tandem_key_tand3},
{"INSIDE TRIANGLES ARE THREESOME @9/@9 REVERSE DYNAMIC",concept_frac_tandem,F+D,l_c4,
UC_none, 0, 0, 0x0B0, tandem_key_inside_tgls},
{"OUTSIDE TRIANGLES ARE THREESOME @9/@9 REVERSE DYNAMIC",concept_frac_tandem,F+D,l_c4,
UC_none, 0, 0, 0x0B0, tandem_key_outside_tgls},
{"IN POINT TRIANGLES ARE THREESOME @9/@9 REVERSE DYNAMIC",concept_frac_tandem,F+D,l_c4,
UC_none, 0, 0, 0x0B0, tandem_key_inpoint_tgls},
{"OUT POINT TRIANGLES ARE THREESOME @9/@9 REVERSE DYNAMIC",concept_frac_tandem,F+D,l_c4,
UC_none, 0, 0, 0x0B0, tandem_key_outpoint_tgls},
{"WAVE-BASED TRIANGLES ARE THREESOME @9/@9 REVERSE DYNAMIC",concept_frac_tandem,F+D,l_c4,
UC_none, 0, 0, 0x0B0, tandem_key_wave_tgls},
{"TANDEM-BASED TRIANGLES ARE THREESOME @9/@9 REVERSE DYNAMIC",concept_frac_tandem,F+D,l_c4,
UC_none, 0, 0, 0x0B0, tandem_key_tand_tgls},
{"@k-BASED TRIANGLES ARE THREESOME @9/@9 REVERSE DYNAMIC",concept_some_are_frac_tandem,F+D,l_c4,
UC_none, 0, 0, 0x1B0, tandem_key_anyone_tgls},
{"3X1 TRIANGLES ARE TRIANGLESOME @9/@9 REVERSE DYNAMIC",concept_frac_tandem,F+D,l_c4,
UC_none, 0, 0, 0x0B0, tandem_key_3x1tgls},
{"SPLIT PHANTOM COLUMNS", concept_do_phantom_2x4, D, l_c3a,
UC_spc, phantest_impossible, 0, MPKIND__SPLIT, 0},
{"SPLIT PHANTOM LINES", concept_do_phantom_2x4, D, l_c3a,
UC_spl, phantest_impossible, 1, MPKIND__SPLIT, 0},
{"SPLIT PHANTOM WAVES", concept_do_phantom_2x4, D, l_c3a,
UC_spw, phantest_impossible, 3, MPKIND__SPLIT, 0},
{"SPLIT PHANTOM BOXES", concept_do_phantom_boxes, D, l_c3,
UC_spb, phantest_impossible, 0, MPKIND__SPLIT},
{"SPLIT PHANTOM DIAMONDS", concept_do_phantom_diamonds, D, l_c3,
UC_spd, phantest_impossible, CMD_MISC__VERIFY_DMD_LIKE, MPKIND__SPLIT},
{"SPLIT PHANTOM DIAMOND SPOTS", concept_do_phantom_diamonds, D, l_c3,
UC_spds, phantest_impossible, 0, MPKIND__SPLIT},
{"SPLIT PHANTOM 1/4 TAGS", concept_do_phantom_diamonds, D, l_c3,
UC_sp1, phantest_impossible, CMD_MISC__VERIFY_1_4_TAG, MPKIND__SPLIT},
{"SPLIT PHANTOM 3/4 TAGS", concept_do_phantom_diamonds, D, l_c3,
UC_sp3, phantest_impossible, CMD_MISC__VERIFY_3_4_TAG, MPKIND__SPLIT},
{"SPLIT PHANTOM 1/4 LINES", concept_do_phantom_diamonds, D, l_c3,
UC_none, phantest_impossible, CMD_MISC__VERIFY_REAL_1_4_LINE, MPKIND__SPLIT},
{"SPLIT PHANTOM 3/4 LINES", concept_do_phantom_diamonds, D, l_c3,
UC_none, phantest_impossible, CMD_MISC__VERIFY_REAL_3_4_LINE, MPKIND__SPLIT},
{"SPLIT PHANTOM GENERAL 1/4 TAGS", concept_do_phantom_diamonds, D, l_c3,
UC_spgt, phantest_impossible, CMD_MISC__VERIFY_QTAG_LIKE, MPKIND__SPLIT},
{"INTERLOCKED PHANTOM COLUMNS", concept_do_phantom_2x4, D, l_c4a,
UC_ipc, phantest_impossible, 0, MPKIND__INTLK, 0},
{"INTERLOCKED PHANTOM LINES", concept_do_phantom_2x4, D, l_c4a,
UC_ipl, phantest_impossible, 1, MPKIND__INTLK, 0},
{"INTERLOCKED PHANTOM WAVES", concept_do_phantom_2x4, D, l_c4a,
UC_ipw, phantest_impossible, 3, MPKIND__INTLK, 0},
{"INTERLOCKED PHANTOM BOXES", concept_do_phantom_boxes, D, l_c4,
UC_ipb, phantest_impossible, 0, MPKIND__INTLK},
{"INTERLOCKED PHANTOM DIAMONDS", concept_do_phantom_diamonds, D, l_c4,
UC_ipd, phantest_impossible, CMD_MISC__VERIFY_DMD_LIKE, MPKIND__INTLK},
{"INTERLOCKED PHANTOM DIAMOND SPOTS", concept_do_phantom_diamonds, D, l_c4,
UC_ipds, phantest_impossible, 0, MPKIND__INTLK},
{"INTERLOCKED PHANTOM 1/4 TAGS", concept_do_phantom_diamonds, D, l_c4,
UC_ip1, phantest_impossible, CMD_MISC__VERIFY_1_4_TAG, MPKIND__INTLK},
{"INTERLOCKED PHANTOM 3/4 TAGS", concept_do_phantom_diamonds, D, l_c4,
UC_ip3, phantest_impossible, CMD_MISC__VERIFY_3_4_TAG, MPKIND__INTLK},
{"INTERLOCKED PHANTOM 1/4 LINES", concept_do_phantom_diamonds, D, l_c4,
UC_none, phantest_impossible, CMD_MISC__VERIFY_REAL_1_4_LINE, MPKIND__INTLK},
{"INTERLOCKED PHANTOM 3/4 LINES", concept_do_phantom_diamonds, D, l_c4,
UC_none, phantest_impossible, CMD_MISC__VERIFY_REAL_3_4_LINE, MPKIND__INTLK},
{"INTERLOCKED PHANTOM GENERAL 1/4 TAGS", concept_do_phantom_diamonds, D, l_c4,
UC_ipgt, phantest_impossible, CMD_MISC__VERIFY_QTAG_LIKE, MPKIND__INTLK},
{"PHANTOM COLUMNS", concept_do_phantom_2x4, D, l_c3,
UC_pc, phantest_first_or_both, 0, MPKIND__CONCPHAN, 0},
{"PHANTOM LINES", concept_do_phantom_2x4, D, l_c3,
UC_pl, phantest_first_or_both, 1, MPKIND__CONCPHAN, 0},
{"PHANTOM WAVES", concept_do_phantom_2x4, D, l_c3,
UC_pw, phantest_first_or_both, 3, MPKIND__CONCPHAN, 0},
{"PHANTOM BOXES", concept_do_phantom_boxes, D, l_c4a,
UC_pb, phantest_first_or_both, 0, MPKIND__CONCPHAN},
{"PHANTOM DIAMONDS", concept_do_phantom_diamonds, D, l_c4,
UC_pd, phantest_first_or_both, CMD_MISC__VERIFY_DMD_LIKE, MPKIND__CONCPHAN},
{"PHANTOM DIAMOND SPOTS", concept_do_phantom_diamonds, D, l_c4,
UC_pds, phantest_first_or_both, 0, MPKIND__CONCPHAN},
{"PHANTOM 1/4 TAGS", concept_do_phantom_diamonds, D, l_c4,
UC_p1, phantest_first_or_both, CMD_MISC__VERIFY_1_4_TAG, MPKIND__CONCPHAN},
{"PHANTOM 3/4 TAGS", concept_do_phantom_diamonds, D, l_c4,
UC_p3, phantest_first_or_both, CMD_MISC__VERIFY_3_4_TAG, MPKIND__CONCPHAN},
{"PHANTOM 1/4 LINES", concept_do_phantom_diamonds, D, l_c4,
UC_none, phantest_first_or_both, CMD_MISC__VERIFY_REAL_1_4_LINE, MPKIND__CONCPHAN},
{"PHANTOM 3/4 LINES", concept_do_phantom_diamonds, D, l_c4,
UC_none, phantest_first_or_both, CMD_MISC__VERIFY_REAL_3_4_LINE, MPKIND__CONCPHAN},
{"PHANTOM GENERAL 1/4 TAGS", concept_do_phantom_diamonds, D, l_c4,
UC_pgt, phantest_first_or_both, CMD_MISC__VERIFY_QTAG_LIKE, MPKIND__CONCPHAN},
{"12 MATRIX SPLIT PHANTOM COLUMNS", concept_triple_twin_nomystic, D, l_c3x,
UC_none, 0, CONCPROP__NEEDK_3X4, 8, phantest_impossible, MPKIND__SPLIT},
{"12 MATRIX SPLIT PHANTOM LINES", concept_triple_twin_nomystic, D, l_c3x,
UC_none, 1, CONCPROP__NEEDK_3X4, 8, phantest_impossible, MPKIND__SPLIT},
{"12 MATRIX INTERLOCKED PHANTOM COLUMNS", concept_triple_twin_nomystic, D, l_c3x,
UC_none, 0, CONCPROP__NEEDK_3X4, 8, phantest_impossible, MPKIND__INTLK},
{"12 MATRIX INTERLOCKED PHANTOM LINES", concept_triple_twin_nomystic, D, l_c3x,
UC_none, 1, CONCPROP__NEEDK_3X4, 8, phantest_impossible, MPKIND__INTLK},
{"12 MATRIX PHANTOM COLUMNS", concept_triple_twin_nomystic, D, l_c3x,
UC_none, 0, CONCPROP__NEEDK_3X4, 8, phantest_first_or_both, MPKIND__CONCPHAN},
{"12 MATRIX PHANTOM LINES", concept_triple_twin_nomystic, D, l_c3x,
UC_none, 1, CONCPROP__NEEDK_3X4, 8, phantest_first_or_both, MPKIND__CONCPHAN},
{"SPLIT PHANTOM COLUMNS OF 6", concept_triple_twin, D, l_c3x,
UC_none, 0, CONCPROP__NEEDK_4X6, 3, phantest_ok, MPKIND__SPLIT},
{"SPLIT PHANTOM LINES OF 6", concept_triple_twin, D, l_c3x,
UC_none, 1, CONCPROP__NEEDK_4X6, 3, phantest_ok, MPKIND__SPLIT},
{"SPLIT PHANTOM WAVES OF 6", concept_triple_twin, D, l_c3x,
UC_none, 3, CONCPROP__NEEDK_4X6, 3, phantest_ok, MPKIND__SPLIT},
{"INTERLOCKED PHANTOM COLUMNS OF 6", concept_triple_twin, D, l_c3x,
UC_none, 0, CONCPROP__NEEDK_4X6, 3, phantest_ok, MPKIND__INTLK},
{"INTERLOCKED PHANTOM LINES OF 6", concept_triple_twin, D, l_c3x,
UC_none, 1, CONCPROP__NEEDK_4X6, 3, phantest_ok, MPKIND__INTLK},
{"INTERLOCKED PHANTOM WAVES OF 6", concept_triple_twin, D, l_c3x,
UC_none, 3, CONCPROP__NEEDK_4X6, 3, phantest_ok, MPKIND__INTLK},
{"PHANTOM COLUMNS OF 6", concept_triple_twin, D, l_c3x,
UC_none, 0, CONCPROP__NEEDK_4X6, 3, phantest_ok, MPKIND__CONCPHAN},
{"PHANTOM LINES OF 6", concept_triple_twin, D, l_c3x,
UC_none, 1, CONCPROP__NEEDK_4X6, 3, phantest_ok, MPKIND__CONCPHAN},
{"PHANTOM WAVES OF 6", concept_triple_twin, D, l_c3x,
UC_none, 3, CONCPROP__NEEDK_4X6, 3, phantest_ok, MPKIND__CONCPHAN},
{"DIVIDED COLUMNS", concept_triple_twin_nomystic, D, l_c4,
UC_none, 0, CONCPROP__NEEDK_2X8, 10, phantest_impossible},
{"DIVIDED LINES", concept_triple_twin_nomystic, D, l_c4,
UC_none, 1, CONCPROP__NEEDK_2X8, 10, phantest_impossible},
{"DIVIDED WAVES", concept_triple_twin_nomystic, D, l_c4,
UC_none, 3, CONCPROP__NEEDK_2X8, 10, phantest_impossible},
{"12 MATRIX DIVIDED COLUMNS", concept_triple_twin_nomystic, D, l_c4,
UC_none, 0, CONCPROP__NEEDK_2X6, 9, phantest_impossible},
{"12 MATRIX DIVIDED LINES", concept_triple_twin_nomystic, D, l_c4,
UC_none, 1, CONCPROP__NEEDK_2X6, 9, phantest_impossible},
{"12 MATRIX DIVIDED WAVES", concept_triple_twin_nomystic, D, l_c4,
UC_none, 3, CONCPROP__NEEDK_2X6, 9, phantest_impossible},
{"TWIN PHANTOM TIDAL COLUMNS", concept_triple_twin_nomystic, D, l_c3,
UC_pc8, 0, CONCPROP__NEEDK_2X8, 7, phantest_impossible},
{"TWIN PHANTOM TIDAL LINES", concept_triple_twin_nomystic, D, l_c3,
UC_pl8, 1, CONCPROP__NEEDK_2X8, 7, phantest_impossible},
{"TWIN PHANTOM TIDAL WAVES", concept_triple_twin_nomystic, D, l_c3,
UC_none, 3, CONCPROP__NEEDK_2X8, 7, phantest_impossible},
{"TWIN PHANTOM COLUMNS OF 6", concept_triple_twin_nomystic, D, l_c3,
UC_pc6, 0, CONCPROP__NEEDK_2X6, 6, phantest_impossible},
{"TWIN PHANTOM LINES OF 6", concept_triple_twin_nomystic, D, l_c3,
UC_pl6, 1, CONCPROP__NEEDK_2X6, 6, phantest_impossible},
{"TWIN PHANTOM WAVES OF 6", concept_triple_twin_nomystic, D, l_c3,
UC_none, 3, CONCPROP__NEEDK_2X6, 6, phantest_impossible},
{"TRIPLE COLUMNS", concept_multiple_lines, D, l_c1,
UC_tc, 0, CONCPROP__NEEDK_TRIPLE_1X4, 0, 3, MPKIND__SPLIT},
{"TRIPLE LINES", concept_multiple_lines, D, l_c1,
UC_tl, 1, CONCPROP__NEEDK_TRIPLE_1X4, 0, 3, MPKIND__SPLIT},
{"TRIPLE WAVES", concept_multiple_lines, D, l_c1,
UC_none, 3, CONCPROP__NEEDK_TRIPLE_1X4, 0, 3, MPKIND__SPLIT},
{"TRIPLE BOXES", concept_multiple_boxes, D, l_c1,
UC_tb, 0, CONCPROP__NEEDK_2X6, 0, 3, MPKIND__SPLIT},
{"TRIPLE DIAMONDS", concept_multiple_diamonds, D, l_c3a,
UC_td, 0, CONCPROP__NEEDK_3DMD, CMD_MISC__VERIFY_DMD_LIKE, 3, MPKIND__SPLIT},
{"TRIPLE DIAMOND SPOTS", concept_multiple_diamonds, D, l_c3a,
UC_none, 0, CONCPROP__NEEDK_3DMD, 0, 3, MPKIND__SPLIT},
{"TRIPLE 1/4 TAGS", concept_multiple_diamonds, D, l_c3x,
UC_none, 0, CONCPROP__NEEDK_3DMD, CMD_MISC__VERIFY_1_4_TAG, 3, MPKIND__SPLIT},
{"TRIPLE 3/4 TAGS", concept_multiple_diamonds, D, l_c3x,
UC_none, 0, CONCPROP__NEEDK_3DMD, CMD_MISC__VERIFY_3_4_TAG, 3, MPKIND__SPLIT},
{"TRIPLE 1/4 LINES", concept_multiple_diamonds, D, l_c3x,
UC_none, 0, CONCPROP__NEEDK_3DMD, CMD_MISC__VERIFY_REAL_1_4_LINE, 3, MPKIND__SPLIT},
{"TRIPLE 3/4 LINES", concept_multiple_diamonds, D, l_c3x,
UC_none, 0, CONCPROP__NEEDK_3DMD, CMD_MISC__VERIFY_REAL_3_4_LINE, 3, MPKIND__SPLIT},
{"TRIPLE GENERAL 1/4 TAGS", concept_multiple_diamonds, D, l_c3x,
UC_none, 0, CONCPROP__NEEDK_3DMD, CMD_MISC__VERIFY_QTAG_LIKE, 3, MPKIND__SPLIT},
{"TRIPLE LINES OR BOXES", concept_multiple_formations, D, l_c3a,
UC_none, 0, 0, 0, 3, MPKIND__SPLIT},
{"TRIPLE BOXES OR LINES", concept_multiple_formations, D, l_c3a,
UC_none, 0, 0, 0, 3, MPKIND__SPLIT},
{"TRIPLE LINES OR DIAMONDS", concept_multiple_formations, D, l_c3a,
UC_none, 0, 0, 1, 3, MPKIND__SPLIT},
{"TRIPLE DIAMONDS OR LINES", concept_multiple_formations, D, l_c3a,
UC_none, 0, 0, 1, 3, MPKIND__SPLIT},
{"TRIPLE BOXES OR DIAMONDS", concept_multiple_formations, D, l_c3a,
UC_none, 0, 0, 2, 3, MPKIND__SPLIT},
{"TRIPLE DIAMONDS OR BOXES", concept_multiple_formations, D, l_c3a,
UC_none, 0, 0, 2, 3, MPKIND__SPLIT},
{"TRIPLE Z's", concept_misc_distort_matrix, D, l_c4,
UC_none, 0, CONCPROP__NEEDK_3X6, 0, 3},
{"TRIPLE 1X4s", concept_multiple_lines, D, l_c3,
UC_none, 2, CONCPROP__NEEDK_TRIPLE_1X4, 0, 3, MPKIND__SPLIT},
{"TRIPLE COLUMNS OF 6", concept_triple_twin_nomystic, D, l_c3x,
UC_none, 0, CONCPROP__NEEDK_3X6, 1, phantest_ok},
{"TRIPLE LINES OF 6", concept_triple_twin_nomystic, D, l_c3x,
UC_none, 1, CONCPROP__NEEDK_3X6, 1, phantest_ok},
{"TRIPLE WAVES OF 6", concept_triple_twin_nomystic, D, l_c3x,
UC_none, 3, CONCPROP__NEEDK_3X6, 1, phantest_ok},
{"TRIPLE TIDAL COLUMNS", concept_triple_twin_nomystic, D, l_c3,
UC_none, 0, CONCPROP__NEEDK_3X8, 5, phantest_impossible},
{"TRIPLE TIDAL LINES", concept_triple_twin_nomystic, D, l_c3,
UC_none, 1, CONCPROP__NEEDK_3X8, 5, phantest_impossible},
{"TRIPLE TIDAL WAVES", concept_triple_twin_nomystic, D, l_c3,
UC_none, 3, CONCPROP__NEEDK_3X8, 5, phantest_impossible},
{"TRIPLE DIAGONAL COLUMNS", concept_triple_diag, D, l_c4,
UC_none, 0},
{"TRIPLE DIAGONAL LINES", concept_triple_diag, D, l_c4,
UC_none, 1},
{"TRIPLE DIAGONAL WAVES", concept_triple_diag, D, l_c4,
UC_none, 3},
{"TRIPLE TWIN COLUMNS", concept_triple_twin, D, l_c4a,
UC_trtc, 0, CONCPROP__NEEDK_4X6, 0, phantest_not_just_centers},
{"TRIPLE TWIN LINES", concept_triple_twin, D, l_c4a,
UC_trtl, 1, CONCPROP__NEEDK_4X6, 0, phantest_not_just_centers},
{"TRIPLE TWIN WAVES", concept_triple_twin, D, l_c4a,
UC_none, 3, CONCPROP__NEEDK_4X6, 0, phantest_not_just_centers},
{"TRIPLE TWIN COLUMNS OF 3", concept_triple_twin, D, l_c4a,
UC_none, 0, CONCPROP__NEEDK_3X6, 4, phantest_not_just_centers},
{"TRIPLE TWIN LINES OF 3", concept_triple_twin, D, l_c4a,
UC_none, 1, CONCPROP__NEEDK_3X6, 4, phantest_not_just_centers},
{"TRIPLE TWIN WAVES OF 3", concept_triple_twin, D, l_c4a,
UC_none, 3, CONCPROP__NEEDK_3X6, 4, phantest_not_just_centers},
{"TRIPLE STAGGERED BOXES", concept_misc_distort, D, l_c4,
UC_none, 7, CONCPROP__NEEDK_2X12, 0},
{"QUADRUPLE COLUMNS", concept_multiple_lines, D, l_c4a,
UC_none, 0, CONCPROP__NEEDK_QUAD_1X4, 0, 4, MPKIND__SPLIT},
{"QUADRUPLE LINES", concept_multiple_lines, D, l_c4a,
UC_none, 1, CONCPROP__NEEDK_QUAD_1X4, 0, 4, MPKIND__SPLIT},
{"QUADRUPLE WAVES", concept_multiple_lines, D, l_c4a,
UC_none, 3, CONCPROP__NEEDK_QUAD_1X4, 0, 4, MPKIND__SPLIT},
{"QUADRUPLE BOXES", concept_multiple_boxes, D, l_c4a,
UC_none, 0, CONCPROP__NEEDK_2X8, 0, 4, MPKIND__SPLIT},
{"QUADRUPLE DIAMONDS", concept_multiple_diamonds, D, l_c4a,
UC_qd, 0, CONCPROP__NEEDK_4D_4PTPD, CMD_MISC__VERIFY_DMD_LIKE, 4},
{"QUADRUPLE DIAMOND SPOTS", concept_multiple_diamonds, D, l_c4a,
UC_none, 0, CONCPROP__NEEDK_4D_4PTPD, 0, 4},
{"QUADRUPLE 1/4 TAGS", concept_multiple_diamonds, D, l_c4a,
UC_none, 0, CONCPROP__NEEDK_4D_4PTPD, CMD_MISC__VERIFY_1_4_TAG, 4},
{"QUADRUPLE 3/4 TAGS", concept_multiple_diamonds, D, l_c4a,
UC_none, 0, CONCPROP__NEEDK_4D_4PTPD, CMD_MISC__VERIFY_3_4_TAG, 4},
{"QUADRUPLE 1/4 LINES", concept_multiple_diamonds, D, l_c4a,
UC_none, 0, CONCPROP__NEEDK_4D_4PTPD, CMD_MISC__VERIFY_REAL_1_4_LINE, 4},
{"QUADRUPLE 3/4 LINES", concept_multiple_diamonds, D, l_c4a,
UC_none, 0, CONCPROP__NEEDK_4D_4PTPD, CMD_MISC__VERIFY_REAL_3_4_LINE, 4},
{"QUADRUPLE GENERAL 1/4 TAGS", concept_multiple_diamonds, D, l_c4a,
UC_none, 0, CONCPROP__NEEDK_4D_4PTPD, CMD_MISC__VERIFY_QTAG_LIKE, 4},
{"QUADRUPLE COLUMNS OF 3", concept_multiple_lines, D, l_c4a,
UC_none, 0, CONCPROP__NEEDK_QUAD_1X3, 1, 4, MPKIND__SPLIT},
{"QUADRUPLE LINES OF 3", concept_multiple_lines, D, l_c4a,
UC_none, 1, CONCPROP__NEEDK_QUAD_1X3, 1, 4, MPKIND__SPLIT},
{"QUADRUPLE WAVES OF 3", concept_multiple_lines, D, l_c4a,
UC_none, 3, CONCPROP__NEEDK_QUAD_1X3, 1, 4, MPKIND__SPLIT},
{"QUADRUPLE COLUMNS OF 6", concept_triple_twin, D, l_c3x,
UC_none, 0, CONCPROP__NEEDK_4X6, 2, phantest_ok},
{"QUADRUPLE LINES OF 6", concept_triple_twin, D, l_c3x,
UC_none, 1, CONCPROP__NEEDK_4X6, 2, phantest_ok},
{"QUADRUPLE WAVES OF 6", concept_triple_twin, D, l_c3x,
UC_none, 3, CONCPROP__NEEDK_4X6, 2, phantest_ok},
{"QUINTUPLE COLUMNS", concept_multiple_lines, D, l_c4a,
UC_none, 0, CONCPROP__NEEDK_4X5, 0, 5, MPKIND__SPLIT},
{"QUINTUPLE LINES", concept_multiple_lines, D, l_c4a,
UC_none, 1, CONCPROP__NEEDK_4X5, 0, 5, MPKIND__SPLIT},
{"QUINTUPLE WAVES", concept_multiple_lines, D, l_c4a,
UC_none, 3, CONCPROP__NEEDK_4X5, 0, 5, MPKIND__SPLIT},
{"QUINTUPLE 1X4s", concept_multiple_lines, D, l_c4a,
UC_none, 2, CONCPROP__NEEDK_4X5, 0, 5, MPKIND__SPLIT},