-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
3899 lines (3887 loc) · 158 KB
/
index.html
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
<html xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:x="urn:schemas-microsoft-com:office:excel"
xmlns="http://www.w3.org/TR/REC-html40">
<head>
<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
<meta name=ProgId content=Excel.Sheet>
<meta name=Generator content="Microsoft Excel 14">
<link rel=File-List href="index_files/filelist.xml">
<style id="lixlfpack_21720_Styles"><!--table
{mso-displayed-decimal-separator:"\.";
mso-displayed-thousand-separator:"\,";}
.font521720
{color:windowtext;
font-size:10.0pt;
font-weight:400;
font-style:normal;
text-decoration:none;
font-family:Arial, sans-serif;
mso-font-charset:0;}
.font621720
{color:windowtext;
font-size:10.0pt;
font-weight:400;
font-style:italic;
text-decoration:none;
font-family:Arial, sans-serif;
mso-font-charset:0;}
.xl1521720
{padding-top:1px;
padding-right:1px;
padding-left:1px;
mso-ignore:padding;
color:windowtext;
font-size:10.0pt;
font-weight:400;
font-style:normal;
text-decoration:none;
font-family:Arial;
mso-generic-font-family:auto;
mso-font-charset:0;
mso-number-format:General;
text-align:general;
vertical-align:bottom;
mso-background-source:auto;
mso-pattern:auto;
white-space:nowrap;}
.xl6521720
{padding-top:1px;
padding-right:1px;
padding-left:1px;
mso-ignore:padding;
color:windowtext;
font-size:10.0pt;
font-weight:400;
font-style:normal;
text-decoration:none;
font-family:Arial, sans-serif;
mso-font-charset:0;
mso-number-format:General;
text-align:general;
vertical-align:bottom;
mso-background-source:auto;
mso-pattern:auto;
white-space:nowrap;}
.xl6621720
{padding-top:1px;
padding-right:1px;
padding-left:1px;
mso-ignore:padding;
color:windowtext;
font-size:10.0pt;
font-weight:400;
font-style:normal;
text-decoration:none;
font-family:Arial;
mso-generic-font-family:auto;
mso-font-charset:0;
mso-number-format:"\@";
text-align:general;
vertical-align:bottom;
mso-background-source:auto;
mso-pattern:auto;
white-space:nowrap;}
.xl6721720
{padding-top:1px;
padding-right:1px;
padding-left:1px;
mso-ignore:padding;
color:windowtext;
font-size:10.0pt;
font-weight:400;
font-style:normal;
text-decoration:none;
font-family:Arial, sans-serif;
mso-font-charset:0;
mso-number-format:"\@";
text-align:general;
vertical-align:bottom;
mso-background-source:auto;
mso-pattern:auto;
white-space:nowrap;}
.xl6821720
{padding-top:1px;
padding-right:1px;
padding-left:1px;
mso-ignore:padding;
color:windowtext;
font-size:10.0pt;
font-weight:400;
font-style:normal;
text-decoration:none;
font-family:Arial, sans-serif;
mso-font-charset:0;
mso-number-format:General;
text-align:general;
vertical-align:middle;
mso-background-source:auto;
mso-pattern:auto;
white-space:nowrap;}
.xl6921720
{padding-top:1px;
padding-right:1px;
padding-left:1px;
mso-ignore:padding;
color:windowtext;
font-size:10.0pt;
font-weight:400;
font-style:normal;
text-decoration:none;
font-family:Arial;
mso-generic-font-family:auto;
mso-font-charset:0;
mso-number-format:General;
text-align:left;
vertical-align:bottom;
mso-background-source:auto;
mso-pattern:auto;
white-space:nowrap;}
--></style>
</head>
<body>
<!--[if !excel]> <![endif]-->
<!--The following information was generated by Microsoft Excel's Publish as Web
Page wizard.-->
<!--If the same item is republished from Excel, all information between the DIV
tags will be replaced.-->
<!----------------------------->
<!--START OF OUTPUT FROM EXCEL PUBLISH AS WEB PAGE WIZARD -->
<!----------------------------->
<div id="lixlfpack_21720" align=center x:publishsource="Excel">
<table border=0 cellpadding=0 cellspacing=0 width=1038 style='border-collapse:
collapse;table-layout:fixed;width:779pt'>
<col width=80 style='mso-width-source:userset;mso-width-alt:2925;width:60pt'>
<col width=160 style='mso-width-source:userset;mso-width-alt:5851;width:120pt'>
<col width=231 style='mso-width-source:userset;mso-width-alt:8448;width:173pt'>
<col width=131 style='mso-width-source:userset;mso-width-alt:4790;width:98pt'>
<col width=204 style='mso-width-source:userset;mso-width-alt:7460;width:153pt'>
<col width=26 style='mso-width-source:userset;mso-width-alt:950;width:20pt'>
<col width=40 style='mso-width-source:userset;mso-width-alt:1462;width:30pt'>
<col class=xl6621720 width=38 style='mso-width-source:userset;mso-width-alt:
1389;width:29pt'>
<col width=12 span=4 style='mso-width-source:userset;mso-width-alt:438;
width:9pt'>
<col width=80 style='width:60pt'>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl1521720 align=right width=80 style='height:12.75pt;
width:60pt'>60</td>
<td class=xl1521720 width=160 style='width:120pt'>100-built-by-lixes.txt</td>
<td class=xl1521720 width=231 style='width:173pt'>100% Built by Lixes</td>
<td class=xl1521720 width=131 style='width:98pt'>ccx</td>
<td class=xl1521720 width=204 style='width:153pt'></td>
<td class=xl1521720 align=right width=26 style='width:20pt'>5</td>
<td class=xl1521720 align=right width=40 style='width:30pt'>2.9</td>
<td class=xl6721720 width=38 style='width:29pt'>5-28</td>
<td class=xl1521720 width=12 style='width:9pt'></td>
<td class=xl1521720 width=12 style='width:9pt'></td>
<td class=xl1521720 width=12 style='width:9pt'></td>
<td class=xl1521720 width=12 style='width:9pt'></td>
<td class=xl1521720 width=80 style='width:60pt'>.</td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl1521720 align=right style='height:12.75pt'>34</td>
<td class=xl1521720>100waystodie.txt</td>
<td class=xl1521720>100 Ways to Die</td>
<td class=xl1521720>geoo</td>
<td class=xl1521720></td>
<td class=xl1521720 align=right>2</td>
<td class=xl1521720 align=right>1.1</td>
<td class=xl6721720>1-28</td>
<td class=xl1521720>T<span style='display:none'>here are 5 walkers and 5 lix
to save, do the math.</span></td>
<td class=xl1521720 colspan=3>Man, <span style='display:none'>you should try
out those squishers at the right!</span></td>
<td class=xl1521720>.</td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl1521720 align=right style='height:12.75pt'>13</td>
<td class=xl1521720>3111.txt</td>
<td class=xl1521720>3.1.1.1</td>
<td class=xl1521720>Insane Steve</td>
<td class=xl6521720>backroute!</td>
<td class=xl1521720 align=right>6</td>
<td class=xl1521720 align=right>3</td>
<td class=xl6721720>6-33</td>
<td class=xl1521720></td>
<td class=xl1521720></td>
<td class=xl1521720></td>
<td class=xl1521720></td>
<td class=xl1521720>.</td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl1521720 align=right style='height:12.75pt'>186</td>
<td class=xl1521720>6gaps.txt</td>
<td class=xl1521720>6 Gaps, 5 Builders</td>
<td class=xl1521720>mobius</td>
<td class=xl1521720></td>
<td class=xl1521720 align=right>2</td>
<td class=xl1521720 align=right>1.1</td>
<td class=xl6721720>3-03</td>
<td class=xl1521720>A<span style='display:none'> wise man once said;
"you have six gaps but only five builders" ...that's all he said.</span></td>
<td class=xl1521720><span style='display:none'>What do you do when you get up
in the morning? Hint: "stretch".</span></td>
<td class=xl1521720 colspan=2>You<span style='display:none'> only need
builders. The other skills are decoy.</span></td>
<td class=xl1521720>.</td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl6521720 align=right style='height:12.75pt'>243</td>
<td class=xl1521720>absolutezero.txt</td>
<td class=xl6521720>Absolute Zero</td>
<td class=xl1521720>mobius</td>
<td class=xl6521720></td>
<td class=xl6521720 align=right>6</td>
<td class=xl6521720 align=right>4</td>
<td class=xl6621720>?</td>
<td class=xl1521720>T<span style='display:none'>he fall from this pillar is
too high, so a climber bomb is in order. You can bomb either the first or the
second to last lix.</span></td>
<td class=xl1521720>T<span style='display:none'>hough there is no time limit,
when avoiding these traps you musn't delay, but if your lix are walking over
the top you're going the wrong way!</span></td>
<td class=xl1521720>Y<span style='display:none'>ou'll need to contain the
crowd temporarily to keep them from going over top. Spacing your lix is
critical here.</span></td>
<td class=xl1521720>Y<span style='display:none'>ou may have been playing and
found you had an extra basher, I wonder what that's for?</span></td>
<td class=xl1521720>.</td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl6521720 align=right style='height:12.75pt'>219</td>
<td class=xl1521720>acompletelyridiculous.txt</td>
<td class=xl1521720>A Completely Ridiculous Level</td>
<td class=xl1521720>Nortaneous</td>
<td class=xl1521720></td>
<td class=xl1521720 align=right>3</td>
<td class=xl6521720 align=right>1.5</td>
<td class=xl6621720>?</td>
<td class=xl1521720></td>
<td class=xl1521720></td>
<td class=xl1521720></td>
<td class=xl1521720></td>
<td class=xl1521720>.</td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl1521720 align=right style='height:12.75pt'>218</td>
<td class=xl6521720>alienabduction.txt</td>
<td class=xl1521720>Alien Abduction</td>
<td class=xl1521720>geoo</td>
<td class=xl1521720></td>
<td class=xl1521720 align=right>2</td>
<td class=xl1521720 align=right>1</td>
<td class=xl6621720>?</td>
<td class=xl1521720></td>
<td class=xl1521720></td>
<td class=xl1521720></td>
<td class=xl1521720></td>
<td class=xl1521720>.</td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl1521720 align=right style='height:12.75pt'>3</td>
<td class=xl1521720>alieninvasion.txt</td>
<td class=xl1521720>Alien Invasion</td>
<td class=xl1521720>geoo</td>
<td class=xl1521720></td>
<td class=xl1521720 align=right>4</td>
<td class=xl1521720 align=right>2.7</td>
<td class=xl6621720>?</td>
<td class=xl1521720></td>
<td class=xl1521720></td>
<td class=xl1521720></td>
<td class=xl1521720></td>
<td class=xl1521720>.</td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl6521720 align=right style='height:12.75pt'>259</td>
<td class=xl1521720>allover.txt</td>
<td class=xl1521720>All Over the Place</td>
<td class=xl1521720>minimac</td>
<td class=xl1521720>design?</td>
<td class=xl1521720 align=right>3</td>
<td class=xl1521720 align=right>2</td>
<td class=xl6621720>?</td>
<td class=xl1521720></td>
<td class=xl1521720></td>
<td class=xl1521720></td>
<td class=xl1521720></td>
<td class=xl1521720>.</td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl1521720 align=right style='height:12.75pt'>130</td>
<td class=xl1521720>alternative.txt</td>
<td class=xl1521720>Alternative Methods Recommended</td>
<td class=xl1521720>Insane Steve</td>
<td class=xl1521720></td>
<td class=xl1521720 align=right>1</td>
<td class=xl1521720 align=right>0.1</td>
<td class=xl6721720>1-13</td>
<td class=xl1521720></td>
<td class=xl1521720></td>
<td class=xl1521720></td>
<td class=xl1521720></td>
<td class=xl1521720>.</td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl1521720 align=right style='height:12.75pt'>131</td>
<td class=xl1521720>alternative2.txt</td>
<td class=xl1521720>Alternative Methods Required</td>
<td class=xl1521720>I.S./geoo</td>
<td class=xl1521720></td>
<td class=xl1521720 align=right>4</td>
<td class=xl1521720 align=right>2.1</td>
<td class=xl6621720>?</td>
<td class=xl1521720></td>
<td class=xl1521720></td>
<td class=xl1521720></td>
<td class=xl1521720></td>
<td class=xl1521720>.</td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl1521720 align=right style='height:12.75pt'>35</td>
<td class=xl1521720>amatterofperspective.txt</td>
<td class=xl1521720>A Matter of Perspective</td>
<td class=xl1521720>Insane Steve</td>
<td class=xl1521720></td>
<td class=xl1521720 align=right>5</td>
<td class=xl1521720 align=right>2.9</td>
<td class=xl6721720>5-38</td>
<td class=xl1521720></td>
<td class=xl1521720></td>
<td class=xl1521720></td>
<td class=xl1521720></td>
<td class=xl1521720>.</td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl6521720 align=right style='height:12.75pt'>245</td>
<td class=xl1521720>anotherfuneral.txt</td>
<td class=xl1521720>Another Funeral</td>
<td class=xl1521720>mobius</td>
<td class=xl1521720></td>
<td class=xl1521720 align=right>3</td>
<td class=xl1521720 align=right>1.7</td>
<td class=xl6621720>3-33</td>
<td class=xl1521720></td>
<td class=xl1521720></td>
<td class=xl1521720></td>
<td class=xl1521720></td>
<td class=xl1521720>.</td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl1521720 align=right style='height:12.75pt'>36</td>
<td class=xl1521720>anotherlixinthewall.txt</td>
<td class=xl1521720>Another Lix in the Wall</td>
<td class=xl1521720>Nortaneous</td>
<td class=xl1521720></td>
<td class=xl1521720 align=right>2</td>
<td class=xl1521720 align=right>1.7</td>
<td class=xl6721720>2-08</td>
<td class=xl1521720></td>
<td class=xl1521720></td>
<td class=xl1521720></td>
<td class=xl1521720></td>
<td class=xl1521720>.</td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl1521720 align=right style='height:12.75pt'>132</td>
<td class=xl1521720>anyway.txt</td>
<td class=xl1521720>Any Way You Want</td>
<td class=xl1521720>Insane Steve</td>
<td class=xl1521720></td>
<td class=xl1521720 align=right>1</td>
<td class=xl1521720 align=right>0</td>
<td class=xl6721720>1-01</td>
<td class=xl1521720>Y<span style='display:none'>ou can do this with one
blocker, builder, <br>basher, miner, or digger, in some way.<span
style='mso-spacerun:yes'> </span></span></td>
<td class=xl1521720>O<span style='display:none'>r just floaters or
climbers.<span style='mso-spacerun:yes'> </span></span></td>
<td class=xl1521720>O<span style='display:none'>r even bombers, but that's
the hard way. <br>If your first inclination was to use bombers,
<br>I'd recommend psychiatric help.<span
style='mso-spacerun:yes'> </span></span></td>
<td class=xl1521720>If <span style='display:none'>you're still stuck, I can't
really tell <br>you anything else but to go back to the tutorials
<br>and study how each task works. <br>They don't get easier than
this >_<</span></td>
<td class=xl1521720>.</td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl1521720 align=right style='height:12.75pt'>92</td>
<td class=xl1521720>ascending.txt</td>
<td class=xl1521720>Ascending and Descending</td>
<td class=xl1521720>Michael</td>
<td class=xl1521720></td>
<td class=xl1521720 align=right>6</td>
<td class=xl1521720 align=right>3</td>
<td class=xl6721720>6-18</td>
<td class=xl6821720>C<span style='display:none'>HALLENGE 1: Use only one
platformer.</span></td>
<td class=xl6821720 colspan=3>CHAL<span style='display:none'>LENGE 2: Don't
build any bridges in the room where the upper lix start.</span></td>
<td class=xl1521720>.</td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl1521720 align=right style='height:12.75pt'>8</td>
<td class=xl1521720>atoweringprop.txt</td>
<td class=xl1521720>A Towering Proposition</td>
<td class=xl1521720>Insane Steve</td>
<td class=xl1521720></td>
<td class=xl1521720 align=right>4</td>
<td class=xl1521720 align=right>2.3</td>
<td class=xl6721720>4-28</td>
<td class=xl1521720></td>
<td class=xl1521720></td>
<td class=xl1521720></td>
<td class=xl1521720></td>
<td class=xl1521720>.</td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl1521720 align=right style='height:12.75pt'>61</td>
<td class=xl1521720>babylonfading.txt</td>
<td class=xl1521720>Babylon Fading</td>
<td class=xl1521720>mobius</td>
<td class=xl1521720></td>
<td class=xl1521720 align=right>3</td>
<td class=xl1521720 align=right>2</td>
<td class=xl6721720>3-38</td>
<td class=xl1521720 colspan=4>To the e<span style='display:none'>dge of the
cliff and to the edge of death, the lix are chasing.<br><br>A
feeting freedom from the emptiness and is babylon fading.</span></td>
<td class=xl1521720>.</td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl1521720 align=right style='height:12.75pt'>197</td>
<td class=xl1521720>backslash.txt</td>
<td class=xl1521720>Backslash</td>
<td class=xl1521720>geoo</td>
<td class=xl1521720></td>
<td class=xl1521720 align=right>4</td>
<td class=xl1521720 align=right>2.6</td>
<td class=xl6621720>?</td>
<td class=xl1521720>Y<span style='display:none'>our miner has to begin and
finish at the same horizontal position.</span></td>
<td class=xl1521720 colspan=3>Reme<span style='display:none'>mber, blockers
turn everything around.</span></td>
<td class=xl1521720>.</td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl1521720 align=right style='height:12.75pt'>282</td>
<td class=xl1521720>bashingandbuilding.txt</td>
<td class=xl1521720>Bashing & Building</td>
<td class=xl1521720>Nepster</td>
<td class=xl1521720></td>
<td class=xl1521720 align=right>5</td>
<td class=xl1521720 align=right>2.8</td>
<td class=xl6621720>?</td>
<td class=xl1521720>Y<span style='display:none'>ou have enough builders to
path the way to the top of the left block.</span></td>
<td class=xl1521720 colspan=3>... an<span style='display:none'>d you can
avoid that builder turn around!</span></td>
<td class=xl1521720>.</td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl1521720 align=right style='height:12.75pt'>37</td>
<td class=xl1521720>behindbars.txt</td>
<td class=xl1521720>Behind Bars</td>
<td class=xl1521720>Michael</td>
<td class=xl1521720></td>
<td class=xl6521720 align=right>6</td>
<td class=xl1521720 align=right>3.3</td>
<td class=xl6721720>7-08</td>
<td class=xl6821720 colspan=4>Lix have<span style='display:none'> a way of
slipping through your fingers.<br>But you can sometimes pick them back
up again.</span></td>
<td class=xl1521720>.</td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl6521720 align=right style='height:12.75pt'>221</td>
<td class=xl1521720>betchacantsave.txt</td>
<td class=xl1521720>Betcha Can't Save Just One!</td>
<td class=xl1521720>Insane Steve</td>
<td class=xl1521720></td>
<td class=xl1521720 align=right>5</td>
<td class=xl6521720 align=right>2.8</td>
<td class=xl6721720>6-08</td>
<td class=xl1521720></td>
<td class=xl1521720></td>
<td class=xl1521720></td>
<td class=xl1521720></td>
<td class=xl1521720>.</td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl6521720 align=right style='height:12.75pt'>246</td>
<td class=xl1521720>bipolar.txt</td>
<td class=xl1521720>Bipolar Maniac</td>
<td class=xl1521720>Insane Steve</td>
<td class=xl1521720></td>
<td class=xl1521720 align=right>6</td>
<td class=xl1521720 align=right>3.2</td>
<td class=xl6621720>7-13</td>
<td class=xl1521720>T<span style='display:none'>his level requires a bit of
tricky timing. Perhaps moreso than you realize. Good thing for replay and
fast forward.</span></td>
<td class=xl1521720><span style='display:none'>What, you think that bar at
the top of the level is there for decoration?</span></td>
<td class=xl1521720 colspan=2>Wh<span style='display:none'>at else is there
to do to stop the crowd but place a blocker and use a bomber to remove it?</span></td>
<td class=xl1521720>.</td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl6521720 align=right style='height:12.75pt'>261</td>
<td class=xl1521720>blocked.txt</td>
<td class=xl1521720>Blocked by a Snowball</td>
<td class=xl1521720>minimac</td>
<td class=xl1521720></td>
<td class=xl1521720 align=right>1</td>
<td class=xl1521720 align=right>0.1</td>
<td class=xl6621720>?</td>
<td class=xl1521720></td>
<td class=xl1521720></td>
<td class=xl1521720></td>
<td class=xl1521720></td>
<td class=xl1521720>.</td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl1521720 align=right style='height:12.75pt'>187</td>
<td class=xl1521720>boxset.txt</td>
<td class=xl1521720>Box Set</td>
<td class=xl1521720>Michael</td>
<td class=xl1521720></td>
<td class=xl1521720 align=right>2</td>
<td class=xl1521720 align=right>1.5</td>
<td class=xl6721720>3-28</td>
<td class=xl6821720>D<span style='display:none'>on't panic.</span></td>
<td class=xl6821720 colspan=3>Keep <span style='display:none'>pausing to take
a look over the whole level.<br>Up to 40 lix can die, so there's plenty
of margin for error.</span></td>
<td class=xl1521720>.</td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl1521720 align=right style='height:12.75pt'>88</td>
<td class=xl1521720>breackout.txt</td>
<td class=xl1521720>Breackout</td>
<td class=xl1521720>ccx/geoo</td>
<td class=xl1521720></td>
<td class=xl1521720 align=right>3</td>
<td class=xl1521720 align=right>2.2</td>
<td class=xl6721720></td>
<td class=xl1521720></td>
<td class=xl1521720></td>
<td class=xl1521720></td>
<td class=xl1521720></td>
<td class=xl1521720>.</td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl1521720 align=right style='height:12.75pt'>283</td>
<td class=xl1521720>brickout.txt</td>
<td class=xl6521720>Brickout</td>
<td class=xl1521720>ccx</td>
<td class=xl1521720></td>
<td class=xl6521720 align=right>6</td>
<td class=xl1521720 align=right>4</td>
<td class=xl6621720>?</td>
<td class=xl1521720></td>
<td class=xl1521720></td>
<td class=xl1521720></td>
<td class=xl1521720></td>
<td class=xl1521720>.</td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl6521720 align=right style='height:12.75pt'>222</td>
<td class=xl1521720>brutefours.txt</td>
<td class=xl1521720>Brute Fours</td>
<td class=xl1521720>Michael</td>
<td class=xl1521720>check</td>
<td class=xl1521720 align=right>5</td>
<td class=xl6521720 align=right>3</td>
<td class=xl6621720>?</td>
<td class=xl1521720></td>
<td class=xl1521720></td>
<td class=xl1521720></td>
<td class=xl1521720></td>
<td class=xl1521720>.</td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl1521720 align=right style='height:12.75pt'>134</td>
<td class=xl1521720>buildingblock.txt</td>
<td class=xl1521720>Building Block Maze</td>
<td class=xl1521720>Insane Steve</td>
<td class=xl1521720></td>
<td class=xl1521720 align=right>1</td>
<td class=xl1521720 align=right>0.2</td>
<td class=xl6721720>1-13</td>
<td class=xl1521720></td>
<td class=xl1521720></td>
<td class=xl1521720></td>
<td class=xl1521720></td>
<td class=xl1521720>.</td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl1521720 align=right style='height:12.75pt'>2</td>
<td class=xl1521720>bulldozer.txt</td>
<td class=xl1521720>Bulldozer</td>
<td class=xl1521720>geoo</td>
<td class=xl1521720></td>
<td class=xl6521720 align=right>5</td>
<td class=xl1521720 align=right>3.1</td>
<td class=xl6621720>?</td>
<td class=xl1521720 colspan=4>To ease<span style='display:none'> execution, I
recommend sending about 20 climbers to the RIGHT at a rate of roughly 3
climbers per second, until the first one has reached the top of the left
wall.</span></td>
<td class=xl1521720>.</td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl1521720 align=right style='height:12.75pt'>82</td>
<td class=xl1521720>buridan.txt</td>
<td class=xl1521720>Buridan's Lix</td>
<td class=xl1521720>Michael</td>
<td class=xl1521720>backroutes?</td>
<td class=xl1521720 align=right>5</td>
<td class=xl1521720 align=right>2.9</td>
<td class=xl6721720>6-08</td>
<td class=xl6821720 colspan=4>It's pos<span style='display:none'>sible to
reach either exit.</span></td>
<td class=xl1521720>.</td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl1521720 align=right style='height:12.75pt'>40</td>
<td class=xl1521720>buyonegetonefree1.txt</td>
<td class=xl1521720>Buy One Get One Free (Part 1)</td>
<td class=xl1521720>geoo</td>
<td class=xl1521720></td>
<td class=xl1521720 align=right>4</td>
<td class=xl1521720 align=right>2.4</td>
<td class=xl6721720>3-08</td>
<td class=xl6521720>Y<span style='display:none'>ou shouldn't just take what
you get for free, you should do something with it!</span></td>
<td class=xl6521720 colspan=3>There<span style='display:none'> are multiple
solutions here, but one of them involves bypassing the exit that they just
keep walking in.</span></td>
<td class=xl1521720>.</td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl1521720 align=right style='height:12.75pt'>41</td>
<td class=xl1521720>buyonegetonefree2.txt</td>
<td class=xl1521720>Buy One Get One Free (Part 2)</td>
<td class=xl1521720>geoo</td>
<td class=xl1521720></td>
<td class=xl1521720 align=right>4</td>
<td class=xl1521720 align=right>2.8</td>
<td class=xl6621720>?</td>
<td class=xl6521720>H<span style='display:none'>ow changing just one skill
can make this level so different, eh?</span></td>
<td class=xl6521720>T<span style='display:none'>he lack of a blocker makes
mining from right to left gets a bit tricky now, huh?</span></td>
<td class=xl6521720 colspan=2>Go<span style='display:none'>od you have a
basher to get around that. Now if only you could separate someone from the
crowd
</span></td>
<td class=xl1521720>.</td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl1521720 align=right style='height:12.75pt'>135</td>
<td class=xl1521720>cantreachit.txt</td>
<td class=xl1521720>Can't Reach it - Don't Need it</td>
<td class=xl1521720>geoo</td>
<td class=xl1521720></td>
<td class=xl1521720 align=right>2</td>
<td class=xl1521720 align=right>1.5</td>
<td class=xl6721720>2-23</td>
<td class=xl1521720>Y<span style='display:none'>ou don't really need the
bottom exit.</span></td>
<td class=xl1521720>Y<span style='display:none'>ou can't get around building
over the lava pit with the first lix.<br>How do you prevent the second
lix from falling into it if you don't want to waste your walker?</span></td>
<td class=xl1521720 colspan=2>Fun<span style='display:none'> fact: the title
is a lie!<br>You can actually save everyone into the bottom exit!</span></td>
<td class=xl1521720>.</td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl1521720 align=right style='height:12.75pt'>83</td>
<td class=xl1521720>changing.txt</td>
<td class=xl1521720>Changing of the Guards</td>
<td class=xl1521720>Michael</td>
<td class=xl1521720></td>
<td class=xl1521720 align=right>5</td>
<td class=xl1521720 align=right>2.9</td>
<td class=xl6721720>6-03</td>
<td class=xl6821720 colspan=4>It helps <span style='display:none'>if you get
all the lix out as fast as possible.</span></td>
<td class=xl1521720>.</td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl1521720 align=right style='height:12.75pt'>84</td>
<td class=xl1521720>chargeofthelix.txt</td>
<td class=xl1521720>Charge of the Lix Brigade</td>
<td class=xl1521720>Michael</td>
<td class=xl1521720></td>
<td class=xl1521720 align=right>1</td>
<td class=xl1521720 align=right>1</td>
<td class=xl6721720>1-18</td>
<td class=xl6821720 colspan=4>The bo<span style='display:none'>mber isn't
part of the solution. It's just there<br>so that the level gives you
fling-bombers when you nuke.<br>Because that's awesome.</span></td>
<td class=xl1521720>.</td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl1521720 align=right style='height:12.75pt'>85</td>
<td class=xl1521720>chasm.txt</td>
<td class=xl1521720>Chasm</td>
<td class=xl1521720>Insane Steve</td>
<td class=xl1521720>ease execution?</td>
<td class=xl1521720 align=right>5</td>
<td class=xl1521720 align=right>3</td>
<td class=xl6621720>?</td>
<td class=xl1521720></td>
<td class=xl1521720></td>
<td class=xl1521720></td>
<td class=xl1521720></td>
<td class=xl1521720>.</td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl1521720 align=right style='height:12.75pt'>136</td>
<td class=xl1521720>climbtofreedom.txt</td>
<td class=xl1521720>Climb to Freedom!</td>
<td class=xl1521720>mobius</td>
<td class=xl1521720></td>
<td class=xl1521720 align=right>1</td>
<td class=xl1521720 align=right>0.7</td>
<td class=xl6721720>1-13</td>
<td class=xl1521720></td>
<td class=xl1521720></td>
<td class=xl1521720></td>
<td class=xl1521720></td>
<td class=xl1521720>.</td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl1521720 align=right style='height:12.75pt'>30</td>
<td class=xl1521720>closetotheedge.txt</td>
<td class=xl1521720>Close to the Edge</td>
<td class=xl1521720>Michael</td>
<td class=xl1521720></td>
<td class=xl1521720 align=right>6</td>
<td class=xl1521720 align=right>2.9</td>
<td class=xl6721720>6-38</td>
<td class=xl6821720 colspan=4>This lev<span style='display:none'>el has two
solutions, a western and an eastern one.</span></td>
<td class=xl1521720>.</td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl1521720 align=right style='height:12.75pt'>188</td>
<td class=xl1521720>coldironsbound.txt</td>
<td class=xl1521720>Cold Irons Bound</td>
<td class=xl1521720>mobius</td>
<td class=xl1521720></td>
<td class=xl1521720 align=right>3</td>
<td class=xl1521720 align=right>1.6</td>
<td class=xl6721720>5-03</td>
<td class=xl6521720>T<span style='display:none'>here are two solutions, one
uses floaters, the other doesn't.</span></td>
<td class=xl6521720>T<span style='display:none'>here are two solutions, one
has the builder turn around, the other doesn't.</span></td>
<td class=xl6521720 colspan=2>The<span style='display:none'>re are two
solutions, one ends with a broken icicle, the other doesn't.</span></td>
<td class=xl1521720>.</td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl1521720 align=right style='height:12.75pt'>31</td>
<td class=xl1521720>comeondown.txt</td>
<td class=xl1521720>Come on Down to My Place</td>
<td class=xl1521720>Michael</td>
<td class=xl1521720></td>
<td class=xl1521720 align=right>3</td>
<td class=xl1521720 align=right>2.2</td>
<td class=xl6721720>3-08</td>
<td class=xl6821720 colspan=4>There ar<span style='display:none'>e two
solutions, using the L on the left or the L on the right.</span></td>
<td class=xl1521720>.</td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl1521720 align=right style='height:12.75pt'>42</td>
<td class=xl1521720>compressionmethod2.txt</td>
<td class=xl1521720>Compression Method 2</td>
<td class=xl1521720>Michael</td>
<td class=xl1521720></td>
<td class=xl1521720 align=right>3</td>
<td class=xl1521720 align=right>1.8</td>
<td class=xl6721720>4-08</td>
<td class=xl6821720>Tr<span style='display:none'>y tweaking the spawn
interval to group the lix as tightly as possible.</span></td>
<td class=xl6521720 colspan=3>The id<span style='display:none'>eal spawn
interval is the same as the width in pixels of the holding
cell.<br>(The width of a cube is 16 pixels, if that helps.)</span></td>
<td class=xl1521720>.</td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl1521720 align=right style='height:12.75pt'>63</td>
<td class=xl1521720>conundrum.txt</td>
<td class=xl1521720>Conundrum</td>
<td class=xl1521720>mobius</td>
<td class=xl1521720></td>
<td class=xl1521720 align=right>5</td>
<td class=xl1521720 align=right>2.5</td>
<td class=xl6721720>5-18</td>
<td class=xl1521720>Y<span style='display:none'>ou have 1 builder to bridge
the gap so what is the other one for? It's not there for decoration.</span></td>
<td class=xl1521720><span style='display:none'>When the builder places her
mortar, she does not look beneath her.</span></td>
<td class=xl1521720 colspan=2>You<span style='display:none'> can changed the
spawn interval at any time during play.</span></td>
<td class=xl1521720>.</td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl6521720 align=right style='height:12.75pt'>262</td>
<td class=xl1521720>cornerstone.txt</td>
<td class=xl1521720>Cornerstone</td>
<td class=xl1521720>geoo</td>
<td class=xl1521720></td>
<td class=xl1521720 align=right>4</td>
<td class=xl1521720 align=right>2.3</td>
<td class=xl6621720>?</td>
<td class=xl1521720></td>
<td class=xl1521720></td>
<td class=xl1521720></td>
<td class=xl1521720></td>
<td class=xl1521720>.</td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl1521720 align=right style='height:12.75pt'>138</td>
<td class=xl1521720>cryforme.txt</td>
<td class=xl1521720>Cry for Me</td>
<td class=xl1521720>Isu</td>
<td class=xl1521720></td>
<td class=xl1521720 align=right>3</td>
<td class=xl1521720 align=right>2</td>
<td class=xl6721720>3-38</td>
<td class=xl1521720></td>
<td class=xl1521720></td>
<td class=xl1521720></td>
<td class=xl1521720></td>
<td class=xl1521720>.</td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl1521720 align=right style='height:12.75pt'>191</td>
<td class=xl1521720>cuberreplacement.txt</td>
<td class=xl1521720>Cuber Replacement</td>
<td class=xl1521720>geoo</td>
<td class=xl1521720></td>
<td class=xl1521720 align=right>5</td>
<td class=xl1521720 align=right>2.8</td>
<td class=xl6621720>?</td>
<td class=xl6521720>If <span style='display:none'>only you had a second
cuber
</span></td>
<td class=xl6521720>C<span style='display:none'>lose enough, a builder has to
do.</span></td>
<td class=xl6521720 colspan=2>Jus<span style='display:none'>t arrange the
builder bricks the right way.</span></td>
<td class=xl1521720>.</td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl1521720 align=right style='height:12.75pt'>62</td>
<td class=xl1521720>danceswithlixes.txt</td>
<td class=xl1521720>Dances With Lixes</td>
<td class=xl1521720>mobius/geoo</td>
<td class=xl6521720></td>
<td class=xl6521720 align=right>4</td>
<td class=xl1521720 align=right>2.3</td>
<td class=xl6721720>3-33</td>
<td class=xl1521720></td>
<td class=xl1521720></td>
<td class=xl1521720></td>
<td class=xl1521720></td>
<td class=xl1521720></td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl6521720 align=right style='height:12.75pt'>264</td>
<td class=xl1521720>deathorglory.txt</td>
<td class=xl1521720>Death or Glory</td>
<td class=xl1521720>weirdybeardy</td>
<td class=xl1521720></td>
<td class=xl1521720 align=right>4</td>
<td class=xl1521720 align=right>2.2</td>
<td class=xl6621720>?</td>
<td class=xl1521720></td>
<td class=xl1521720></td>
<td class=xl1521720></td>
<td class=xl1521720></td>
<td class=xl1521720>.</td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl1521720 align=right style='height:12.75pt'>139</td>
<td class=xl1521720>declination.txt</td>
<td class=xl1521720>Declination Innovation Station</td>
<td class=xl1521720>Insane Steve</td>
<td class=xl1521720></td>
<td class=xl1521720 align=right>1</td>
<td class=xl1521720 align=right>1.1</td>
<td class=xl6721720>1-38</td>
<td class=xl1521720></td>
<td class=xl1521720></td>
<td class=xl1521720></td>
<td class=xl1521720></td>
<td class=xl1521720>.</td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl1521720 align=right style='height:12.75pt'>140</td>
<td class=xl1521720>decompressionmeth1.txt</td>
<td class=xl1521720>Decompression Method 1</td>
<td class=xl1521720>geoo</td>
<td class=xl1521720></td>
<td class=xl1521720 align=right>2</td>
<td class=xl1521720 align=right>1.2</td>
<td class=xl6621720>?</td>
<td class=xl6521720>T<span style='display:none'>he spring can only process
one lix at a time, so you have to decompress them!</span></td>
<td class=xl6521720 colspan=3>You g<span style='display:none'>et 10 blockers
for a reason.</span></td>
<td class=xl1521720>.</td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl1521720 align=right style='height:12.75pt'>141</td>
<td class=xl1521720>derailedlevel.txt</td>
<td class=xl1521720>Derailed Level</td>
<td class=xl1521720>I.S./geoo</td>
<td class=xl1521720></td>
<td class=xl1521720 align=right>4</td>
<td class=xl1521720 align=right>1.7</td>
<td class=xl6721720>5-08</td>
<td class=xl1521720></td>
<td class=xl1521720></td>
<td class=xl1521720></td>
<td class=xl1521720></td>
<td class=xl1521720>.</td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl1521720 align=right style='height:12.75pt'>212</td>
<td class=xl1521720>detour.txt</td>
<td class=xl1521720>Detour</td>
<td class=xl1521720>Insane Steve</td>
<td class=xl1521720></td>
<td class=xl1521720 align=right>2</td>
<td class=xl1521720 align=right>1.4</td>
<td class=xl6721720>2-28</td>
<td class=xl1521720></td>
<td class=xl1521720></td>
<td class=xl1521720></td>
<td class=xl1521720></td>
<td class=xl1521720>.</td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl1521720 align=right style='height:12.75pt'>284</td>
<td class=xl1521720>devilsrighthand.txt</td>
<td class=xl1521720>Devil's Right Hand</td>
<td class=xl1521720>Nepster</td>
<td class=xl1521720></td>
<td class=xl6521720 align=right>6</td>
<td class=xl1521720 align=right>3.5</td>
<td class=xl6621720>?</td>
<td class=xl1521720>T<span style='display:none'>he walls with the red arrows
are one-way gadgets.</span></td>
<td class=xl1521720>D<span style='display:none'>on't try to pass them the
other way round.</span></td>
<td class=xl1521720 colspan=2>Firs<span style='display:none'>t save the lixes
on the right and then free the ones on the left.</span></td>
<td class=xl1521720>.</td>
</tr>
<tr height=17 style='height:12.75pt'>
<td height=17 class=xl1521720 align=right style='height:12.75pt'>192</td>
<td class=xl1521720>diamonddash.txt</td>
<td class=xl1521720>Diamond Dash</td>
<td class=xl1521720>Michael</td>
<td class=xl1521720></td>
<td class=xl1521720 align=right>1</td>
<td class=xl1521720 align=right>0.4</td>
<td class=xl6621720>?</td>
<td class=xl6821720 colspan=4>Remem<span style='display:none'>ber that you