-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy paththird_move_all_solutions_all.sh
7770 lines (7770 loc) · 257 KB
/
third_move_all_solutions_all.sh
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
./problem_comb.sh h8_a1_i9_a10 j10
./problem_comb.sh h8_a1_i9_a11 j10
./problem_comb.sh h8_a1_i9_a12 j10
./problem_comb.sh h8_a1_i9_a13 j10
./problem_comb.sh h8_a1_i9_a14 j10
./problem_comb.sh h8_a1_i9_a15 j10
./problem_comb.sh h8_a1_i9_a2 j10
./problem_comb.sh h8_a1_i9_a3 j10
./problem_comb.sh h8_a1_i9_a4 j10
./problem_comb.sh h8_a1_i9_a5 j10
./problem_comb.sh h8_a1_i9_a6 j10
./problem_comb.sh h8_a1_i9_a7 g7
./problem_comb.sh h8_a1_i9_a8 j10
./problem_comb.sh h8_a1_i9_a9 j10
./problem_comb.sh h8_a1_i9_b1 j10
./problem_comb.sh h8_a1_i9_b10 g7
./problem_comb.sh h8_a1_i9_b11 g7
./problem_comb.sh h8_a1_i9_b12 g7
./problem_comb.sh h8_a1_i9_b13 g7
./problem_comb.sh h8_a1_i9_b14 j10
./problem_comb.sh h8_a1_i9_b15 j10
./problem_comb.sh h8_a1_i9_b2 j10
./problem_comb.sh h8_a1_i9_b3 j10
./problem_comb.sh h8_a1_i9_b4 g7
./problem_comb.sh h8_a1_i9_b5 g7
./problem_comb.sh h8_a1_i9_b6 j10
./problem_comb.sh h8_a1_i9_b7 g7
./problem_comb.sh h8_a1_i9_b8 g7
./problem_comb.sh h8_a1_i9_b9 g7
./problem_comb.sh h8_a1_i9_c1 j10
./problem_comb.sh h8_a1_i9_c10 g7
./problem_comb.sh h8_a1_i9_c11 g9
./problem_comb.sh h8_a1_i9_c12 g7
./problem_comb.sh h8_a1_i9_c13 j10
./problem_comb.sh h8_a1_i9_c14 j10
./problem_comb.sh h8_a1_i9_c15 j10
./problem_comb.sh h8_a1_i9_c2 j10
./problem_comb.sh h8_a1_i9_c3 g7
./problem_comb.sh h8_a1_i9_c4 j10
./problem_comb.sh h8_a1_i9_c5 g7
./problem_comb.sh h8_a1_i9_c6 j10
./problem_comb.sh h8_a1_i9_c7 g7
./problem_comb.sh h8_a1_i9_c8 g7
./problem_comb.sh h8_a1_i9_c9 j10
./problem_comb.sh h8_a1_i9_d1 j10
./problem_comb.sh h8_a1_i9_d10 g7
./problem_comb.sh h8_a1_i9_d11 j10
./problem_comb.sh h8_a1_i9_d12 g7
./problem_comb.sh h8_a1_i9_d13 g7
./problem_comb.sh h8_a1_i9_d14 g7
./problem_comb.sh h8_a1_i9_d15 j10
./problem_comb.sh h8_a1_i9_d2 g7
./problem_comb.sh h8_a1_i9_d3 j10
./problem_comb.sh h8_a1_i9_d4 g7
./problem_comb.sh h8_a1_i9_d5 j10
./problem_comb.sh h8_a1_i9_d6 j10
./problem_comb.sh h8_a1_i9_d7 g7
./problem_comb.sh h8_a1_i9_d8 j10
./problem_comb.sh h8_a1_i9_d9 j10
./problem_comb.sh h8_a1_i9_e1 g7
./problem_comb.sh h8_a1_i9_e10 g7
./problem_comb.sh h8_a1_i9_e11 g7
./problem_comb.sh h8_a1_i9_e12 j10
./problem_comb.sh h8_a1_i9_e13 j10
./problem_comb.sh h8_a1_i9_e14 j10
./problem_comb.sh h8_a1_i9_e15 j10
./problem_comb.sh h8_a1_i9_e2 j10
./problem_comb.sh h8_a1_i9_e3 g7
./problem_comb.sh h8_a1_i9_e4 g7
./problem_comb.sh h8_a1_i9_e5 j10
./problem_comb.sh h8_a1_i9_e6 j10
./problem_comb.sh h8_a1_i9_e7 g9
./problem_comb.sh h8_a1_i9_e8 j10
./problem_comb.sh h8_a1_i9_e9 g7
./problem_comb.sh h8_a1_i9_f1 j10
./problem_comb.sh h8_a1_i9_f10 j10
./problem_comb.sh h8_a1_i9_f11 j10
./problem_comb.sh h8_a1_i9_f12 j10
./problem_comb.sh h8_a1_i9_f13 g7
./problem_comb.sh h8_a1_i9_f14 h10
./problem_comb.sh h8_a1_i9_f15 j10
./problem_comb.sh h8_a1_i9_f2 j10
./problem_comb.sh h8_a1_i9_f3 j10
./problem_comb.sh h8_a1_i9_f4 j10
./problem_comb.sh h8_a1_i9_f5 j10
./problem_comb.sh h8_a1_i9_f6 i10
./problem_comb.sh h8_a1_i9_f7 h10
./problem_comb.sh h8_a1_i9_f8 h10
./problem_comb.sh h8_a1_i9_f9 j10
./problem_comb.sh h8_a1_i9_g1 g7
./problem_comb.sh h8_a1_i9_g10 h9
./problem_comb.sh h8_a1_i9_g11 g9
./problem_comb.sh h8_a1_i9_g12 j10
./problem_comb.sh h8_a1_i9_g13 j10
./problem_comb.sh h8_a1_i9_g14 j10
./problem_comb.sh h8_a1_i9_g15 j10
./problem_comb.sh h8_a1_i9_g2 g7
./problem_comb.sh h8_a1_i9_g3 g7
./problem_comb.sh h8_a1_i9_g4 g7
./problem_comb.sh h8_a1_i9_g5 i7
./problem_comb.sh h8_a1_i9_g6 j8
./problem_comb.sh h8_a1_i9_g7 i7
./problem_comb.sh h8_a1_i9_g8 i7
./problem_comb.sh h8_a1_i9_g9 i8
./problem_comb.sh h8_a1_i9_h1 j10
./problem_comb.sh h8_a1_i9_h10 i8
./problem_comb.sh h8_a1_i9_h11 g7
./problem_comb.sh h8_a1_i9_h12 j10
./problem_comb.sh h8_a1_i9_h13 g7
./problem_comb.sh h8_a1_i9_h14 g7
./problem_comb.sh h8_a1_i9_h15 j10
./problem_comb.sh h8_a1_i9_h2 g7
./problem_comb.sh h8_a1_i9_h3 g7
./problem_comb.sh h8_a1_i9_h4 j10
./problem_comb.sh h8_a1_i9_h5 j10
./problem_comb.sh h8_a1_i9_h6 j8
./problem_comb.sh h8_a1_i9_h7 g9
./problem_comb.sh h8_a1_i9_h9 i8
./problem_comb.sh h8_a1_i9_i1 g7
./problem_comb.sh h8_a1_i9_i10 h10
./problem_comb.sh h8_a1_i9_i11 g9
./problem_comb.sh h8_a1_i9_i12 g7
./problem_comb.sh h8_a1_i9_i13 g7
./problem_comb.sh h8_a1_i9_i14 j10
./problem_comb.sh h8_a1_i9_i15 j10
./problem_comb.sh h8_a1_i9_i2 g7
./problem_comb.sh h8_a1_i9_i3 j10
./problem_comb.sh h8_a1_i9_i4 j10
./problem_comb.sh h8_a1_i9_i5 g7
./problem_comb.sh h8_a1_i9_i6 j10
./problem_comb.sh h8_a1_i9_i7 h9
./problem_comb.sh h8_a1_i9_i8 h9
./problem_comb.sh h8_a1_i9_j1 j10
./problem_comb.sh h8_a1_i9_j10 h10
./problem_comb.sh h8_a1_i9_j11 i7
./problem_comb.sh h8_a1_i9_j12 h10
./problem_comb.sh h8_a1_i9_j13 j10
./problem_comb.sh h8_a1_i9_j14 j10
./problem_comb.sh h8_a1_i9_j15 j10
./problem_comb.sh h8_a1_i9_j2 g7
./problem_comb.sh h8_a1_i9_j3 g7
./problem_comb.sh h8_a1_i9_j4 g7
./problem_comb.sh h8_a1_i9_j5 g7
./problem_comb.sh h8_a1_i9_j6 j10
./problem_comb.sh h8_a1_i9_j7 i8
./problem_comb.sh h8_a1_i9_j8 h9
./problem_comb.sh h8_a1_i9_j9 h10
./problem_comb.sh h8_a1_i9_k1 j10
./problem_comb.sh h8_a1_i9_k10 g9
./problem_comb.sh h8_a1_i9_k11 g8
./problem_comb.sh h8_a1_i9_k12 h10
./problem_comb.sh h8_a1_i9_k13 g7
./problem_comb.sh h8_a1_i9_k14 g9
./problem_comb.sh h8_a1_i9_k15 g7
./problem_comb.sh h8_a1_i9_k2 j10
./problem_comb.sh h8_a1_i9_k3 g7
./problem_comb.sh h8_a1_i9_k4 j10
./problem_comb.sh h8_a1_i9_k5 g7
./problem_comb.sh h8_a1_i9_k6 j10
./problem_comb.sh h8_a1_i9_k7 i7
./problem_comb.sh h8_a1_i9_k8 g7
./problem_comb.sh h8_a1_i9_k9 i7
./problem_comb.sh h8_a1_i9_l1 j10
./problem_comb.sh h8_a1_i9_l10 j8
./problem_comb.sh h8_a1_i9_l11 j8
./problem_comb.sh h8_a1_i9_l12 g7
./problem_comb.sh h8_a1_i9_l13 g7
./problem_comb.sh h8_a1_i9_l14 j10
./problem_comb.sh h8_a1_i9_l15 j10
./problem_comb.sh h8_a1_i9_l2 g7
./problem_comb.sh h8_a1_i9_l3 g7
./problem_comb.sh h8_a1_i9_l4 g7
./problem_comb.sh h8_a1_i9_l5 j10
./problem_comb.sh h8_a1_i9_l6 j10
./problem_comb.sh h8_a1_i9_l7 j10
./problem_comb.sh h8_a1_i9_l8 j10
./problem_comb.sh h8_a1_i9_l9 g7
./problem_comb.sh h8_a1_i9_m1 j10
./problem_comb.sh h8_a1_i9_m10 j10
./problem_comb.sh h8_a1_i9_m11 g7
./problem_comb.sh h8_a1_i9_m12 g7
./problem_comb.sh h8_a1_i9_m13 j10
./problem_comb.sh h8_a1_i9_m14 j10
./problem_comb.sh h8_a1_i9_m15 j10
./problem_comb.sh h8_a1_i9_m2 g7
./problem_comb.sh h8_a1_i9_m3 j10
./problem_comb.sh h8_a1_i9_m4 g7
./problem_comb.sh h8_a1_i9_m5 j10
./problem_comb.sh h8_a1_i9_m6 g7
./problem_comb.sh h8_a1_i9_m7 j10
./problem_comb.sh h8_a1_i9_m8 g7
./problem_comb.sh h8_a1_i9_m9 g7
./problem_comb.sh h8_a1_i9_n1 j10
./problem_comb.sh h8_a1_i9_n10 j10
./problem_comb.sh h8_a1_i9_n11 i7
./problem_comb.sh h8_a1_i9_n12 j10
./problem_comb.sh h8_a1_i9_n13 j10
./problem_comb.sh h8_a1_i9_n14 j10
./problem_comb.sh h8_a1_i9_n15 g7
./problem_comb.sh h8_a1_i9_n2 g7
./problem_comb.sh h8_a1_i9_n3 j10
./problem_comb.sh h8_a1_i9_n4 g7
./problem_comb.sh h8_a1_i9_n5 j10
./problem_comb.sh h8_a1_i9_n6 j8
./problem_comb.sh h8_a1_i9_n7 j10
./problem_comb.sh h8_a1_i9_n8 g7
./problem_comb.sh h8_a1_i9_n9 j10
./problem_comb.sh h8_a1_i9_o1 j10
./problem_comb.sh h8_a1_i9_o10 j10
./problem_comb.sh h8_a1_i9_o11 g7
./problem_comb.sh h8_a1_i9_o12 j10
./problem_comb.sh h8_a1_i9_o13 j10
./problem_comb.sh h8_a1_i9_o14 g7
./problem_comb.sh h8_a1_i9_o15 j10
./problem_comb.sh h8_a1_i9_o2 j10
./problem_comb.sh h8_a1_i9_o3 j10
./problem_comb.sh h8_a1_i9_o4 j10
./problem_comb.sh h8_a1_i9_o5 j10
./problem_comb.sh h8_a1_i9_o6 j10
./problem_comb.sh h8_a1_i9_o7 j10
./problem_comb.sh h8_a1_i9_o8 j10
./problem_comb.sh h8_a1_i9_o9 j10
./problem_comb.sh h8_b1_i9_a1 j10
./problem_comb.sh h8_b1_i9_a10 j10
./problem_comb.sh h8_b1_i9_a11 j10
./problem_comb.sh h8_b1_i9_a12 j10
./problem_comb.sh h8_b1_i9_a13 j10
./problem_comb.sh h8_b1_i9_a14 j10
./problem_comb.sh h8_b1_i9_a15 j10
./problem_comb.sh h8_b1_i9_a2 j10
./problem_comb.sh h8_b1_i9_a3 j10
./problem_comb.sh h8_b1_i9_a4 j10
./problem_comb.sh h8_b1_i9_a5 j10
./problem_comb.sh h8_b1_i9_a6 j10
./problem_comb.sh h8_b1_i9_a7 g7
./problem_comb.sh h8_b1_i9_a8 j10
./problem_comb.sh h8_b1_i9_a9 j10
./problem_comb.sh h8_b1_i9_b10 g7
./problem_comb.sh h8_b1_i9_b11 g7
./problem_comb.sh h8_b1_i9_b12 g7
./problem_comb.sh h8_b1_i9_b13 g7
./problem_comb.sh h8_b1_i9_b14 j10
./problem_comb.sh h8_b1_i9_b15 j10
./problem_comb.sh h8_b1_i9_b2 g7
./problem_comb.sh h8_b1_i9_b3 j10
./problem_comb.sh h8_b1_i9_b4 g7
./problem_comb.sh h8_b1_i9_b5 g7
./problem_comb.sh h8_b1_i9_b6 j10
./problem_comb.sh h8_b1_i9_b7 g7
./problem_comb.sh h8_b1_i9_b8 g7
./problem_comb.sh h8_b1_i9_b9 g7
./problem_comb.sh h8_b1_i9_c1 g7
./problem_comb.sh h8_b1_i9_c10 g7
./problem_comb.sh h8_b1_i9_c11 g9
./problem_comb.sh h8_b1_i9_c12 g7
./problem_comb.sh h8_b1_i9_c13 j10
./problem_comb.sh h8_b1_i9_c14 j10
./problem_comb.sh h8_b1_i9_c15 j10
./problem_comb.sh h8_b1_i9_c2 j10
./problem_comb.sh h8_b1_i9_c3 g7
./problem_comb.sh h8_b1_i9_c4 j10
./problem_comb.sh h8_b1_i9_c5 g7
./problem_comb.sh h8_b1_i9_c6 j10
./problem_comb.sh h8_b1_i9_c7 g7
./problem_comb.sh h8_b1_i9_c8 g7
./problem_comb.sh h8_b1_i9_c9 j10
./problem_comb.sh h8_b1_i9_d1 g7
./problem_comb.sh h8_b1_i9_d10 g7
./problem_comb.sh h8_b1_i9_d11 j10
./problem_comb.sh h8_b1_i9_d12 g7
./problem_comb.sh h8_b1_i9_d13 g7
./problem_comb.sh h8_b1_i9_d14 g7
./problem_comb.sh h8_b1_i9_d15 j10
./problem_comb.sh h8_b1_i9_d2 g7
./problem_comb.sh h8_b1_i9_d3 g7
./problem_comb.sh h8_b1_i9_d4 g7
./problem_comb.sh h8_b1_i9_d5 j10
./problem_comb.sh h8_b1_i9_d6 j10
./problem_comb.sh h8_b1_i9_d7 g7
./problem_comb.sh h8_b1_i9_d8 j10
./problem_comb.sh h8_b1_i9_d9 j10
./problem_comb.sh h8_b1_i9_e1 g7
./problem_comb.sh h8_b1_i9_e10 g7
./problem_comb.sh h8_b1_i9_e11 g7
./problem_comb.sh h8_b1_i9_e12 j10
./problem_comb.sh h8_b1_i9_e13 j10
./problem_comb.sh h8_b1_i9_e14 j10
./problem_comb.sh h8_b1_i9_e15 j10
./problem_comb.sh h8_b1_i9_e2 g7
./problem_comb.sh h8_b1_i9_e3 g7
./problem_comb.sh h8_b1_i9_e4 j10
./problem_comb.sh h8_b1_i9_e5 j10
./problem_comb.sh h8_b1_i9_e6 j10
./problem_comb.sh h8_b1_i9_e7 g9
./problem_comb.sh h8_b1_i9_e8 j10
./problem_comb.sh h8_b1_i9_e9 g7
./problem_comb.sh h8_b1_i9_f1 j10
./problem_comb.sh h8_b1_i9_f10 j10
./problem_comb.sh h8_b1_i9_f11 j10
./problem_comb.sh h8_b1_i9_f12 j10
./problem_comb.sh h8_b1_i9_f13 g7
./problem_comb.sh h8_b1_i9_f14 h10
./problem_comb.sh h8_b1_i9_f15 j10
./problem_comb.sh h8_b1_i9_f2 j10
./problem_comb.sh h8_b1_i9_f3 j10
./problem_comb.sh h8_b1_i9_f4 j10
./problem_comb.sh h8_b1_i9_f5 h7
./problem_comb.sh h8_b1_i9_f6 i10
./problem_comb.sh h8_b1_i9_f7 h10
./problem_comb.sh h8_b1_i9_f8 h10
./problem_comb.sh h8_b1_i9_f9 j10
./problem_comb.sh h8_b1_i9_g1 g7
./problem_comb.sh h8_b1_i9_g10 h9
./problem_comb.sh h8_b1_i9_g11 g7
./problem_comb.sh h8_b1_i9_g12 j10
./problem_comb.sh h8_b1_i9_g13 j10
./problem_comb.sh h8_b1_i9_g14 j10
./problem_comb.sh h8_b1_i9_g15 j10
./problem_comb.sh h8_b1_i9_g2 g7
./problem_comb.sh h8_b1_i9_g3 g7
./problem_comb.sh h8_b1_i9_g4 g7
./problem_comb.sh h8_b1_i9_g5 i7
./problem_comb.sh h8_b1_i9_g6 j8
./problem_comb.sh h8_b1_i9_g7 i7
./problem_comb.sh h8_b1_i9_g8 i7
./problem_comb.sh h8_b1_i9_g9 i8
./problem_comb.sh h8_b1_i9_h1 j10
./problem_comb.sh h8_b1_i9_h10 i8
./problem_comb.sh h8_b1_i9_h11 g7
./problem_comb.sh h8_b1_i9_h12 j10
./problem_comb.sh h8_b1_i9_h13 g7
./problem_comb.sh h8_b1_i9_h14 g7
./problem_comb.sh h8_b1_i9_h15 j10
./problem_comb.sh h8_b1_i9_h2 g7
./problem_comb.sh h8_b1_i9_h3 g7
./problem_comb.sh h8_b1_i9_h4 j10
./problem_comb.sh h8_b1_i9_h5 j10
./problem_comb.sh h8_b1_i9_h6 j8
./problem_comb.sh h8_b1_i9_h7 g7
./problem_comb.sh h8_b1_i9_h9 i8
./problem_comb.sh h8_b1_i9_i1 g7
./problem_comb.sh h8_b1_i9_i10 h10
./problem_comb.sh h8_b1_i9_i11 g9
./problem_comb.sh h8_b1_i9_i12 g7
./problem_comb.sh h8_b1_i9_i13 g7
./problem_comb.sh h8_b1_i9_i14 j10
./problem_comb.sh h8_b1_i9_i15 j10
./problem_comb.sh h8_b1_i9_i2 g7
./problem_comb.sh h8_b1_i9_i3 j10
./problem_comb.sh h8_b1_i9_i4 j10
./problem_comb.sh h8_b1_i9_i5 g7
./problem_comb.sh h8_b1_i9_i6 j10
./problem_comb.sh h8_b1_i9_i7 h9
./problem_comb.sh h8_b1_i9_i8 h9
./problem_comb.sh h8_b1_i9_j1 j10
./problem_comb.sh h8_b1_i9_j10 h10
./problem_comb.sh h8_b1_i9_j11 i7
./problem_comb.sh h8_b1_i9_j12 h10
./problem_comb.sh h8_b1_i9_j13 j10
./problem_comb.sh h8_b1_i9_j14 j10
./problem_comb.sh h8_b1_i9_j15 j10
./problem_comb.sh h8_b1_i9_j2 g7
./problem_comb.sh h8_b1_i9_j3 g7
./problem_comb.sh h8_b1_i9_j4 g7
./problem_comb.sh h8_b1_i9_j5 g7
./problem_comb.sh h8_b1_i9_j6 j10
./problem_comb.sh h8_b1_i9_j7 i8
./problem_comb.sh h8_b1_i9_j8 h9
./problem_comb.sh h8_b1_i9_j9 h10
./problem_comb.sh h8_b1_i9_k1 j10
./problem_comb.sh h8_b1_i9_k10 g9
./problem_comb.sh h8_b1_i9_k11 g8
./problem_comb.sh h8_b1_i9_k12 h10
./problem_comb.sh h8_b1_i9_k13 g7
./problem_comb.sh h8_b1_i9_k14 g7
./problem_comb.sh h8_b1_i9_k15 g7
./problem_comb.sh h8_b1_i9_k2 j10
./problem_comb.sh h8_b1_i9_k3 g7
./problem_comb.sh h8_b1_i9_k4 j10
./problem_comb.sh h8_b1_i9_k5 g7
./problem_comb.sh h8_b1_i9_k6 j10
./problem_comb.sh h8_b1_i9_k7 g7
./problem_comb.sh h8_b1_i9_k8 g7
./problem_comb.sh h8_b1_i9_k9 i7
./problem_comb.sh h8_b1_i9_l1 j10
./problem_comb.sh h8_b1_i9_l10 j8
./problem_comb.sh h8_b1_i9_l11 j8
./problem_comb.sh h8_b1_i9_l12 g7
./problem_comb.sh h8_b1_i9_l13 g7
./problem_comb.sh h8_b1_i9_l14 j10
./problem_comb.sh h8_b1_i9_l15 j10
./problem_comb.sh h8_b1_i9_l2 g7
./problem_comb.sh h8_b1_i9_l3 g7
./problem_comb.sh h8_b1_i9_l4 g7
./problem_comb.sh h8_b1_i9_l5 j10
./problem_comb.sh h8_b1_i9_l6 j10
./problem_comb.sh h8_b1_i9_l7 j10
./problem_comb.sh h8_b1_i9_l8 j10
./problem_comb.sh h8_b1_i9_l9 g7
./problem_comb.sh h8_b1_i9_m1 j10
./problem_comb.sh h8_b1_i9_m10 j10
./problem_comb.sh h8_b1_i9_m11 g7
./problem_comb.sh h8_b1_i9_m12 g7
./problem_comb.sh h8_b1_i9_m13 j10
./problem_comb.sh h8_b1_i9_m14 j10
./problem_comb.sh h8_b1_i9_m15 j10
./problem_comb.sh h8_b1_i9_m2 g7
./problem_comb.sh h8_b1_i9_m3 j10
./problem_comb.sh h8_b1_i9_m4 g7
./problem_comb.sh h8_b1_i9_m5 j10
./problem_comb.sh h8_b1_i9_m6 g7
./problem_comb.sh h8_b1_i9_m7 j10
./problem_comb.sh h8_b1_i9_m8 g7
./problem_comb.sh h8_b1_i9_m9 g7
./problem_comb.sh h8_b1_i9_n1 j10
./problem_comb.sh h8_b1_i9_n10 j10
./problem_comb.sh h8_b1_i9_n11 g7
./problem_comb.sh h8_b1_i9_n12 j10
./problem_comb.sh h8_b1_i9_n13 j10
./problem_comb.sh h8_b1_i9_n14 j10
./problem_comb.sh h8_b1_i9_n15 g7
./problem_comb.sh h8_b1_i9_n2 g7
./problem_comb.sh h8_b1_i9_n3 j10
./problem_comb.sh h8_b1_i9_n4 g7
./problem_comb.sh h8_b1_i9_n5 j10
./problem_comb.sh h8_b1_i9_n6 j8
./problem_comb.sh h8_b1_i9_n7 j10
./problem_comb.sh h8_b1_i9_n8 g7
./problem_comb.sh h8_b1_i9_n9 j10
./problem_comb.sh h8_b1_i9_o1 j10
./problem_comb.sh h8_b1_i9_o10 j10
./problem_comb.sh h8_b1_i9_o11 g7
./problem_comb.sh h8_b1_i9_o12 j10
./problem_comb.sh h8_b1_i9_o13 j10
./problem_comb.sh h8_b1_i9_o14 g7
./problem_comb.sh h8_b1_i9_o15 j10
./problem_comb.sh h8_b1_i9_o2 j10
./problem_comb.sh h8_b1_i9_o3 j10
./problem_comb.sh h8_b1_i9_o4 j10
./problem_comb.sh h8_b1_i9_o5 j10
./problem_comb.sh h8_b1_i9_o6 j10
./problem_comb.sh h8_b1_i9_o7 j10
./problem_comb.sh h8_b1_i9_o8 j10
./problem_comb.sh h8_b1_i9_o9 j10
./problem_comb.sh h8_b2_i9_a1 j10
./problem_comb.sh h8_b2_i9_a10 g7
./problem_comb.sh h8_b2_i9_a11 g7
./problem_comb.sh h8_b2_i9_a12 g7
./problem_comb.sh h8_b2_i9_a13 g7
./problem_comb.sh h8_b2_i9_a14 g7
./problem_comb.sh h8_b2_i9_a15 g7
./problem_comb.sh h8_b2_i9_a2 g7
./problem_comb.sh h8_b2_i9_a3 g7
./problem_comb.sh h8_b2_i9_a4 g7
./problem_comb.sh h8_b2_i9_a5 g7
./problem_comb.sh h8_b2_i9_a6 g7
./problem_comb.sh h8_b2_i9_a7 g7
./problem_comb.sh h8_b2_i9_a8 g7
./problem_comb.sh h8_b2_i9_a9 g7
./problem_comb.sh h8_b2_i9_b1 g7
./problem_comb.sh h8_b2_i9_b10 g7
./problem_comb.sh h8_b2_i9_b11 g7
./problem_comb.sh h8_b2_i9_b12 g7
./problem_comb.sh h8_b2_i9_b13 g7
./problem_comb.sh h8_b2_i9_b14 g7
./problem_comb.sh h8_b2_i9_b15 g7
./problem_comb.sh h8_b2_i9_b3 j10
./problem_comb.sh h8_b2_i9_b4 j10
./problem_comb.sh h8_b2_i9_b5 j10
./problem_comb.sh h8_b2_i9_b6 j10
./problem_comb.sh h8_b2_i9_b7 g7
./problem_comb.sh h8_b2_i9_b8 g9
./problem_comb.sh h8_b2_i9_b9 g7
./problem_comb.sh h8_b2_i9_c1 g7
./problem_comb.sh h8_b2_i9_c10 g7
./problem_comb.sh h8_b2_i9_c11 g9
./problem_comb.sh h8_b2_i9_c12 g7
./problem_comb.sh h8_b2_i9_c13 j10
./problem_comb.sh h8_b2_i9_c14 j10
./problem_comb.sh h8_b2_i9_c15 g7
./problem_comb.sh h8_b2_i9_c2 j10
./problem_comb.sh h8_b2_i9_c3 j10
./problem_comb.sh h8_b2_i9_c4 j10
./problem_comb.sh h8_b2_i9_c5 j10
./problem_comb.sh h8_b2_i9_c6 j10
./problem_comb.sh h8_b2_i9_c7 i7
./problem_comb.sh h8_b2_i9_c8 g7
./problem_comb.sh h8_b2_i9_c9 j10
./problem_comb.sh h8_b2_i9_d1 g7
./problem_comb.sh h8_b2_i9_d10 g7
./problem_comb.sh h8_b2_i9_d11 j10
./problem_comb.sh h8_b2_i9_d12 g7
./problem_comb.sh h8_b2_i9_d13 g7
./problem_comb.sh h8_b2_i9_d14 g7
./problem_comb.sh h8_b2_i9_d15 g7
./problem_comb.sh h8_b2_i9_d2 j10
./problem_comb.sh h8_b2_i9_d3 j10
./problem_comb.sh h8_b2_i9_d4 j10
./problem_comb.sh h8_b2_i9_d5 j10
./problem_comb.sh h8_b2_i9_d6 j10
./problem_comb.sh h8_b2_i9_d7 h10
./problem_comb.sh h8_b2_i9_d8 j10
./problem_comb.sh h8_b2_i9_d9 j10
./problem_comb.sh h8_b2_i9_e1 g7
./problem_comb.sh h8_b2_i9_e10 g7
./problem_comb.sh h8_b2_i9_e11 g7
./problem_comb.sh h8_b2_i9_e12 j10
./problem_comb.sh h8_b2_i9_e13 j10
./problem_comb.sh h8_b2_i9_e14 j10
./problem_comb.sh h8_b2_i9_e15 j10
./problem_comb.sh h8_b2_i9_e2 j10
./problem_comb.sh h8_b2_i9_e3 j10
./problem_comb.sh h8_b2_i9_e4 j10
./problem_comb.sh h8_b2_i9_e5 j10
./problem_comb.sh h8_b2_i9_e6 j10
./problem_comb.sh h8_b2_i9_e7 g9
./problem_comb.sh h8_b2_i9_e8 j10
./problem_comb.sh h8_b2_i9_e9 g7
./problem_comb.sh h8_b2_i9_f1 g7
./problem_comb.sh h8_b2_i9_f10 j10
./problem_comb.sh h8_b2_i9_f11 g7
./problem_comb.sh h8_b2_i9_f12 j10
./problem_comb.sh h8_b2_i9_f13 g7
./problem_comb.sh h8_b2_i9_f14 h10
./problem_comb.sh h8_b2_i9_f15 g7
./problem_comb.sh h8_b2_i9_f2 j10
./problem_comb.sh h8_b2_i9_f3 j10
./problem_comb.sh h8_b2_i9_f4 j10
./problem_comb.sh h8_b2_i9_f5 j10
./problem_comb.sh h8_b2_i9_f6 i10
./problem_comb.sh h8_b2_i9_f7 h10
./problem_comb.sh h8_b2_i9_f8 h10
./problem_comb.sh h8_b2_i9_f9 j10
./problem_comb.sh h8_b2_i9_g1 g7
./problem_comb.sh h8_b2_i9_g10 h9
./problem_comb.sh h8_b2_i9_g11 g9
./problem_comb.sh h8_b2_i9_g12 j10
./problem_comb.sh h8_b2_i9_g13 j10
./problem_comb.sh h8_b2_i9_g14 j10
./problem_comb.sh h8_b2_i9_g15 j10
./problem_comb.sh h8_b2_i9_g2 g7
./problem_comb.sh h8_b2_i9_g3 g9
./problem_comb.sh h8_b2_i9_g4 j8
./problem_comb.sh h8_b2_i9_g5 i7
./problem_comb.sh h8_b2_i9_g6 j8
./problem_comb.sh h8_b2_i9_g7 i7
./problem_comb.sh h8_b2_i9_g8 i7
./problem_comb.sh h8_b2_i9_g9 i8
./problem_comb.sh h8_b2_i9_h1 g7
./problem_comb.sh h8_b2_i9_h10 i8
./problem_comb.sh h8_b2_i9_h11 g7
./problem_comb.sh h8_b2_i9_h12 j10
./problem_comb.sh h8_b2_i9_h13 g7
./problem_comb.sh h8_b2_i9_h14 g7
./problem_comb.sh h8_b2_i9_h15 j10
./problem_comb.sh h8_b2_i9_h2 i7
./problem_comb.sh h8_b2_i9_h3 g7
./problem_comb.sh h8_b2_i9_h4 j10
./problem_comb.sh h8_b2_i9_h5 j10
./problem_comb.sh h8_b2_i9_h6 j8
./problem_comb.sh h8_b2_i9_h7 g9
./problem_comb.sh h8_b2_i9_h9 i8
./problem_comb.sh h8_b2_i9_i1 g7
./problem_comb.sh h8_b2_i9_i10 h10
./problem_comb.sh h8_b2_i9_i11 g9
./problem_comb.sh h8_b2_i9_i12 g7
./problem_comb.sh h8_b2_i9_i13 g7
./problem_comb.sh h8_b2_i9_i14 j10
./problem_comb.sh h8_b2_i9_i15 j10
./problem_comb.sh h8_b2_i9_i2 g7
./problem_comb.sh h8_b2_i9_i3 j10
./problem_comb.sh h8_b2_i9_i4 j10
./problem_comb.sh h8_b2_i9_i5 g7
./problem_comb.sh h8_b2_i9_i6 j10
./problem_comb.sh h8_b2_i9_i7 h9
./problem_comb.sh h8_b2_i9_i8 h9
./problem_comb.sh h8_b2_i9_j1 g7
./problem_comb.sh h8_b2_i9_j10 j8
./problem_comb.sh h8_b2_i9_j11 i7
./problem_comb.sh h8_b2_i9_j12 h10
./problem_comb.sh h8_b2_i9_j13 j10
./problem_comb.sh h8_b2_i9_j14 j10
./problem_comb.sh h8_b2_i9_j15 j10
./problem_comb.sh h8_b2_i9_j2 g7
./problem_comb.sh h8_b2_i9_j3 g7
./problem_comb.sh h8_b2_i9_j4 g7
./problem_comb.sh h8_b2_i9_j5 g7
./problem_comb.sh h8_b2_i9_j6 j10
./problem_comb.sh h8_b2_i9_j7 j10
./problem_comb.sh h8_b2_i9_j8 h9
./problem_comb.sh h8_b2_i9_j9 h10
./problem_comb.sh h8_b2_i9_k1 g7
./problem_comb.sh h8_b2_i9_k10 g9
./problem_comb.sh h8_b2_i9_k11 g8
./problem_comb.sh h8_b2_i9_k12 g7
./problem_comb.sh h8_b2_i9_k13 g7
./problem_comb.sh h8_b2_i9_k14 g7
./problem_comb.sh h8_b2_i9_k15 g7
./problem_comb.sh h8_b2_i9_k2 g7
./problem_comb.sh h8_b2_i9_k3 i7
./problem_comb.sh h8_b2_i9_k4 j10
./problem_comb.sh h8_b2_i9_k5 g7
./problem_comb.sh h8_b2_i9_k6 g7
./problem_comb.sh h8_b2_i9_k7 i7
./problem_comb.sh h8_b2_i9_k8 f8
./problem_comb.sh h8_b2_i9_k9 i7
./problem_comb.sh h8_b2_i9_l1 g7
./problem_comb.sh h8_b2_i9_l10 j8
./problem_comb.sh h8_b2_i9_l11 j8
./problem_comb.sh h8_b2_i9_l12 g7
./problem_comb.sh h8_b2_i9_l13 g7
./problem_comb.sh h8_b2_i9_l14 j10
./problem_comb.sh h8_b2_i9_l15 j10
./problem_comb.sh h8_b2_i9_l2 g7
./problem_comb.sh h8_b2_i9_l3 g7
./problem_comb.sh h8_b2_i9_l4 g7
./problem_comb.sh h8_b2_i9_l5 j10
./problem_comb.sh h8_b2_i9_l6 j10
./problem_comb.sh h8_b2_i9_l7 j10
./problem_comb.sh h8_b2_i9_l8 j10
./problem_comb.sh h8_b2_i9_l9 g7
./problem_comb.sh h8_b2_i9_m1 g7
./problem_comb.sh h8_b2_i9_m10 j10
./problem_comb.sh h8_b2_i9_m11 g7
./problem_comb.sh h8_b2_i9_m12 g7
./problem_comb.sh h8_b2_i9_m13 j10
./problem_comb.sh h8_b2_i9_m14 j10
./problem_comb.sh h8_b2_i9_m15 j10
./problem_comb.sh h8_b2_i9_m2 g7
./problem_comb.sh h8_b2_i9_m3 j10
./problem_comb.sh h8_b2_i9_m4 g7
./problem_comb.sh h8_b2_i9_m5 j10
./problem_comb.sh h8_b2_i9_m6 g7
./problem_comb.sh h8_b2_i9_m7 j10
./problem_comb.sh h8_b2_i9_m8 g7
./problem_comb.sh h8_b2_i9_m9 g7
./problem_comb.sh h8_b2_i9_n1 g7
./problem_comb.sh h8_b2_i9_n10 j10
./problem_comb.sh h8_b2_i9_n11 g7
./problem_comb.sh h8_b2_i9_n12 j10
./problem_comb.sh h8_b2_i9_n13 j10
./problem_comb.sh h8_b2_i9_n14 j10
./problem_comb.sh h8_b2_i9_n15 g7
./problem_comb.sh h8_b2_i9_n2 g7
./problem_comb.sh h8_b2_i9_n3 j10
./problem_comb.sh h8_b2_i9_n4 g7
./problem_comb.sh h8_b2_i9_n5 j10
./problem_comb.sh h8_b2_i9_n6 j8
./problem_comb.sh h8_b2_i9_n7 j10
./problem_comb.sh h8_b2_i9_n8 g7
./problem_comb.sh h8_b2_i9_n9 j10
./problem_comb.sh h8_b2_i9_o1 g7
./problem_comb.sh h8_b2_i9_o10 j10
./problem_comb.sh h8_b2_i9_o11 g7
./problem_comb.sh h8_b2_i9_o12 j10
./problem_comb.sh h8_b2_i9_o13 j10
./problem_comb.sh h8_b2_i9_o14 g7
./problem_comb.sh h8_b2_i9_o15 j10
./problem_comb.sh h8_b2_i9_o2 g7
./problem_comb.sh h8_b2_i9_o3 g7
./problem_comb.sh h8_b2_i9_o4 g7
./problem_comb.sh h8_b2_i9_o5 j10
./problem_comb.sh h8_b2_i9_o6 g7
./problem_comb.sh h8_b2_i9_o7 j10
./problem_comb.sh h8_b2_i9_o8 j10
./problem_comb.sh h8_b2_i9_o9 j10
./problem_comb.sh h8_c1_i9_a1 j10
./problem_comb.sh h8_c1_i9_a10 j10
./problem_comb.sh h8_c1_i9_a11 j10
./problem_comb.sh h8_c1_i9_a12 j10
./problem_comb.sh h8_c1_i9_a13 j10
./problem_comb.sh h8_c1_i9_a14 j10
./problem_comb.sh h8_c1_i9_a15 j10
./problem_comb.sh h8_c1_i9_a2 j10
./problem_comb.sh h8_c1_i9_a3 g7
./problem_comb.sh h8_c1_i9_a4 j10
./problem_comb.sh h8_c1_i9_a5 g7
./problem_comb.sh h8_c1_i9_a6 j10
./problem_comb.sh h8_c1_i9_a7 g7
./problem_comb.sh h8_c1_i9_a8 j10
./problem_comb.sh h8_c1_i9_a9 j10
./problem_comb.sh h8_c1_i9_b1 g7
./problem_comb.sh h8_c1_i9_b10 g7
./problem_comb.sh h8_c1_i9_b11 g7
./problem_comb.sh h8_c1_i9_b12 g7
./problem_comb.sh h8_c1_i9_b13 g7
./problem_comb.sh h8_c1_i9_b14 j10
./problem_comb.sh h8_c1_i9_b15 j10
./problem_comb.sh h8_c1_i9_b2 g7
./problem_comb.sh h8_c1_i9_b3 j10
./problem_comb.sh h8_c1_i9_b4 g7
./problem_comb.sh h8_c1_i9_b5 j10
./problem_comb.sh h8_c1_i9_b6 g7
./problem_comb.sh h8_c1_i9_b7 g7
./problem_comb.sh h8_c1_i9_b8 g7
./problem_comb.sh h8_c1_i9_b9 j10
./problem_comb.sh h8_c1_i9_c10 g7
./problem_comb.sh h8_c1_i9_c11 g9
./problem_comb.sh h8_c1_i9_c12 g7
./problem_comb.sh h8_c1_i9_c13 j10
./problem_comb.sh h8_c1_i9_c14 j10
./problem_comb.sh h8_c1_i9_c15 j10
./problem_comb.sh h8_c1_i9_c2 j10
./problem_comb.sh h8_c1_i9_c3 j10
./problem_comb.sh h8_c1_i9_c4 j10
./problem_comb.sh h8_c1_i9_c5 j10
./problem_comb.sh h8_c1_i9_c6 j10
./problem_comb.sh h8_c1_i9_c7 g7
./problem_comb.sh h8_c1_i9_c8 g7
./problem_comb.sh h8_c1_i9_c9 j10
./problem_comb.sh h8_c1_i9_d1 j10
./problem_comb.sh h8_c1_i9_d10 g7
./problem_comb.sh h8_c1_i9_d11 j10
./problem_comb.sh h8_c1_i9_d12 g7
./problem_comb.sh h8_c1_i9_d13 g7
./problem_comb.sh h8_c1_i9_d14 g7
./problem_comb.sh h8_c1_i9_d15 j10
./problem_comb.sh h8_c1_i9_d2 j10
./problem_comb.sh h8_c1_i9_d3 j10
./problem_comb.sh h8_c1_i9_d4 g7
./problem_comb.sh h8_c1_i9_d5 j10
./problem_comb.sh h8_c1_i9_d6 j10
./problem_comb.sh h8_c1_i9_d7 g7
./problem_comb.sh h8_c1_i9_d8 j10
./problem_comb.sh h8_c1_i9_d9 j10
./problem_comb.sh h8_c1_i9_e1 j10
./problem_comb.sh h8_c1_i9_e10 g7
./problem_comb.sh h8_c1_i9_e11 g7
./problem_comb.sh h8_c1_i9_e12 j10
./problem_comb.sh h8_c1_i9_e13 j10
./problem_comb.sh h8_c1_i9_e14 j10
./problem_comb.sh h8_c1_i9_e15 j10
./problem_comb.sh h8_c1_i9_e2 j10
./problem_comb.sh h8_c1_i9_e3 g9
./problem_comb.sh h8_c1_i9_e4 j10
./problem_comb.sh h8_c1_i9_e5 j10
./problem_comb.sh h8_c1_i9_e6 j10
./problem_comb.sh h8_c1_i9_e7 g9
./problem_comb.sh h8_c1_i9_e8 j10
./problem_comb.sh h8_c1_i9_e9 g7
./problem_comb.sh h8_c1_i9_f1 j10
./problem_comb.sh h8_c1_i9_f10 j10
./problem_comb.sh h8_c1_i9_f11 j10
./problem_comb.sh h8_c1_i9_f12 j10
./problem_comb.sh h8_c1_i9_f13 g7
./problem_comb.sh h8_c1_i9_f14 h10
./problem_comb.sh h8_c1_i9_f15 j10
./problem_comb.sh h8_c1_i9_f2 g7
./problem_comb.sh h8_c1_i9_f3 j10
./problem_comb.sh h8_c1_i9_f4 j8
./problem_comb.sh h8_c1_i9_f5 j10
./problem_comb.sh h8_c1_i9_f6 i10
./problem_comb.sh h8_c1_i9_f7 h10
./problem_comb.sh h8_c1_i9_f8 h10
./problem_comb.sh h8_c1_i9_f9 j10
./problem_comb.sh h8_c1_i9_g1 g7
./problem_comb.sh h8_c1_i9_g10 h9
./problem_comb.sh h8_c1_i9_g11 g9
./problem_comb.sh h8_c1_i9_g12 j10
./problem_comb.sh h8_c1_i9_g13 j10
./problem_comb.sh h8_c1_i9_g14 j10
./problem_comb.sh h8_c1_i9_g15 j10
./problem_comb.sh h8_c1_i9_g2 g7
./problem_comb.sh h8_c1_i9_g3 g7
./problem_comb.sh h8_c1_i9_g4 g7
./problem_comb.sh h8_c1_i9_g5 i7
./problem_comb.sh h8_c1_i9_g6 j8
./problem_comb.sh h8_c1_i9_g7 i7
./problem_comb.sh h8_c1_i9_g8 i7
./problem_comb.sh h8_c1_i9_g9 i8
./problem_comb.sh h8_c1_i9_h1 j10
./problem_comb.sh h8_c1_i9_h10 i8
./problem_comb.sh h8_c1_i9_h11 g7
./problem_comb.sh h8_c1_i9_h12 j10
./problem_comb.sh h8_c1_i9_h13 g7
./problem_comb.sh h8_c1_i9_h14 g7
./problem_comb.sh h8_c1_i9_h15 j10
./problem_comb.sh h8_c1_i9_h2 g7
./problem_comb.sh h8_c1_i9_h3 g7
./problem_comb.sh h8_c1_i9_h4 j10
./problem_comb.sh h8_c1_i9_h5 j10
./problem_comb.sh h8_c1_i9_h6 j8
./problem_comb.sh h8_c1_i9_h7 g9
./problem_comb.sh h8_c1_i9_h9 i8
./problem_comb.sh h8_c1_i9_i1 g7
./problem_comb.sh h8_c1_i9_i10 h10
./problem_comb.sh h8_c1_i9_i11 g9
./problem_comb.sh h8_c1_i9_i12 g7
./problem_comb.sh h8_c1_i9_i13 g7
./problem_comb.sh h8_c1_i9_i14 g7
./problem_comb.sh h8_c1_i9_i15 j10
./problem_comb.sh h8_c1_i9_i2 g7
./problem_comb.sh h8_c1_i9_i3 j10
./problem_comb.sh h8_c1_i9_i4 j10
./problem_comb.sh h8_c1_i9_i5 g7
./problem_comb.sh h8_c1_i9_i6 j10
./problem_comb.sh h8_c1_i9_i7 h9
./problem_comb.sh h8_c1_i9_i8 h9
./problem_comb.sh h8_c1_i9_j1 j10
./problem_comb.sh h8_c1_i9_j10 j8
./problem_comb.sh h8_c1_i9_j11 i7
./problem_comb.sh h8_c1_i9_j12 h10
./problem_comb.sh h8_c1_i9_j13 j10
./problem_comb.sh h8_c1_i9_j14 j10
./problem_comb.sh h8_c1_i9_j15 j10
./problem_comb.sh h8_c1_i9_j2 g7
./problem_comb.sh h8_c1_i9_j3 j10
./problem_comb.sh h8_c1_i9_j4 g7
./problem_comb.sh h8_c1_i9_j5 g7
./problem_comb.sh h8_c1_i9_j6 j10
./problem_comb.sh h8_c1_i9_j7 j10
./problem_comb.sh h8_c1_i9_j8 h9
./problem_comb.sh h8_c1_i9_j9 h10
./problem_comb.sh h8_c1_i9_k1 j10
./problem_comb.sh h8_c1_i9_k10 g9
./problem_comb.sh h8_c1_i9_k11 g8
./problem_comb.sh h8_c1_i9_k12 g7
./problem_comb.sh h8_c1_i9_k13 g7
./problem_comb.sh h8_c1_i9_k14 g7
./problem_comb.sh h8_c1_i9_k15 g7
./problem_comb.sh h8_c1_i9_k2 j10
./problem_comb.sh h8_c1_i9_k3 g7
./problem_comb.sh h8_c1_i9_k4 j10
./problem_comb.sh h8_c1_i9_k5 g7
./problem_comb.sh h8_c1_i9_k6 j10
./problem_comb.sh h8_c1_i9_k7 i7
./problem_comb.sh h8_c1_i9_k8 g7
./problem_comb.sh h8_c1_i9_k9 i7
./problem_comb.sh h8_c1_i9_l1 j10
./problem_comb.sh h8_c1_i9_l10 j8
./problem_comb.sh h8_c1_i9_l11 j8
./problem_comb.sh h8_c1_i9_l12 g7
./problem_comb.sh h8_c1_i9_l13 g7
./problem_comb.sh h8_c1_i9_l14 j10
./problem_comb.sh h8_c1_i9_l15 j10
./problem_comb.sh h8_c1_i9_l2 g7
./problem_comb.sh h8_c1_i9_l3 g7
./problem_comb.sh h8_c1_i9_l4 g7
./problem_comb.sh h8_c1_i9_l5 j10
./problem_comb.sh h8_c1_i9_l6 j10
./problem_comb.sh h8_c1_i9_l7 j10
./problem_comb.sh h8_c1_i9_l8 j10
./problem_comb.sh h8_c1_i9_l9 g7
./problem_comb.sh h8_c1_i9_m1 j10
./problem_comb.sh h8_c1_i9_m10 j10
./problem_comb.sh h8_c1_i9_m11 g7
./problem_comb.sh h8_c1_i9_m12 g7
./problem_comb.sh h8_c1_i9_m13 j10
./problem_comb.sh h8_c1_i9_m14 j10
./problem_comb.sh h8_c1_i9_m15 j10
./problem_comb.sh h8_c1_i9_m2 g7
./problem_comb.sh h8_c1_i9_m3 j10
./problem_comb.sh h8_c1_i9_m4 g7
./problem_comb.sh h8_c1_i9_m5 j10
./problem_comb.sh h8_c1_i9_m6 g7
./problem_comb.sh h8_c1_i9_m7 j10
./problem_comb.sh h8_c1_i9_m8 g7
./problem_comb.sh h8_c1_i9_m9 g7
./problem_comb.sh h8_c1_i9_n1 j10
./problem_comb.sh h8_c1_i9_n10 j10
./problem_comb.sh h8_c1_i9_n11 g7
./problem_comb.sh h8_c1_i9_n12 j10
./problem_comb.sh h8_c1_i9_n13 j10
./problem_comb.sh h8_c1_i9_n14 j10
./problem_comb.sh h8_c1_i9_n15 g7
./problem_comb.sh h8_c1_i9_n2 g7
./problem_comb.sh h8_c1_i9_n3 j10
./problem_comb.sh h8_c1_i9_n4 g7
./problem_comb.sh h8_c1_i9_n5 j10
./problem_comb.sh h8_c1_i9_n6 j8
./problem_comb.sh h8_c1_i9_n7 j10
./problem_comb.sh h8_c1_i9_n8 g7
./problem_comb.sh h8_c1_i9_n9 g7
./problem_comb.sh h8_c1_i9_o1 j10
./problem_comb.sh h8_c1_i9_o10 j10
./problem_comb.sh h8_c1_i9_o11 g7
./problem_comb.sh h8_c1_i9_o12 j10
./problem_comb.sh h8_c1_i9_o13 j10
./problem_comb.sh h8_c1_i9_o14 g7
./problem_comb.sh h8_c1_i9_o15 j10
./problem_comb.sh h8_c1_i9_o2 j10
./problem_comb.sh h8_c1_i9_o3 j10
./problem_comb.sh h8_c1_i9_o4 j10
./problem_comb.sh h8_c1_i9_o5 j10
./problem_comb.sh h8_c1_i9_o6 j10
./problem_comb.sh h8_c1_i9_o7 j10
./problem_comb.sh h8_c1_i9_o8 j10
./problem_comb.sh h8_c1_i9_o9 j10
./problem_comb.sh h8_c2_i9_a1 j10
./problem_comb.sh h8_c2_i9_a10 j10
./problem_comb.sh h8_c2_i9_a11 j10
./problem_comb.sh h8_c2_i9_a12 j10
./problem_comb.sh h8_c2_i9_a13 j10
./problem_comb.sh h8_c2_i9_a14 j10
./problem_comb.sh h8_c2_i9_a15 j10
./problem_comb.sh h8_c2_i9_a2 j10
./problem_comb.sh h8_c2_i9_a3 j10
./problem_comb.sh h8_c2_i9_a4 j10
./problem_comb.sh h8_c2_i9_a5 g7
./problem_comb.sh h8_c2_i9_a6 j10
./problem_comb.sh h8_c2_i9_a7 g7
./problem_comb.sh h8_c2_i9_a8 j10
./problem_comb.sh h8_c2_i9_a9 j10
./problem_comb.sh h8_c2_i9_b1 j10
./problem_comb.sh h8_c2_i9_b10 g7
./problem_comb.sh h8_c2_i9_b11 g7
./problem_comb.sh h8_c2_i9_b12 g7
./problem_comb.sh h8_c2_i9_b13 g7
./problem_comb.sh h8_c2_i9_b14 j10
./problem_comb.sh h8_c2_i9_b15 j10
./problem_comb.sh h8_c2_i9_b2 j10
./problem_comb.sh h8_c2_i9_b3 g7
./problem_comb.sh h8_c2_i9_b4 g7
./problem_comb.sh h8_c2_i9_b5 g7
./problem_comb.sh h8_c2_i9_b6 g7
./problem_comb.sh h8_c2_i9_b7 g7
./problem_comb.sh h8_c2_i9_b8 g7
./problem_comb.sh h8_c2_i9_b9 g7
./problem_comb.sh h8_c2_i9_c1 j10
./problem_comb.sh h8_c2_i9_c10 g7
./problem_comb.sh h8_c2_i9_c11 g9
./problem_comb.sh h8_c2_i9_c12 g7
./problem_comb.sh h8_c2_i9_c13 j10
./problem_comb.sh h8_c2_i9_c14 j10
./problem_comb.sh h8_c2_i9_c15 j10
./problem_comb.sh h8_c2_i9_c3 h7
./problem_comb.sh h8_c2_i9_c4 g8
./problem_comb.sh h8_c2_i9_c5 g9
./problem_comb.sh h8_c2_i9_c6 j10
./problem_comb.sh h8_c2_i9_c7 g7
./problem_comb.sh h8_c2_i9_c8 g7
./problem_comb.sh h8_c2_i9_c9 j10
./problem_comb.sh h8_c2_i9_d1 j10
./problem_comb.sh h8_c2_i9_d10 g7
./problem_comb.sh h8_c2_i9_d11 j10
./problem_comb.sh h8_c2_i9_d12 g7
./problem_comb.sh h8_c2_i9_d13 g7
./problem_comb.sh h8_c2_i9_d14 g7
./problem_comb.sh h8_c2_i9_d15 j10
./problem_comb.sh h8_c2_i9_d2 j8
./problem_comb.sh h8_c2_i9_d3 j10
./problem_comb.sh h8_c2_i9_d4 i7
./problem_comb.sh h8_c2_i9_d5 j10
./problem_comb.sh h8_c2_i9_d6 j10
./problem_comb.sh h8_c2_i9_d7 g7
./problem_comb.sh h8_c2_i9_d8 g9
./problem_comb.sh h8_c2_i9_d9 j10
./problem_comb.sh h8_c2_i9_e1 g7
./problem_comb.sh h8_c2_i9_e10 g7
./problem_comb.sh h8_c2_i9_e11 g7
./problem_comb.sh h8_c2_i9_e12 j10
./problem_comb.sh h8_c2_i9_e13 j10
./problem_comb.sh h8_c2_i9_e14 j10
./problem_comb.sh h8_c2_i9_e15 j10
./problem_comb.sh h8_c2_i9_e2 j8
./problem_comb.sh h8_c2_i9_e3 g7
./problem_comb.sh h8_c2_i9_e4 j10
./problem_comb.sh h8_c2_i9_e5 h7
./problem_comb.sh h8_c2_i9_e6 j10
./problem_comb.sh h8_c2_i9_e7 g9
./problem_comb.sh h8_c2_i9_e8 j10
./problem_comb.sh h8_c2_i9_e9 g7
./problem_comb.sh h8_c2_i9_f1 j10
./problem_comb.sh h8_c2_i9_f10 j10
./problem_comb.sh h8_c2_i9_f11 h9
./problem_comb.sh h8_c2_i9_f12 g7
./problem_comb.sh h8_c2_i9_f13 g7
./problem_comb.sh h8_c2_i9_f14 h10
./problem_comb.sh h8_c2_i9_f15 j10
./problem_comb.sh h8_c2_i9_f2 j10
./problem_comb.sh h8_c2_i9_f3 j10
./problem_comb.sh h8_c2_i9_f4 j10
./problem_comb.sh h8_c2_i9_f5 j10
./problem_comb.sh h8_c2_i9_f6 i10
./problem_comb.sh h8_c2_i9_f7 h10
./problem_comb.sh h8_c2_i9_f8 h10
./problem_comb.sh h8_c2_i9_f9 j10
./problem_comb.sh h8_c2_i9_g1 g7
./problem_comb.sh h8_c2_i9_g10 h9
./problem_comb.sh h8_c2_i9_g11 g9
./problem_comb.sh h8_c2_i9_g12 j10
./problem_comb.sh h8_c2_i9_g13 g7
./problem_comb.sh h8_c2_i9_g14 j10
./problem_comb.sh h8_c2_i9_g15 j10
./problem_comb.sh h8_c2_i9_g2 j10
./problem_comb.sh h8_c2_i9_g3 g7
./problem_comb.sh h8_c2_i9_g4 g7
./problem_comb.sh h8_c2_i9_g5 i7
./problem_comb.sh h8_c2_i9_g6 j8
./problem_comb.sh h8_c2_i9_g7 i7
./problem_comb.sh h8_c2_i9_g8 g7
./problem_comb.sh h8_c2_i9_g9 i8
./problem_comb.sh h8_c2_i9_h1 j10
./problem_comb.sh h8_c2_i9_h10 i8
./problem_comb.sh h8_c2_i9_h11 g7
./problem_comb.sh h8_c2_i9_h12 j10
./problem_comb.sh h8_c2_i9_h13 g7
./problem_comb.sh h8_c2_i9_h14 g7
./problem_comb.sh h8_c2_i9_h15 j10
./problem_comb.sh h8_c2_i9_h2 g7